Get application by ID
Retrieves a specific application by its ID for the authenticated broker. Requires a JWT bearer token.
Path Parameters
- Type: stringapplication
Id requiredID of the application to retrieve.
Responses
- application/json
- 401
Unauthorized
- 403
Forbidden
- 404
Not Found
Request Example for get/v1/subscriber/applications/{applicationId}
curl 'https://api.broker.v1.demo.affordx.nz/v1/subscriber/applications/{applicationId}' \
--header 'Authorization: Bearer YOUR_SECRET_TOKEN'
{
"applicationId": "string",
"clients": [
{
"clientId": "string",
"clientName": "string"
}
],
"status": "string",
"applicationDate": "2026-07-15T02:38:33.407Z",
"accounts": 1
}