GET
/
subscriptions
/
{id}
Get a subscription
curl --request GET \
  --url https://{FUSION HOST}/api/subscriptions/{id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "resource": "<string>",
  "topic": "<string>",
  "numberOfListenerThreads": 123,
  "maxRetries": 123,
  "initialPosition": "<string>",
  "contextProperties": {},
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The subscription ID

Response

200 - application/json

OK

The response is of type object.