Manage Connections
Returns a list of connections for the client.
Cursor for pagination. Use the next cursor from previous response to get next page
Number of records to return per page
Field to order results by
Set to "true" or "1" for descending order
Returns a paginated list of connections for the client
Invalid request parameters
Authentication is required
Insufficient permissions
Resource not found
Resource conflict
Unable to process the contained instructions
Internal server error
Bad gateway
GET /v1/provider/connections HTTP/1.1
Host: auth.armory.playnarval.com
detached-jws: YOUR_API_KEY
x-client-id: text
Accept: */*
{
"data": [
{
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"label": "text",
"provider": "anchorage",
"revokedAt": null,
"status": "active",
"updatedAt": null,
"url": "https://example.com"
}
],
"page": {
"next": "text"
}
}
Returns a specific connection by ID.
Returns the details of the specified connection.
Invalid request parameters
Authentication is required
Insufficient permissions
Resource not found
Resource conflict
Unable to process the contained instructions
Internal server error
Bad gateway
GET /v1/provider/connections/{connectionId} HTTP/1.1
Host: auth.armory.playnarval.com
detached-jws: YOUR_API_KEY
x-client-id: text
Accept: */*
{
"data": {
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"label": "text",
"provider": "anchorage",
"revokedAt": null,
"status": "active",
"updatedAt": null,
"url": "https://example.com"
}
}
Revokes an existing connection, terminating communication and invalidating credentials.
Indicates that the connection has been successfully revoked. No content is returned in the response.
Invalid request parameters
Authentication is required
Insufficient permissions
Resource not found
Resource conflict
Unable to process the contained instructions
Internal server error
Bad gateway
DELETE /v1/provider/connections/{connectionId} HTTP/1.1
Host: auth.armory.playnarval.com
detached-jws: YOUR_API_KEY
x-client-id: text
Accept: */*
No content
Last updated