GET api/CommunicationKeys
Returns all communication keys. Only 100 communication keys can be returned at a time. The following OData query options are allowed: $filter, $orderby, $select, $skip, $top.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of CommunicationKeyName | Description | Type | Additional information |
---|---|---|---|
Id |
The ID of the communication key. |
globally unique identifier |
Required |
Name |
The name of the communication key. |
string |
Max length: 256 Min length: 1 |
Data |
The communication key. |
Collection of byte |
Required Max length: 32 Min length: 32 |
Created |
The date when the communication key was created (in the ISO 8601 format). |
date |
Required |
Updated |
The date when the communication key was updated last time (in the ISO 8601 format). |
date |
None. |
Status Codes
All HTTP status codes must be expected, but the following status codes are the most probable:
- OK (200) - All found communication keys are successfully returned.
- BadRequest (400) - The OData query is invalid.
Response Formats
application/json, text/json
Sample:
[ { "Id": "c4a05a45-665e-4e65-8a2d-c4232b680e60", "Name": "sample string 2", "Data": "QEA=", "Created": "2025-05-21T12:41:42.7104494+00:00", "Updated": "2025-05-21T12:41:42.7104494+00:00" }, { "Id": "c4a05a45-665e-4e65-8a2d-c4232b680e60", "Name": "sample string 2", "Data": "QEA=", "Created": "2025-05-21T12:41:42.7104494+00:00", "Updated": "2025-05-21T12:41:42.7104494+00:00" } ]