Get the subscription by a subscriptionId
get
{basePath}/notifications/subscriptions/{subscriptionId}
{basePath}/notifications/subscriptions/055a5914-ca69-7776-b076-e036fdab486f
The API is used to get the subscriptions by a subscriptionId.Request
Supported Media Types
- application/json
Path Parameters
-
subscriptionId(required): string
Subscription Identifier
Response
Supported Media Types
- application/json
200 Response
A subscription
Root Schema : Subscription
Type:
object
A Subscription
Show Source
-
callbackUri(required):
string
Callback Uri for the subscription's notifications.
-
locRef:
string
The location identifier for this subscription.
-
messageType(required):
object MessageType
Information about the type of message.
-
orgShortName(required):
string
The organization identifier for this subscription.
-
postOfficeOptions(required):
object PostOfficeOptions
Information about the PostOffice for the subscription
-
rvcRef:
string
The revenue center identifier for this subscription.
-
subscriptionId(required):
string
Identifier(GUID) of this subscription.
Nested Schema : MessageType
Type:
object
Information about the type of message.
Show Source
-
id(required):
string
Identifier of the message type [Source - POS] "CheckNotification", "OrganizationsNotification", "ConfigurationNotification" supports organization, property, and revenue center hierarchy level subscriptions. "EmployeesNotification" supports organization, and property hierarchy level subscriptions.Example:
{ "id":"CheckNotification" }
Nested Schema : PostOfficeOptions
Type:
object
Information about the PostOffice for the subscription
Show Source
-
PostOfficeType:
string
Information about the PostOffice for the subscription Valid values are "PushOnePostOffice"
400 Response
400 Bad Request
Root Schema : NotificationsApiProblemDetails
Type:
object
Problem details is used as standard model for reporting details when HTTP error status code is returned. This definition is defined by [RFC7807](https://tools.ietf.org/html/rfc7807).
The content type for this response is `application/problem+json`
Show Source
-
details:
string
A human-readable explanation specific to this occurrence of the problem.Example:
The OrgShortName value is required.
-
instance:
string
A URI reference that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.Example:
required_value_missing
-
title:
string
A short, human-readable summary of the problem type.Example:
Required value not specified.
-
type:
string
A URI reference that identifies the problem type. When this member is not present, its value is assumed to be "about:blank".Example:
error:validation
Example:
{
"type":"error:validation",
"title":"Required value not specified.",
"details":"The OrgShortName value is required.",
"instance":"required_value_missing"
}
404 Response
404 Requested resource not found
Examples
Example Request Body
Not applicable for this endpoint.
Example Response Body
The following example shows the contents of the response body in JSON format:
{
"subscriptionId": "string",
"callbackUri": "string",
"messageType": {
"id": "CheckNotification"
},
"postOfficeOptions": {
"PostOfficeType": "string"
},
"orgShortName": "string",
"locRef": "string",
"rvcRef": "string"
}