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

     1  ---
     2  summary: Get a single organization job template locale
     3  description: Get a single job template locale for a given organization job template.
     4  operationId: organization_job_template_locale/show
     5  tags:
     6  - Organization Job Template Locales
     7  parameters:
     8  - "$ref": "../../parameters.yaml#/X-PhraseApp-OTP"
     9  - "$ref": "../../parameters.yaml#/account_id"
    10  - "$ref": "../../parameters.yaml#/job_template_id"
    11  - "$ref": "../../parameters.yaml#/job_template_locale_id"
    12  responses:
    13    '200':
    14      description: OK
    15      content:
    16        application/json:
    17          schema:
    18            "$ref": "../../schemas/job_template_locale.yaml#/job_template_locale"
    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/job_templates/:job_template_id/locales/:job_template_locale_id" \
    36        -u USERNAME_OR_ACCESS_TOKEN
    37  - lang: CLI v2
    38    source: |-
    39      phrase organization_job_template_locales show \
    40      --account_id <account_id> \
    41      --job_template_id <job_template_id> \
    42      --job_template_locale_id <job_template_locale_id> \
    43      --access_token <token>
    44  x-cli-version: "2.7.0"