### SIP Address Examples for Test Calls Source: https://help.axis.com/en-us/axis-c1004-e Provides examples of SIP addresses used for initiating test calls. SIP addresses are URIs used to identify users within a network, similar to email addresses or phone numbers. The `sip:` prefix indicates the start of a SIP session. These examples demonstrate various formats including IP addresses and domain names. IPv6 is not supported by the Axis product's VoIP functionality. ```text sip:192.168.0.90 sip:3468@172.25.33.142 sip:3468@voipprovider.com ``` -------------------------------- ### AXIS T85 Switch CLI: Basic Command Examples Source: https://help.axis.com/en-us/axis-network-switch-configuration-guide Demonstrates fundamental CLI commands for interacting with the AXIS T85 switch. These include viewing the running configuration, entering and exiting configuration mode, and logging out of the session. No external dependencies are required. ```CLI AXIS T85 SW # show running-config ``` ```CLI AXIS T85 SW # configure terminal AXIS T85 SW (config)# ``` ```CLI AXIS T85 SW (config)# exit AXIS T85 SW# ``` ```CLI AXIS T85 SW# exit Please press enter after the “exit” command AXIS T85 SW#exitConnection to 172.25.200.24 closed by remote host. Connection to 172.25.200.24 closed. ``` -------------------------------- ### Common Examples - Download Statistics (CSV) Source: https://help.axis.com/en-us/axis-3d-people-counter Example of how to open all statistics stored in the camera with a one-minute resolution using a browser. ```APIDOC ## GET /stereo/people-counter/export.csv ### Description Opens all statistics stored in the camera with a one-minute resolution. ### Method GET ### Endpoint `http:///stereo/people-counter/export.csv?export-method=on&date=YYYYMMDD&resolution=60&method=open` ### Parameters #### Query Parameters - **export-method** (string) - Required - Set to 'on' to enable export. - **date** (string) - Required - The date for which to export statistics in `YYYYMMDD` format. - **resolution** (integer) - Required - The resolution in minutes (e.g., 60 for one-minute bins). - **method** (string) - Required - Set to 'open' to open the statistics. ### Request Example ``` http:///stereo/people-counter/export.csv?export-method=on&date=YYYYMMDD&resolution=60&method=open ``` ### Response #### Success Response (200) A comma-delimited (.csv) file with all statistics data from the device. #### Response Example (CSV file content) ``` -------------------------------- ### Get Ended Tracks API Source: https://help.axis.com/en-us/axis-demographic-identifier Retrieves ended demographic tracking data. This endpoint returns historical track information, including start and end times, and average demographic details. ```APIDOC ## GET /local/demographics/.api?tracks-ended.json ### Description Retrieves ended demographic tracking data. This endpoint returns historical track information, including start and end times, and average demographic details. ### Method GET ### Endpoint /local/demographics/.api?tracks-ended.json ### Parameters #### Query Parameters - **tracks-ended** (string) - Required - Specifies the request for ended track data. ### Request Example ```json { "request": "GET http:///local/demographics/.api?tracks-ended.json" } ``` ### Response #### Success Response (200) - **ended** (object) - Contains ended track data. - **time_start** (number) - The overall start time for the ended tracks period. - **time_end** (number) - The overall end time for the ended tracks period. - **tracks** (array) - An array of ended track objects. - **time_start** (number) - The start time of the track. - **time_end** (number) - The end time of the track. - **gender_average** (number) - The average gender detected for the track. - **age_average** (number) - The average age detected for the track. - **boxsize_average** (number) - The average box size detected for the track. #### Response Example (No active track found) ```json { "ended": { "time_start": 1447748743.039911, "time_end": 1447749643.039911, "tracks": [] } } ``` #### Response Example (One ended track found) ```json { "ended": { "time_start": 1447749887.539835, "time_end": 1447749947.539835, "tracks": [ { "time_start": 1447749942.930319, "time_end": 1447749946.210321, "gender_average": 1, "age_average": 21, "boxsize_average": 219 } ] } } ``` ``` -------------------------------- ### Example SPN Registration Commands for Kerberos Source: https://help.axis.com/en-us/axis-camera-station-pro-system-hardening-guide Illustrative examples of the `setspn` command for registering both short hostname and FQDN SPNs for the AXIS Camera Station Pro server, ensuring proper Kerberos communication. ```bash setspn -s ACSService/CompanyServer CompanyServerAccount setspn -s ACSService/CompanyServer.domain.local CompanyServerAccount ``` -------------------------------- ### Get FPS API Response Example Source: https://help.axis.com/en-us/axis-demographic-identifier This JSON snippet shows the expected response format when querying the FPS of the Demographics algorithm. It returns a single key-value pair where the key is 'fps' and the value is the current FPS. ```json { "fps": } ``` -------------------------------- ### Get Live Tracks API Source: https://help.axis.com/en-us/axis-demographic-identifier Retrieves live demographic tracking data. This endpoint returns information about currently active tracks, including start and end times, average gender, age, and box size. ```APIDOC ## GET /local/demographics/.api?tracks-live.json ### Description Retrieves live demographic tracking data. This endpoint returns information about currently active tracks, including start and end times, average gender, age, and box size. ### Method GET ### Endpoint /local/demographics/.api?tracks-live.json ### Parameters #### Query Parameters - **tracks-live** (string) - Required - Specifies the request for live track data. ### Request Example ```json { "request": "GET http:///local/demographics/.api?tracks-live.json" } ``` ### Response #### Success Response (200) - **live** (object) - Contains live track data. - **tracks** (array) - An array of live track objects. - **time_start** (number) - The start time of the track. - **time_end** (number) - The end time of the track. - **gender_average** (number) - The average gender detected for the track. - **age_average** (number) - The average age detected for the track. - **boxsize_average** (number) - The average box size detected for the track. - **gender_last** (number) - The last detected gender for the track. - **age_last** (number) - The last detected age for the track. - **boxsize_last** (number) - The last detected box size for the track. #### Response Example (No active track found) ```json { "live": { "tracks": [] } } ``` #### Response Example (One active track found) ```json { "live": { "tracks": [ { "time_start": 1447749079.091622, "time_end": 1447749081.011605, "gender_average": 1, "age_average": 20, "boxsize_average": 177, "gender_last": 1, "age_last": 21, "boxsize_last": 180 } ] } } ``` ```