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>"
}
Get the entity as JSON by unique ID
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>"
}
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
The subscription ID
OK
The response is of type object
.
Was this page helpful?