---
title: "Retrieve specific job preset"
url: "https://earlyaccess.developers.bynder.com/apis/workflow-jobs-api-1/versions/fe891cd9-8e8e-454e-83d7-5e79bbd56714/paths/api-workflow-presets-job-id/get"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/workflow-jobs-api-1/versions/fe891cd9-8e8e-454e-83d7-5e79bbd56714.md

# Retrieve specific job preset

`GET` `/api/workflow/presets/job/{id}`

## Path parameters

- `id` (string, required)

## Responses

- `200` - Successful response

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Workflow Jobs API
  version: 1.0.0
servers:
  - url: https://{your-bynder-domain}
paths:
  /api/workflow/presets/job/{id}:
    get:
      parameters:
        - example: 00000000-0000-0000-0000-000000000000
          in: path
          name: id
          required: true
          schema:
            type: string
      responses:
        "200":
          content:
            application/json:
              examples:
                example-1:
                  value:
                    ID: 00000000-0000-0000-0000-000000000000
                    ftp_settings: {}
                    name: API name
                    presetstages:
                      ID: 00000000-0000-0000-0000-000000000000
                      description: ""
                      editableBy: all
                      name: Revision Stage
                      position: "1.0"
                      responsibleGroupID: null
                      responsibleID: null
                      restrictToGroupID: null
                      type: download
                    wf_uuid: 00000000-0000-0000-0000-000000000000
              schema:
                properties:
                  ID:
                    type: string
                  ftp_settings:
                    type: string
                  name:
                    type: string
                  presetstages:
                    properties:
                      ID:
                        type: string
                      description:
                        type: string
                      editableBy:
                        type: string
                      name:
                        type: string
                      position:
                        type: string
                      responsibleGroupID:
                        type: string
                      responsibleID:
                        type: string
                      restrictToGroupID:
                        type: string
                      type:
                        type: string
                    type: object
                  wf_uuid:
                    type: string
                type: object
          description: Successful response
      security:
        - permanentToken:
            - PRESETOVERVIEW
        - OAuth2:
            - PRESETOVERVIEW
      summary: Retrieve specific job preset
      tags:
        - Presets
security:
  - permanentToken:
      - PRESETOVERVIEW
  - OAuth2:
      - PRESETOVERVIEW
components:
  securitySchemes:
    permanentToken:
      in: header
      name: Authorization
      type: apiKey
    OAuth2:
      flows:
        authorizationCode:
          authorizationUrl: https://{your-auth-url}
          scopes:
            CAMPAIGNOVERVIEW: ""
            JOBADD: ""
            JOBAPPROVE: ""
            JOBEDIT: ""
            JOBOVERVIEW: ""
            JOBREMOVE: ""
            PRESETOVERVIEW: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
        clientCredentials:
          scopes:
            CAMPAIGNOVERVIEW: ""
            JOBADD: ""
            JOBAPPROVE: ""
            JOBEDIT: ""
            JOBOVERVIEW: ""
            JOBREMOVE: ""
            PRESETOVERVIEW: ""
          tokenUrl: https://{your-bynder-domain}/v6/authentication/oauth2/token
      type: oauth2
```
