Get the Details for Export Endpoints
Use the get details for export endpoints request to get a list of export endpoints along with their details.
Endpoint
Method: POST
URL: /policy/endpoint/details
Request Parameter
There is a request body but there is no need to input data into this request, for an example request, see Sample Request.
Response and Error Code
Response Code | Condition |
---|---|
200 | OK |
Response Parameter
Parameter Name | Data Type | Description |
---|---|---|
| Array | A list of export endpoints configured in the system consisting of the following parameters. |
| Integer | The automatically generated ID for the export endpoint. |
| Array | Basic details for the export endpoint, consisting of |
| String | The friendly name for the export endpoint. |
| Array | Details on the export channel used for the export endpoint, consisting of |
| String | A useful description of the endpoint. |
| String | The address of the Webhook or Socket export endpoint uses to export to. |
| String | The authorization header to use during export. |
| String | The number of seconds allowed for exporting content, after which the export will fail. This is only taken into account after an initial export fails. Defaults to 100 seconds if not set. |
| String | The hash to the certificate which allows exports to this endpoint. |
| Array | The details used to obtain an access token for exporting to the endpoint, either by bearer token or credentials grant. If no authorization is needed for the endpoint then If
If
|
For an example response, see Sample Response.
Sample Request
{ "endpointDetailsIds": [] }
Sample Response
{ "endpointDetails": [ { "id": "46", "endpoint": { "name": "WebhookZaff", "exportChannel": { "exportChannelId": "1", "channelName": "Webhook" } }, "uri": "wss://example.us.cloud.domain.com/realtime/testingteam", "bearerTokenAuthorization": { "token": "67jh458k-ljp2-87d9-56tl-3th7s76a689k", "authorizationEndpoint": "/zaff", "clientId": "abcd-1234" } }, { "id": "1317", "endpoint": { "name": "RealTime Stream", "exportChannel": { "exportChannelId": "3", "channelName": "Socket" }, "description": "QA team" }, "uri": "https://example.us.cloud.domain.com/test-server/", "noAuthorization": {} } ] }