> ## Documentation Index
> Fetch the complete documentation index at: https://docs.revdesk.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve a job

> The job, every band of its provenance timeline in order, and each recorded outcome with the interactions that produced it.



## OpenAPI

````yaml /openapi.json get /v1/jobs/{jobId}
openapi: 3.1.0
info:
  title: RevDesk v1 API
  version: 1.0.0
  description: >-
    Programmatic access to the RevDesk voice platform — calls, numbers, caller
    trust, and brands.
  contact:
    name: RevDesk
    email: support@revdesk.com
servers:
  - url: https://api.revdesk.com
security:
  - bearerAuth: []
tags:
  - name: Phone Numbers
  - name: Caller IDs
  - name: Enterprise Registration
  - name: Branded Calling
  - name: Calls
  - name: SMS
  - name: WebRTC
  - name: Reputation
  - name: Usage
  - name: Account
  - name: Agents
  - name: Appointments
  - name: Contacts
  - name: Documents
  - name: Number Registration
  - name: Sub-entities
  - name: Webhooks
  - name: Jobs
paths:
  /v1/jobs/{jobId}:
    get:
      tags:
        - Jobs
      summary: Retrieve a job
      description: >-
        The job, every band of its provenance timeline in order, and each
        recorded outcome with the interactions that produced it.
      operationId: v1_jobs_jobId_get
      parameters:
        - name: jobId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $schema: http://json-schema.org/draft-07/schema#
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      id:
                        type: string
                      type:
                        type: string
                      status:
                        type: string
                      objective:
                        type: string
                      contact_id:
                        anyOf:
                          - type: string
                          - type: 'null'
                      deadline:
                        anyOf:
                          - type: string
                          - type: 'null'
                      created_at:
                        type: string
                      closed_at:
                        anyOf:
                          - type: string
                          - type: 'null'
                      events:
                        type: array
                        items:
                          type: object
                          properties:
                            seq:
                              type: number
                            occurred_at:
                              type: string
                            row_type:
                              type: string
                            actor:
                              anyOf:
                                - type: string
                                - type: 'null'
                            channel:
                              anyOf:
                                - type: string
                                - type: 'null'
                            system:
                              anyOf:
                                - type: string
                                - type: 'null'
                            body:
                              type: string
                          required:
                            - seq
                            - occurred_at
                            - row_type
                            - actor
                            - channel
                            - system
                            - body
                          additionalProperties: false
                      outcomes:
                        type: array
                        items:
                          type: object
                          properties:
                            id:
                              type: string
                            kind:
                              type: string
                            occurred_at:
                              type: string
                            value:
                              anyOf:
                                - type: number
                                - type: 'null'
                            billable:
                              type: boolean
                            billed_at:
                              anyOf:
                                - type: string
                                - type: 'null'
                            billed_amount:
                              anyOf:
                                - type: number
                                - type: 'null'
                            attribution_mode:
                              type: string
                            disputed_at:
                              anyOf:
                                - type: string
                                - type: 'null'
                            evidence:
                              type: array
                              items:
                                type: object
                                properties:
                                  interaction_type:
                                    type: string
                                  interaction_id:
                                    type: string
                                  note:
                                    anyOf:
                                      - type: string
                                      - type: 'null'
                                required:
                                  - interaction_type
                                  - interaction_id
                                  - note
                                additionalProperties: false
                          required:
                            - id
                            - kind
                            - occurred_at
                            - value
                            - billable
                            - billed_at
                            - billed_amount
                            - attribution_mode
                            - disputed_at
                            - evidence
                          additionalProperties: false
                    required:
                      - id
                      - type
                      - status
                      - objective
                      - contact_id
                      - deadline
                      - created_at
                      - closed_at
                      - events
                      - outcomes
                    additionalProperties: false
                required:
                  - data
                additionalProperties: false
        '400':
          description: Validation error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '404':
          description: Not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '409':
          description: Conflict (incl. idempotency conflicts)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '429':
          description: Rate limited
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
components:
  schemas:
    ErrorEnvelope:
      type: object
      properties:
        error:
          type: object
          required:
            - code
            - message
          properties:
            code:
              type: string
            message:
              type: string
            fields:
              type: object
              additionalProperties:
                type: string
            doc_url:
              type: string
              format: uri
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````