ApplicationsSubscription.GET.yaml 1.16 KB
Newer Older
1
description: The GET method requests information about a subscription for this requestor. Upon success, the response contains entity body with the subscription for the requestor.
2
operationId: ApplicationsSubscription_GET
3
4
5
6
7
8
9
10
11
12
produces:
- application/json

responses:
  200:
    description: Upon success, a response body containing the requested subscription is returned.
    schema:
      type: object
      properties:
        SerAvailabilityNotificationSubscription:
13
          $ref: '#/definitions/SerAvailabilityNotificationSubscription'
14
15
# The alternative response
#        AppTerminationNotificationSubscription:
16
#          $ref: '#/definitions/AppTerminationNotificationSubscription'
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  400:
    description: Bad Request
    schema:
      type: object
      properties:
        ProblemDetails:
          $ref: '#/definitions/ProblemDetails'
  403:
    description: Forbidden
    schema:
      type: object
      required:
      - ProblemDetails
      properties:
        ProblemDetails:
          $ref: '#/definitions/ProblemDetails'
  404:
    description: Not Found
    schema:
      type: object
      properties:
        ProblemDetails:
          $ref: '#/definitions/ProblemDetails'