Deel subpackage_positions API

The subpackage_positions API from Deel — 3 operation(s) for subpackage_positions.

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/deel-subpackage-positions-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 email required.

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

OpenAPI Specification

deel-subpackage-positions-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Endpoints subpackage_positions API
  version: 1.0.0
servers:
- url: https://api.letsdeel.com/rest/v2
- url: https://api-staging.letsdeel.com/rest/v2
tags:
- name: subpackage_positions
paths:
  /hris/positions/apply_changes:
    post:
      operationId: apply-position-changes
      summary: Apply changes to positions.
      description: "Applies a set of position changes (add, edit, delete) for a given HRIS profile.\n **Token scopes**: `profile:write`"
      tags:
      - subpackage_positions
      parameters:
      - name: Authorization
        in: header
        description: "## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n  -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n"
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/positions_applyPositionChanges_Response_204'
        '400':
          description: Bad Request. Invalid input parameters.
          content:
            application/json:
              schema:
                description: Any type
        '401':
          description: Unauthorized. Invalid or expired token.
          content:
            application/json:
              schema:
                description: Any type
        '403':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '404':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '500':
          description: Internal Server Error. Could not process the request.
          content:
            application/json:
              schema:
                description: Any type
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                data:
                  $ref: '#/components/schemas/HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaData'
                  description: The request payload containing the position changes to apply.
  /hris/positions/profile/{hrisProfileId}:
    get:
      operationId: get-positions-by-profile
      summary: Get Positions By Profile
      tags:
      - subpackage_positions
      parameters:
      - name: hrisProfileId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
  /hris/positions/profile/{hris_profile_id}:
    get:
      operationId: fetch-hris-positions-from-a-hris-profile-v-2026-01-01
      summary: Fetch HrisPositions from a HrisProfile
      description: "Retrieves all positions assigned to a given HRIS profile, including the associated role, team, and organization structure for each position.\n **Token scopes**: `profile:read`"
      tags:
      - subpackage_positions
      parameters:
      - name: hris_profile_id
        in: path
        description: HRIS Profile ID
        required: true
        schema:
          type: string
      - name: Authorization
        in: header
        description: "## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n  -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n"
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Positions_fetchHrisPositionsFromAHrisProfile-v2026-01-01_Response_200'
        '400':
          description: Bad request - The provided hrisProfileId or hrisOrgStructureId is invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FetchHrisPositionsFromAHrisProfile-v2026-01-01RequestBadRequestError'
        '401':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '403':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
        '404':
          description: Not found - No HRIS profile exists for the provided ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FetchHrisPositionsFromAHrisProfile-v2026-01-01RequestNotFoundError'
        '500':
          description: Operation failed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiErrorContainer'
components:
  schemas:
    Positions_fetchHrisPositionsFromAHrisProfile-v2026-01-01_Response_200:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItems'
      title: Positions_fetchHrisPositionsFromAHrisProfile-v2026-01-01_Response_200
    positions_applyPositionChanges_Response_204:
      type: object
      properties: {}
      description: Empty response body
      title: positions_applyPositionChanges_Response_204
    HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItemsTeamOrganizationStructure:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Organization Structure ID
        name:
          type: string
          description: Organization Structure Name
      title: HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItemsTeamOrganizationStructure
    HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaDataDeleteItems:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Id of the position to be deleted.
      required:
      - id
      title: HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaDataDeleteItems
    ApiError:
      type: object
      properties:
        message:
          type: string
          description: A description of the returned error
        path:
          type: string
          description: The JSON path where input validation failed
      title: ApiError
    FetchHrisPositionsFromAHrisProfile-v2026-01-01RequestBadRequestError:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaErrorsItems'
      required:
      - errors
      title: FetchHrisPositionsFromAHrisProfile-v2026-01-01RequestBadRequestError
    FetchHrisPositionsFromAHrisProfile-v2026-01-01RequestNotFoundError:
      type: object
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaErrorsItems'
      required:
      - errors
      title: FetchHrisPositionsFromAHrisProfile-v2026-01-01RequestNotFoundError
    HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaDataEditItems:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Id of the position to be edited.
        role_id:
          type:
          - string
          - 'null'
          format: uuid
          description: Id of the role to be assigned to the position.
        is_supportive:
          type: boolean
          description: Flag to indicate if the position is supportive.
      required:
      - id
      title: HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaDataEditItems
    HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaErrorsItems:
      type: object
      properties:
        code:
          type: string
        field:
          type: string
        message:
          type: string
      required:
      - code
      - message
      title: HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaErrorsItems
    HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItemsRole:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Role ID
        name:
          type: string
          description: Role Name
      title: HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItemsRole
    ApiErrorContainer:
      type: object
      properties:
        request:
          $ref: '#/components/schemas/ApiErrorRequest'
        errors:
          type: array
          items:
            $ref: '#/components/schemas/ApiError'
      title: ApiErrorContainer
    HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItemsTeam:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: Team ID
        name:
          type: string
          description: Team Name
        organization_structure:
          $ref: '#/components/schemas/HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItemsTeamOrganizationStructure'
      title: HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItemsTeam
    ApiErrorRequest:
      type: object
      properties:
        method:
          type: string
          description: The HTTP method of the failed request
        url:
          type: string
          description: The relative URL of the failed request
        status:
          type: number
          format: double
          description: The status code of the response
        api_req_id:
          type: string
          description: The request ID of the failed request
        docs:
          type: string
          description: A link to the official documentation for the requested endpoint resource
        source:
          type: string
          description: The source handler which produced the returned error
        code:
          type: number
          format: double
          description: The code of the source handler which produced the returned error
      title: ApiErrorRequest
    HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItems:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: HRIS Position ID
        role:
          $ref: '#/components/schemas/HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItemsRole'
        team:
          $ref: '#/components/schemas/HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItemsTeam'
        is_supportive:
          type: boolean
          description: Is Supportive Position
      title: HrisPositionsProfileHrisProfileIdGetResponsesContentApplicationJsonSchemaDataItems
    HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaDataAddItems:
      type: object
      properties:
        role_id:
          type:
          - string
          - 'null'
          format: uuid
          description: Id of the role to be assigned to the position.
        team_id:
          type: string
          format: uuid
          description: Id of the team to be assigned to the position.
        is_supportive:
          type: boolean
          description: Flag to indicate if the position is supportive.
      required:
      - team_id
      title: HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaDataAddItems
    HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaData:
      type: object
      properties:
        add:
          type: array
          items:
            $ref: '#/components/schemas/HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaDataAddItems'
        edit:
          type: array
          items:
            $ref: '#/components/schemas/HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaDataEditItems'
        delete:
          type: array
          items:
            $ref: '#/components/schemas/HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaDataDeleteItems'
        profile_id:
          type: string
          format: uuid
          description: Id of the profile to which the positions belong.
      required:
      - profile_id
      description: The request payload containing the position changes to apply.
      title: HrisPositionsApplyChangesPostRequestBodyContentApplicationJsonSchemaData
  securitySchemes:
    deelToken:
      type: http
      scheme: bearer
      description: "## Authentication\nThe Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.\n\n```curl\ncurl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \\\n  -H 'Authorization: Bearer YOUR-TOKEN-HERE'\n```\n\n[Learn more about authentication](/api/authentication)\n"
    oauth2:
      type: http
      scheme: bearer
      description: Standard OAuth2 security scheme based on https://swagger.io/docs/specification/authentication/