github.com/phrase/openapi@v0.0.0-20240514140800-49e8a106740e/paths/webhook_deliveries/show.yaml (about)

     1  ---
     2  summary: Get a single webhook delivery
     3  description: Get all information about a single webhook delivery for the given ID.
     4  operationId: webhook_deliveries/show
     5  tags:
     6  - Webhook Deliveries
     7  parameters:
     8  - "$ref": "../../parameters.yaml#/X-PhraseApp-OTP"
     9  - "$ref": "../../parameters.yaml#/project_id"
    10  - "$ref": "../../parameters.yaml#/webhook_id"
    11  - "$ref": "../../parameters.yaml#/id"
    12  responses:
    13    '200':
    14      description: OK
    15      content:
    16        application/json:
    17          schema:
    18            "$ref": "../../schemas/webhook_delivery.yaml#/webhook_delivery"
    19      headers:
    20        X-Rate-Limit-Limit:
    21          "$ref": "../../headers.yaml#/X-Rate-Limit-Limit"
    22        X-Rate-Limit-Remaining:
    23          "$ref": "../../headers.yaml#/X-Rate-Limit-Remaining"
    24        X-Rate-Limit-Reset:
    25          "$ref": "../../headers.yaml#/X-Rate-Limit-Reset"
    26        Link:
    27          "$ref": "../../headers.yaml#/Link"
    28    '400':
    29      "$ref": "../../responses.yaml#/400"
    30    '404':
    31      "$ref": "../../responses.yaml#/404"
    32    '429':
    33      "$ref": "../../responses.yaml#/429"
    34  x-code-samples:
    35  - lang: Curl
    36    source: |-
    37      curl "https://api.phrase.com/v2/projects/:project_id/webhooks/:webhook_id/deliveries/:id" \
    38        -u USERNAME_OR_ACCESS_TOKEN
    39  - lang: CLI v2
    40    source: |-
    41      phrase webhook deliveries show \
    42      --project_id <project_id> \
    43      --webhook_id <webhook_id> \
    44      --id <delivery_id> \
    45      --access_token <token>
    46  x-cli-version: '2.5'