Deel subpackage_serviceProviderConfig API

The subpackage_serviceProviderConfig API from Deel — 1 operation(s) for subpackage_serviceproviderconfig.

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-serviceproviderconfig-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-serviceproviderconfig-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Endpoints subpackage_serviceProviderConfig API
  version: 1.0.0
servers:
- url: https://api.letsdeel.com/rest/v2
- url: https://api-staging.letsdeel.com/rest/v2
tags:
- name: subpackage_serviceProviderConfig
paths:
  /ServiceProviderConfig:
    get:
      operationId: get-service-provider-config
      summary: Get service provider config
      tags:
      - subpackage_serviceProviderConfig
      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:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceProviderConfig'
components:
  schemas:
    Supported:
      type: object
      properties:
        supported:
          type: boolean
          default: false
      title: Supported
    ServiceProviderConfigSchemasItems:
      type: string
      enum:
      - urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig
      title: ServiceProviderConfigSchemasItems
    ServiceProviderConfig:
      type: object
      properties:
        authenticationSchemes:
          $ref: '#/components/schemas/AuthenticationSchemes'
        bulk:
          $ref: '#/components/schemas/BulkSupported'
        changePassword:
          $ref: '#/components/schemas/Supported'
        etag:
          $ref: '#/components/schemas/Supported'
        filter:
          $ref: '#/components/schemas/FilterSupported'
        patch:
          $ref: '#/components/schemas/Supported'
        schemas:
          type: array
          items:
            $ref: '#/components/schemas/ServiceProviderConfigSchemasItems'
        sort:
          $ref: '#/components/schemas/Supported'
        xmlDataFormat:
          $ref: '#/components/schemas/Supported'
      title: ServiceProviderConfig
    BulkSupported:
      type: object
      properties:
        maxOperations:
          type: integer
        maxPayloadSize:
          type: integer
        supported:
          type: boolean
          default: false
      title: BulkSupported
    FilterSupported:
      type: object
      properties:
        maxResults:
          type: integer
        supported:
          type: boolean
          default: false
      title: FilterSupported
    AuthenticationSchemes:
      type: object
      properties:
        authenticationSchemes:
          type: array
          items:
            $ref: '#/components/schemas/AuthenticationScheme'
      title: AuthenticationSchemes
    AuthenticationScheme:
      type: object
      properties:
        description:
          type: string
        documentationUrl:
          type: string
        name:
          type: string
        specUrl:
          type: string
      title: AuthenticationScheme
  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/