v5.1_Tally
Returns a list of all tally configurations in the system, with its main configuration data.
Resource URL
https://{{ip_address}}:{{port}}/api/{{version}}/tally/config
Example Request
GET
{
"data": [
{
"uuid": "8cdd830a-02fa-4bd5-b2eb-fd51734a40cc",
"label": "tally2",
"hash": "PLURA",
"groups": [],
"type": "PLURA",
"created": "2023-08-31T18:03:36.174Z",
"modified": "2023-08-31T18:03:47.813Z",
"attributes": {
"ip_address": "1.1.1.1",
"network": "Auto",
"port": 8901,
"serial": null
}
},
{
"uuid": "1e36b981-78b3-4820-8dea-636d79eaecc9",
"label": "tally_edit",
"hash": "TSL",
"groups": [
"grp1"
],
"type": "TSL (UDP)",
"created": "2023-08-25T11:18:05.767Z",
"modified": "2023-08-31T18:08:26.434Z",
"attributes": {
"decay_time": 10,
"port": 8901
}
}
],
"metadata": {
"item_count": 2,
"total_items": 2,
"current_page": 1,
"sort_by": [
{
"label": "ASC"
}
],
"links": {
"current": "http://192.168.10.53/api/5.1/tally/config"
}
}
}
GET tally/config/{uuid}
Resource Information
Requires Authentication? | |
Response Formats | json |
HTTP Methods | GET |
Returns an extended single tally configuration configuration view, specified by the required {uuid} parameter.
Resource URL
https://{{ip_address}}:{{port}}/api/{{version}}/tally/config/{{uuid}}
Parameters
Parameter | Data Type | Description |
---|---|---|
uuid | string | The UUID of the desired tally configuration. |
Example Request
GET
{
"data": {
"uuid": "8cdd830a-02fa-4bd5-b2eb-fd51734a40cc",
"label": "tally2_edit_multi",
"hash": "PLURA",
"groups": [],
"type": "PLURA",
"created": "2023-08-31T18:03:36.174Z",
"modified": "2023-08-31T18:13:04.417Z",
"attributes": {
"ip_address": "1.1.1.1",
"network": "Auto",
"port": 8901,
"serial": null
}
},
"metadata": {}
}
GET tally/config/meta
Resource Information
Requires Authentication? | |
Response Formats | json |
HTTP Methods | GET |
Returns all meta data used by tally configuration.
Resource URL
https://{{ip_address}}:{{port}}/api/{{version}}/tally/config/meta
Example Request
GET
{
"Types": [
"TSL (UDP)",
"TSL (TCP)",
"PLURA"
]
}
DELETE tally/config/{uuid}
Resource Information
Requires Authentication? | |
Response Formats | json |
HTTP Methods | DELETE |
Delete a specific tally configuration.
Resource URL
https://{{ip_address}}:{{port}}/api/{{version}}/tally/config/{{uuid}}
Parameters
Parameter | Data Type | Description |
---|---|---|
uuid | string | The UUID of the tally to be deleted. |
Example Request
DELETE
PUT tally/config/{uuid}
Resource Information
Requires Authentication? | |
Response Formats | json |
HTTP Methods | PUT |
Edit a tally configuration.
Resource URL
https://{{ip_address}}:{{port}}/api/{{version}}/tally/config/{{uuid}}
Parameters
Parameter | Data Type | Description |
---|---|---|
uuid | string | The UUID of the tally to be edited. |
Example Request
PUT
Body
Response
POST tally/config
Resource Information
Requires Authentication? | |
Response Formats | json |
HTTP Methods | POST |
Add a new tally, configured according to the attached data request.
Resource URL
https://{{ip_address}}:{{port}}/api/{{version}}/tally/config
Example Request
POST
Body
Response
POST tally/config multi
Resource Information
Requires Authentication? | |
Response Formats | json |
HTTP Methods | POST |
Add multiple tally, configured according to the attached data request.
Resource URL
https://{{ip_address}}:{{port}}/api/{{version}}/tally/config
Example Request
POST
Body
Response
PUT tally/config multi
Resource Information
Requires Authentication? | |
Response Formats | json |
HTTP Methods | PUT |
Edit multiple tally, configured according to the attached data request.
Resource URL
https://{{ip_address}}:{{port}}/api/{{version}}/tally/config
Example Request
PUT
Body
Response
DELETE tally/config multi
Resource Information
Requires Authentication? | |
Response Formats | json |
HTTP Methods | DELETE |
Delete multi tally configuration.
Resource URL
https://{{ip_address}}:{{port}}/api/{{version}}/tally/config/{{uuid}}
Example Request
DELETE
Body
Response