Authenticx (Scim) ResourceTypes API

The (Scim) ResourceTypes API from Authenticx — 2 operation(s) for (scim) resourcetypes.

Operations 2

GET /scim/v2/ResourceTypes Get All Resource Types
GET /scim/v2/ResourceTypes/{ResourceTypeId} Get Resource Type

Documentation

Specifications

Other Resources

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/authenticx-scim-resourcetypes-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

authenticx-scim-resourcetypes-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AcxApi Production (Scim) ResourceTypes (Scim) ResourceTypes (Scim) ResourceTypes API
  version: v1
servers:
- url: https://api.beauthenticx.com
  description: AcxApi Production Server
security:
- OAuth2:
  - acxapi
tags:
- name: (Scim) ResourceTypes
paths:
  /scim/v2/ResourceTypes:
    get:
      tags:
      - (Scim) ResourceTypes
      summary: Get All Resource Types
      description: Returns, in ListResponse format, all the resource types defined by Authenticx
      responses:
        '200':
          description: All resource types defined by Authenticx
          content:
            application/scim+json:
              schema:
                $ref: '#/components/schemas/ListResponse_Of_ResourceType'
  /scim/v2/ResourceTypes/{ResourceTypeId}:
    get:
      tags:
      - (Scim) ResourceTypes
      summary: Get Resource Type
      description: Returns one resource type specified by the resource type id.
      parameters:
      - name: ResourceTypeId
        in: path
        description: The id of the resource type to get
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Returns the resource type specified by the provided `ResourceTypeId`
          content:
            application/scim+json:
              schema:
                $ref: '#/components/schemas/AcxApi.Scim.Resources.ResourceType.ResourceType'
        '400':
          description: An invalid `ResourceTypeId` was provided
          content:
            application/scim+json:
              schema:
                $ref: '#/components/schemas/AcxApi.Scim.Models.ErrorResponse'
components:
  schemas:
    AcxApi.Scim.Resources.ResourceType.ResourceType:
      type: object
      properties:
        schemas:
          type:
          - array
          - 'null'
          items:
            type: string
          description: The schemas for this response
          example:
          - urn:ietf:params:scim:schemas:core:2.0:ResourceType
        id:
          type:
          - string
          - 'null'
          description: The id of this resource type
          example: User
        name:
          type:
          - string
          - 'null'
          description: The name of this resource type, likely the same as `id`
          example: User
        description:
          type:
          - string
          - 'null'
          description: A description of this resource type
          example: User Account
        endpoint:
          type:
          - string
          - 'null'
          description: Where this resource type is located on the server
          example: /Users
        schema:
          type:
          - string
          - 'null'
          description: The schema uri associated with this resource type
          example: urn:ietf:params:scim:schemas:core:2.0:User
        schemaExtensions:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/AcxApi.Scim.Resources.ResourceType.SchemaExtension'
          description: Any extensions of this resource type
      additionalProperties: false
    AcxApi.Scim.Models.ErrorResponse:
      type: object
      properties:
        schemas:
          type:
          - array
          - 'null'
          items:
            type: string
          description: List of schemas for this error response.
        scimType:
          type:
          - string
          - 'null'
          description: The type of error this was, as defined by scim
          example: invalidSyntax
        detail:
          type:
          - string
          - 'null'
          description: A detailed error message explaining what went wrong
        status:
          type:
          - string
          - 'null'
          description: The status code of the response
          example: '400'
      additionalProperties: false
    AcxApi.Scim.Resources.ResourceType.SchemaExtension:
      type: object
      properties:
        schema:
          type:
          - string
          - 'null'
          description: The uri of the extended schema
          example: urn:ietf:params:scim:schemas:extension:enterprise:2.0:User
        required:
          type: boolean
          description: Whether the extension is required
          example: true
      additionalProperties: false
    ListResponse_Of_ResourceType:
      type: object
      properties:
        itemsPerPage:
          type:
          - integer
          - 'null'
          description: The number of items returned per page
          format: int32
          example: 10
        startIndex:
          type:
          - integer
          - 'null'
          description: The current page
          format: int32
          example: 1
        totalResults:
          type: integer
          description: The number of results returned by this response
          format: int32
          readOnly: true
          example: 10
        Resources:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/AcxApi.Scim.Resources.ResourceType.ResourceType'
          description: The resources returned by this response
          readOnly: true
      additionalProperties: false
  securitySchemes:
    OAuth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.beauthenticx.com/connect/token
          scopes:
            acxapi: Access to Acx API