Testing API operations
Last modified: Wednesday July 02, 2025.
After obtaining an authentication cookie, you can test API operations from the Explorer or Postman
Testing operations from the API Explorer
- In the Video or Protect web app, click your user initials and select
API Explorer .- Alternatively, go to https://alta-video.readme.io/reference/get_api-v1-about.
- Select the required operation from the list.
- Enter any required
BODY PARAMS . - In
CREDENTIALS , enter your authenticationCookie . - In
URL , click theBase URL string and enter yourdeploymentName ,region , anddomain . - Click
Try It!
Testing API operations from Postman
- Click
New and selectHTTP . - In the address bar, select the request method for the operation as shown in the API Explorer.
- In the address bar, enter the URL for the request:
https://<deployment name>.<region>.alta.avigilon.com/api/v1/<operation>
- Open the
Headers tab and set theContent-Type toapplication/json . - Open the
Body tab and selectraw and set the type asJSON from the dropdown. - Enter the required JSON payload, for example:
{"action":"activate"}
- You can use the API Explorer to help construct the payload. Enter the required
BODY PARAMS and check the--data
value in theCURL REQUEST .
- You can use the API Explorer to help construct the payload. Enter the required
- Click
SEND .