Connections
Endpoints for managing connections
This endpoint retrieves all connections.
Authorizations
Query parameters
sort-fieldstringOptional
The field to sort by.
sort-directionstringOptional
The direction to sort (asc or desc).
page-sizeintegerOptional
The number of connections per page.
current-pageintegerOptional
The current page number.
item-countintegerOptional
The total number of items.
Responses
200
A list of connections
application/json
401
Unauthorized.
500
Internal Server Error
application/json
get
GET /api/v1/connections HTTP/1.1
Host:
x-api-key: YOUR_API_KEY
Accept: */*
[]
This endpoint retrieves a connection by its id.
Authorizations
Path parameters
idstringRequired
The connection id of the connection to retrieve.
Responses
200
Connection record retrieved successfully
application/json
401
Unauthorized.
404
Connection not found
application/json
500
Internal Server Error
application/json
get
GET /api/v1/connections/{id} HTTP/1.1
Host:
x-api-key: YOUR_API_KEY
Accept: */*
{}
Was this helpful?