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

     1  ---
     2  summary: Get a single release
     3  description: Get details on a single release.
     4  operationId: release/show
     5  tags:
     6  - Releases
     7  parameters:
     8  - "$ref": "../../parameters.yaml#/X-PhraseApp-OTP"
     9  - "$ref": "../../parameters.yaml#/account_id"
    10  - "$ref": "../../parameters.yaml#/distribution_id"
    11  - "$ref": "../../parameters.yaml#/id"
    12  responses:
    13    '200':
    14      description: OK
    15      content:
    16        application/json:
    17          schema:
    18            "$ref": "../../schemas/release.yaml#/release"
    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    '400':
    27      "$ref": "../../responses.yaml#/400"
    28    '404':
    29      "$ref": "../../responses.yaml#/404"
    30    '429':
    31      "$ref": "../../responses.yaml#/429"
    32  x-code-samples:
    33  - lang: Curl
    34    source: |-
    35      curl "https://api.phrase.com/v2/accounts/:account_id/distributions/:distribution_id/releases/:id" \
    36        -u USERNAME_OR_ACCESS_TOKEN
    37  - lang: CLI v2
    38    source: |-
    39      phrase releases show \
    40      --account_id <account_id> \
    41      --distribution_id <distribution_id> \
    42      --id <id> \
    43      --access_token <token>
    44  x-cli-version: '2.5'