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
Path Parameters
Back to Top

Response

Supported Media Types

200 Response

A subscription
Body ()
Root Schema : Subscription
Type: object
A Subscription
Show Source
Nested Schema : MessageType
Type: object
Information about the type of message.
Show Source
  • 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
  • Information about the PostOffice for the subscription Valid values are "PushOnePostOffice"

400 Response

400 Bad Request
Body ()
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
  • A human-readable explanation specific to this occurrence of the problem.
    Example: The OrgShortName value is required.
  • 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
  • A short, human-readable summary of the problem type.
    Example: Required value not specified.
  • 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
Back to Top

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"
}
Back to Top