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

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

# Retrieve media of specific job

`GET` `/api/workflow/jobs/{id}/media`

Requires the JOBOVERVIEW security role.

## 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/jobs/{id}/media:
    get:
      description: Requires the JOBOVERVIEW security role.
      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:
                    - dateCreated: 2021-05-12T08:48:01+00:00
                      dateModified: 2021-05-12T08:51:22+00:00
                      filename: filename.png
                      id: 00000000-0000-0000-0000-000000000000
                      orientation: square
                      original_url: https://url.to.file/original.png
                      previews:
                        - type: thumbnail
                          url: https://url.to.file/preview.png
                        - type: preview
                          url: https://url.to.file/preview.png
                        - type: activity
                          url: https://url.to.file/preview.png
                      responsible_name: John Doe
                      status: AwaitingApproval
                      sub_versions:
                        - dateCreated: 2021-05-13T08:48:01+00:00
                          dateModified: 2021-05-13T08:51:22+00:00
                          filename: filename.png
                          id: 00000000-0000-0000-0000-000000000000
                          orientation: square
                          original_url: https://url.to.file/original.png
                          previews:
                            - type: thumbnail
                              url: https://url.to.file/preview.png
                            - type: preview
                              url: https://url.to.file/preview.png
                            - type: activity
                              url: https://url.to.file/preview.png
                          responsible_name: John Doe
                          status: AwaitingApproval
                          sub_versions: []
                          uploader_name: John Doe
                          version: 2
                          versionParentID: 00000000-0000-0000-0000-000000000000
                      uploader_name: John Doe
                      version: 1
                      versionParentID: null
              schema:
                items:
                  properties:
                    dateCreated:
                      type: string
                    dateModified:
                      type: string
                    filename:
                      type: string
                    id:
                      type: string
                    orientation:
                      type: string
                    original_url:
                      type: string
                    previews:
                      items:
                        properties:
                          type:
                            type: string
                          url:
                            type: string
                        type: object
                      type: array
                    responsible_name:
                      type: string
                    status:
                      type: string
                    sub_versions:
                      items:
                        properties:
                          dateCreated:
                            type: string
                          dateModified:
                            type: string
                          filename:
                            type: string
                          id:
                            type: string
                          orientation:
                            type: string
                          original_url:
                            type: string
                          previews:
                            items:
                              properties:
                                type:
                                  type: string
                                url:
                                  type: string
                              type: object
                            type: array
                          responsible_name:
                            type: string
                          status:
                            type: string
                          sub_versions:
                            items: {}
                            type: array
                          uploader_name:
                            type: string
                          version:
                            type: number
                          versionParentID:
                            type: string
                        type: object
                      type: array
                    uploader_name:
                      type: string
                    version:
                      type: number
                    versionParentID:
                      type: string
                  type: object
                type: array
          description: Successful response
      security:
        - permanentToken:
            - JOBOVERVIEW
        - OAuth2:
            - JOBOVERVIEW
      summary: Retrieve media of specific job
      tags:
        - Job media
security:
  - permanentToken:
      - JOBOVERVIEW
  - OAuth2:
      - JOBOVERVIEW
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
```
