v5.0_Proxy Tally

GET tally/proxy

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

GET

Returns a list of all proxy tally config in the system, with its main configuration data.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/tally/proxy

Example Request

GET 

  1. https://192.168.10.53/api/5.0/tally/proxy

{ "data": [ { "label": "test_02", "device": "92081df8-f78d-418e-92b7-87fdab283cd8", "duration": "Permanent", "items": [ { "type": "Tally", "index": 0, "color": "#FFDDC2", "blink": "#AABBC0" }, { "type": "Tally", "index": 1, "color": "#FFDDC1", "blink": "#AABBC1" }, { "type": "UMD", "index": 0, "color": "#FFDDCC", "blink": "#AABBCC", "text": "" }, { "type": "Timer", "index": 0, "color": "#FFDDCC", "blink": "#AABBCC", "timestamp": "2020-09-02T08:29:06.000Z" } ] }, { "label": "test_01", "device": "92081df8-f78d-418e-92b7-87fdab283cd8", "duration": "Permanent", "items": [ { "type": "Tally", "index": 0, "color": "#FFDDC0", "blink": "#AABBC0" }, { "type": "Tally", "index": 1, "color": "#FFDDC1", "blink": "#AABBC1" }, { "type": "UMD", "index": 0, "color": "#FFDDCC", "blink": "#AABBCC", "text": "" }, { "type": "Timer", "index": 0, "color": "#FFDDCC", "blink": "#AABBCC", "timestamp": "2020-09-02T08:29:06.000Z" } ] } ], "metadata": { "item_count": 2, "total_items": 2, "total_pages": 1, "current_page": 1, "sort_by": [ { "field": "label", "direction": "ASC" } ] } }

 


GET tally/proxy filtered

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

GET

Returns a single proxy tally config in the system filtered by the label and device name, with its main configuration data.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/tally/proxy

Example Request

GET 

  1. https://192.168.10.53/api/5.0/tally/proxy

Body

{ "filter": { "device": "e106abd2-efcb-485c-a3ab-b36b70e34296", "label": "test_01" } }

Response

{ "data": [ { "label": "test_01", "device": "e106abd2-efcb-485c-a3ab-b36b70e34296", "duration": "Permanent", "items": [ { "type": "Tally", "index": 0, "color": "#FFDDC0", "blink": "#AABBC0" }, { "type": "Tally", "index": 1, "color": "#FFDDC1", "blink": "#AABBC1" }, { "type": "UMD", "index": 0, "color": "#FFDDCC", "blink": "#AABBCC", "text": "" }, { "type": "Timer", "index": 0, "color": "#FFDDCC", "blink": "#AABBCC", "timestamp": "2020-09-02T08:29:06.000Z" } ] } ], "metadata": { "item_count": 1, "total_items": 1, "total_pages": 1, "current_page": 1, "sort_by": [ { "field": "label", "direction": "ASC" } ] } }

 


 

DELETE tally/proxy/{device}/{label}

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

DELETE

Delete a specific proxy tally configuration.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/tally/proxy/{{device}}/{{label}}

Parameters

Parameter

Data Type

Description

uuid
(required)

string

The UUID of the proxy tally to be deleted.

Example Request

DELETE 

  1. https://192.168.10.53/api/5.0/tally/proxy/92081df8-f78d-418e-92b7-87fdab283cd8/test_02

 


 

POST tally/proxy

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

POST

Add a new proxy tally, configured according to the attached data request.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/tally/proxy

Example Request

POST 

  1. https://192.168.10.53/api/5.0/tally/proxy

Body

Response

 


 

GET tally/proxy/meta

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

GET

Returns a list of meta data in the system, with its main configuration data.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/tally/proxy/meta

Example Request

GET 

  1. https://192.168.10.53/api/5.0/tally/proxy/meta

 


 

DELETE multiple tally/proxy/

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

DELETE

Delete a multiple proxy tally configuration.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/tally/proxy

Example Request

DELETE 

  1. https://192.168.10.53/api/5.0/tally/proxy

Body

Response

 


 

POST multiple tally/proxy

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

POST

Add multiple proxy tally, configured according to the attached data request.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/tally/proxy

Example Request

POST 

  1. https://192.168.10.53/api/5.0/tally/proxy

Body

Response

 


 

PUT tally/proxy/{label} (By Device)

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

PUT

Edit a proxy tally configuration by device.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/tally/proxy/{{label}}

Parameters

Parameter

Data Type

Description

label
(required)

string

The UUID of the proxy tally to be edited.

Example Request

PUT 

  1. https://192.168.10.53/api/5.0/tally/proxy/test_02

Body

Response

 


 

PUT tally/proxy/{label} (By Output)

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

PUT

Edit a proxy tally configuration by output.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/tally/proxy/{{label}}

Parameters

Parameter

Data Type

Description

label
(required)

string

The UUID of the proxy tally to be edited.

Example Request

PUT 

  1. https://192.168.10.53/api/5.0/tally/proxy/test_02

Body

Response

 


 

PUT multiple tally/proxy

Resource Information

Requires Authentication?

Yes

Response Formats

json

HTTP Methods

PUT

Edits multiple proxy tally configuration by output.

Resource URL

https://{{ip_address}}:{{port}}/api/{{version}}/tally/proxy

Example Request

PUT 

  1. https://192.168.10.53/api/5.0/tally/proxy

Body

Response