Connecteam Jobs:v1:Jobs API

The Jobs:v1:Jobs API from Connecteam — 1 operation(s) for jobs:v1:jobs.

Operations 2

GET /jobs/v1/jobs Get jobs #
POST /jobs/v1/jobs Create jobs #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/connecteam-jobs-v1-jobs-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

connecteam-jobs-v1-jobs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Connecteam API documentation Jobs:v1:Jobs API
  version: v1
servers:
- url: https://api.connecteam.com/
tags:
- name: Jobs:v1:Jobs
paths:
  /jobs/v1/jobs:
    get:
      tags:
      - Jobs:v1:Jobs
      summary: Get jobs
      description: 'Get a list of job objects relevant to instance id (scheduler id or time clock id).

        If unified jobs are disabled, only schedulers are supported'
      operationId: get_jobs_jobs_v1_jobs_get
      security:
      - APIKeyHeader: []
      - OAuth2:
        - jobs.read
      parameters:
      - name: instanceIds
        in: query
        required: false
        schema:
          anyOf:
          - type: array
            items:
              type: integer
          - type: 'null'
          description: List of instance IDs (schedule id or time clock id) to filter by
          title: Instanceids
        description: List of instance IDs (schedule id or time clock id) to filter by
      - name: jobIds
        in: query
        required: false
        schema:
          anyOf:
          - type: array
            items:
              type: string
          - type: 'null'
          description: List of job IDs to filter by. In cases where a job ID includes nested sub-jobs, all sub-jobs under that parent job will be retrieved alongside with the parent job. Note that this filter does not support direct querying by sub-job IDs. To retrieve specific sub-jobs, please use the Get Job endpoint
          title: Jobids
        description: List of job IDs to filter by. In cases where a job ID includes nested sub-jobs, all sub-jobs under that parent job will be retrieved alongside with the parent job. Note that this filter does not support direct querying by sub-job IDs. To retrieve specific sub-jobs, please use the Get Job endpoint
      - name: jobNames
        in: query
        required: false
        schema:
          anyOf:
          - type: array
            items:
              type: string
          - type: 'null'
          description: List of job names to filter by. In case where a sub-job name is provided, the relevant sub-job with all other nested sub-jobs will be retrieved alongside with the parent job.
          title: Jobnames
        description: List of job names to filter by. In case where a sub-job name is provided, the relevant sub-job with all other nested sub-jobs will be retrieved alongside with the parent job.
      - name: jobCodes
        in: query
        required: false
        schema:
          anyOf:
          - type: array
            items:
              type: string
          - type: 'null'
          description: List of job codes to filter by. In case where a sub-job code is provided, the relevant sub-job with all other nested sub-jobs will be retrieved alongside with the parent job.
          title: Jobcodes
        description: List of job codes to filter by. In case where a sub-job code is provided, the relevant sub-job with all other nested sub-jobs will be retrieved alongside with the parent job.
      - name: includeDeleted
        in: query
        required: false
        schema:
          type: boolean
          description: Determines whether the response includes jobs that have been deleted. Default value is set to true.
          default: true
          title: Includedeleted
        description: Determines whether the response includes jobs that have been deleted. Default value is set to true.
      - name: sort
        in: query
        required: false
        schema:
          $ref: '#/components/schemas/JobsSortKeysExternal'
          description: Sort key
        description: Sort key
      - name: order
        in: query
        required: false
        schema:
          $ref: '#/components/schemas/SortOrder'
          description: Sort order, set only if sort key is set
          default: asc
        description: Sort order, set only if sort key is set
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          maximum: 500
          minimum: 1
          description: The maximum number of results to display per page
          default: 10
          title: Limit
        description: The maximum number of results to display per page
      - name: offset
        in: query
        required: false
        schema:
          type: integer
          minimum: 0
          description: The resource offset of the last successfully read resource will be returned as the paging.offset JSON property of a paginated response containing more results
          default: 0
          title: Offset
        description: The resource offset of the last successfully read resource will be returned as the paging.offset JSON property of a paginated response containing more results
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedBaseResponseV2_JobsResponse_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    post:
      tags:
      - Jobs:v1:Jobs
      summary: Create jobs
      description: Create individual or multiple jobs under a specified scheduler
      operationId: create_jobs_jobs_v1_jobs_post
      security:
      - APIKeyHeader: []
      - OAuth2:
        - jobs.write
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: array
              items:
                anyOf:
                - $ref: '#/components/schemas/JobCreateRequest'
                - $ref: '#/components/schemas/SubJobCreateRequest'
              maxItems: 500
              description: Request model for the new Jobs
              title: Jobs
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APIResponseV2_JobsResponse_'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    JobsSortKeysExternal:
      type: string
      enum:
      - title
      title: JobsSortKeysExternal
    APIResponseV2_JobsResponse_:
      properties:
        requestId:
          type: string
          title: Requestid
        data:
          $ref: '#/components/schemas/JobsResponse'
      type: object
      required:
      - data
      title: APIResponseV2[JobsResponse]
    AssignDataTypes:
      type: string
      enum:
      - users
      - groups
      - both
      title: AssignDataTypes
    AssignDataIn:
      properties:
        type:
          $ref: '#/components/schemas/AssignDataTypes'
          description: The type of the assign data (users, groups, both), default is both.
          default: both
        userIds:
          anyOf:
          - items:
              type: integer
              minimum: 1.0
              description: Integer with minimum value of 1
            type: array
          - type: 'null'
          title: Userids
          description: The user ids to assign to this entity (if assigning type is users).
        groupIds:
          anyOf:
          - items:
              type: integer
              minimum: 1.0
              description: Integer with minimum value of 1
            type: array
          - type: 'null'
          title: Groupids
          description: The group ids to assign to this entity (if assigning type is groups).
      type: object
      title: AssignDataIn
    PaginatedBaseResponseV2_JobsResponse_:
      properties:
        requestId:
          type: string
          title: Requestid
        data:
          $ref: '#/components/schemas/JobsResponse'
        paging:
          $ref: '#/components/schemas/PagingResponseModelV2'
      type: object
      required:
      - data
      - paging
      title: PaginatedBaseResponseV2[JobsResponse]
    GpsDataV2:
      properties:
        address:
          anyOf:
          - type: string
          - type: 'null'
          title: Address
          description: The address associated with the GPS data.
        longitude:
          anyOf:
          - type: number
            maximum: 180.0
            minimum: -180.0
            description: The longitude coordinate.
          - type: 'null'
          title: Longitude
          description: The longitude coordinate.
        latitude:
          anyOf:
          - type: number
            maximum: 90.0
            minimum: -90.0
            description: The latitude coordinate.
          - type: 'null'
          title: Latitude
          description: The latitude coordinate.
      type: object
      title: GpsDataV2
    BaseCustomFieldV2:
      properties:
        customFieldId:
          type: integer
          minimum: 1.0
          title: Customfieldid
          description: The custom field unique id
        value:
          title: Value
          description: 'The value of the custom field. Our real-time API documentation experience does not support custom fields of the dropdown type.To update dropdown fields value(s), pass an array of objects with the IDs of the selected dropdown values (e.g., [{id: 1}, {id: 2}]).'
      type: object
      required:
      - customFieldId
      - value
      title: BaseCustomFieldV2
    UserCustomFields:
      type: string
      enum:
      - email
      - date
      - phone
      - number
      - str
      - dropdown
      - file
      - directManager
      - birthday
      - link
      - location
      title: UserCustomFields
    SubJobCreateRequestInJob:
      properties:
        title:
          type: string
          title: Title
          description: The title of the job
        code:
          anyOf:
          - type: string
          - type: 'null'
          title: Code
          description: The code of the job
          default: ''
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
          description: The description of the job
          default: ''
        fenceSize:
          anyOf:
          - type: integer
          - type: 'null'
          title: Fencesize
          description: The geofence size of the job
        gps:
          anyOf:
          - $ref: '#/components/schemas/GpsDataV2'
          - type: 'null'
          description: The GPS data of the job
        assign:
          anyOf:
          - $ref: '#/components/schemas/AssignDataIn'
          - type: 'null'
          description: Data related to job assignment
        customFields:
          items:
            $ref: '#/components/schemas/BaseCustomFieldV2'
          type: array
          title: Customfields
          description: The job's custom fields
        useParentData:
          type: boolean
          title: Useparentdata
          description: Indicates whether to use the parent job's data or not
          default: true
      type: object
      required:
      - title
      title: SubJobCreateRequestInJob
    PagingResponseModelV2:
      properties:
        offset:
          type: integer
          minimum: 0.0
          title: Offset
          description: The resource offset of the last successfully read resource will be returned as the paging.offset JSON property of a paginated response containing more results
        total:
          anyOf:
          - type: integer
            minimum: 0.0
          - type: 'null'
          title: Total
          description: Total number of resources matching the request, ignoring pagination. Use this to retrieve the full count without paginating through every page. Only populated by endpoints that compute it.
      type: object
      required:
      - offset
      title: PagingResponseModelV2
    JobCreateRequest:
      properties:
        instanceIds:
          items:
            type: integer
          type: array
          title: Instanceids
          description: List of instance IDs (schedule id or time clock id)
        title:
          type: string
          title: Title
          description: The title of the job
        code:
          anyOf:
          - type: string
          - type: 'null'
          title: Code
          description: The code of the job
          default: ''
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
          description: The description of the job
          default: ''
        fenceSize:
          anyOf:
          - type: integer
          - type: 'null'
          title: Fencesize
          description: The geofence size of the job
        gps:
          anyOf:
          - $ref: '#/components/schemas/GpsDataV2'
          - type: 'null'
          description: The GPS data of the job
        assign:
          $ref: '#/components/schemas/AssignDataIn'
          description: Settings related to job assignment
        customFields:
          items:
            $ref: '#/components/schemas/BaseCustomFieldV2'
          type: array
          title: Customfields
          description: The job's custom fields
        color:
          anyOf:
          - type: string
          - type: 'null'
          title: Color
          description: 'The color associated with the job. Should be one of the following colors: [''#4B7AC5'', ''#801A1A'', ''#AE2121'', ''#DC7A7A'', ''#B0712E'', ''#D4985A'', ''#E4B37F'', ''#AE8E2D'', ''#CBA73A'', ''#D9B443'', ''#487037'', ''#6F9B5C'', ''#91B282'', ''#365C64'', ''#5687B3'', ''#7C9BA2'', ''#3968BB'', ''#85A6DA'', ''#225A8C'', ''#548CBE'', ''#81A8CC'', ''#4E3F75'', ''#604E8E'', ''#8679AA'', ''#983D73'', ''#A43778'', ''#D178AD'', ''#6B2E4C'', ''#925071'', ''#B57D9A'', ''#3a3a3a'', ''#616161'', ''#969696'']'
          default: '#4B7AC5'
        subJobs:
          items:
            $ref: '#/components/schemas/SubJobCreateRequestInJob'
          type: array
          title: Subjobs
          description: List of sub jobs to create
      type: object
      required:
      - title
      - instanceIds
      title: JobCreateRequest
    CustomFieldResponseV2:
      properties:
        customFieldId:
          type: integer
          minimum: 1.0
          title: Customfieldid
          description: The custom field unique id
        value:
          title: Value
          description: The custom field value
        type:
          $ref: '#/components/schemas/UserCustomFields'
          description: The custom field type
        name:
          type: string
          title: Name
          description: The custom field name
      type: object
      required:
      - customFieldId
      - value
      - type
      - name
      title: CustomFieldResponseV2
    JobsResponse:
      properties:
        jobs:
          items:
            $ref: '#/components/schemas/BaseJobResponse'
            description: The job
          type: array
          title: Jobs
          description: The jobs
      type: object
      required:
      - jobs
      title: JobsResponse
    SortOrder:
      type: string
      enum:
      - asc
      - desc
      title: SortOrder
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    SubJobCreateRequest:
      properties:
        title:
          type: string
          title: Title
          description: The title of the job
        code:
          anyOf:
          - type: string
          - type: 'null'
          title: Code
          description: The code of the job
          default: ''
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
          description: The description of the job
          default: ''
        fenceSize:
          anyOf:
          - type: integer
          - type: 'null'
          title: Fencesize
          description: The geofence size of the job
        gps:
          anyOf:
          - $ref: '#/components/schemas/GpsDataV2'
          - type: 'null'
          description: The GPS data of the job
        assign:
          anyOf:
          - $ref: '#/components/schemas/AssignDataIn'
          - type: 'null'
          description: Data related to job assignment
        customFields:
          items:
            $ref: '#/components/schemas/BaseCustomFieldV2'
          type: array
          title: Customfields
          description: The job's custom fields
        parentId:
          type: string
          title: Parentid
          description: The ID of the parent job
        useParentData:
          type: boolean
          title: Useparentdata
          description: Indicates whether to use the parent job's data or not
          default: true
      type: object
      required:
      - title
      - parentId
      title: SubJobCreateRequest
    BaseJobResponse:
      properties:
        jobId:
          type: string
          title: Jobid
          description: The job ID
        title:
          type: string
          title: Title
          description: The title of the Job
        code:
          type: string
          title: Code
          description: The code of the Job.
        color:
          type: string
          title: Color
          description: The color associated with the job
        customFields:
          items:
            $ref: '#/components/schemas/CustomFieldResponseV2'
          type: array
          title: Customfields
          description: The job's custom fields
        description:
          type: string
          title: Description
          description: The job description
        fenceSize:
          anyOf:
          - type: integer
          - type: 'null'
          title: Fencesize
          description: The geofence size of the job
        gps:
          anyOf:
          - $ref: '#/components/schemas/GpsDataV2'
          - type: 'null'
          description: GPS data associated with the job
        isDeleted:
          type: boolean
          title: Isdeleted
          description: Indicates whether the job is deleted or not
          default: false
        assign:
          $ref: '#/components/schemas/AssignDataApi'
          description: Data related to job assignment
        useParentData:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Useparentdata
          description: Indicates whether to use the parent job's data or not
        parentId:
          anyOf:
          - type: string
          - type: 'null'
          title: Parentid
          description: The ID of the parent job, if any
        subJobs:
          anyOf:
          - items:
              $ref: '#/components/schemas/BaseJobResponse'
            type: array
          - type: 'null'
          title: Subjobs
          description: The sub jobs of the parent job, if any
        instanceIds:
          anyOf:
          - items:
              type: integer
            type: array
          - type: 'null'
          title: Instanceids
          description: The instance IDs associated with the job
      type: object
      required:
      - jobId
      - title
      - code
      - color
      - description
      - assign
      title: BaseJobResponse
    AssignDataApi:
      properties:
        type:
          anyOf:
          - $ref: '#/components/schemas/AssignDataTypes'
          - type: 'null'
          description: The type of the assign data (users, groups, both), default is both.
          default: both
        userIds:
          anyOf:
          - items:
              type: integer
            type: array
          - type: 'null'
          title: Userids
          description: The user ids to assign to this entity (if assigning type is users).
        groupIds:
          anyOf:
          - items:
              type: integer
            type: array
          - type: 'null'
          title: Groupids
          description: The group ids to assign to this entity (if assigning type is groups).
      type: object
      title: AssignDataApi
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      description: The Api key of the company given by Connecteam
      in: header
      name: X-API-KEY
    OAuth2:
      type: oauth2
      description: OAuth2 Bearer token
      flows:
        clientCredentials:
          scopes:
            account_information.read: account information - read
            account_information.write: account information - write
            account_information.delete: account information - delete
            company_policies.read: company policies - read
            company_policies.write: company policies - write
            company_policies.delete: company policies - delete
            company_insights.read: company insights - read
            users.read: users - read
            users.write: users - write
            users.delete: users - delete
            assets.read: assets - read
            assets.write: assets - write
            assets.delete: assets - delete
            sales_data.read: sales data - read
            sales_data.write: sales data - write
            sales_data.delete: sales data - delete
            attachments.read: attachments - read
            attachments.write: attachments - write
            attachments.delete: attachments - delete
            quick_tasks.read: quick tasks - read
            quick_tasks.write: quick tasks - write
            quick_tasks.delete: quick tasks - delete
            publishers.read: publishers - read
            publishers.write: publishers - write
            publishers.delete: publishers - delete
            chat.read: chat - read
            chat.write: chat - write
            chat.delete: chat - delete
            jobs.read: jobs - read
            jobs.write: jobs - write
            jobs.delete: jobs - delete
            schedule.read: schedule - read
            schedule.write: schedule - write
            schedule.delete: schedule - delete
            daily_note.read: daily note - read
            daily_note.write: daily note - write
            daily_note.delete: daily note - delete
            time_clock.read: time clock - read
            time_clock.write: time clock - write
            time_clock.delete: time clock - delete
            nfc.read: nfc - read
            nfc.write: nfc - write
            nfc.delete: nfc - delete
            time_off.read: time off - read
            time_off.write: time off - write
            time_off.delete: time off - delete
            pay_rates.read: pay rates - read
            pay_rates.write: pay rates - write
            pay_rates.delete: pay rates - delete
            forms.read: forms - read
            forms.write: forms - write
            forms.delete: forms - delete
            onboarding.read: onboarding - read
            onboarding.write: onboarding - write
            onboarding.delete: onboarding - delete
            settings.read: settings - read
            settings.write: settings - write
            settings.delete: settings - delete
            company_checklist.read: company checklist - read
            company_checklist.write: company checklist - write
            recognitions.read: recognitions - read
            celebrations.read: celebrations - read
          tokenUrl: /oauth/v1/token
    HTTPBasic:
      type: http
      description: Use client_id as Username and client_secret as Password
      scheme: basic