TrustArc SCIM API

The Scim API from TrustArc — 5 operation(s) for scim.

Operations 5

GET /external/api/v2/scim/ServiceProviderConfig #
GET /external/api/v2/scim/Schemas #
GET /external/api/v2/scim/Schemas/{resource} #
GET /external/api/v2/scim/ResourceTypes #
GET /external/api/v2/scim/ResourceTypes/{resource} #

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/trustarc-scim-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

trustarc-scim-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Trustarc SCIM API
  version: v1
  description: 'Operations tagged Scim across 2 of this provider''s published API definitions: trustarc-guardian-openapi.json, trustarc-guardian-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://login.truste.com
  description: Generated server url
tags:
- name: Scim
paths:
  /external/api/v2/scim/ServiceProviderConfig:
    get:
      tags:
      - Scim
      operationId: getServiceProviderConfig
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ServiceProviderConfigResource'
      security:
      - guardianAuth: []
    servers:
    - url: https://login.truste.com
      description: Generated server url
  /external/api/v2/scim/Schemas:
    get:
      tags:
      - Scim
      operationId: getSchemas
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ListResponseSchemaResource'
      security:
      - guardianAuth: []
    servers:
    - url: https://login.truste.com
      description: Generated server url
  /external/api/v2/scim/Schemas/{resource}:
    get:
      tags:
      - Scim
      operationId: getSchema
      parameters:
      - name: resource
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SchemaResource'
      security:
      - guardianAuth: []
    servers:
    - url: https://login.truste.com
      description: Generated server url
  /external/api/v2/scim/ResourceTypes:
    get:
      tags:
      - Scim
      operationId: getResourceTypes
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ListResponseResourceTypeResource'
      security:
      - guardianAuth: []
    servers:
    - url: https://login.truste.com
      description: Generated server url
  /external/api/v2/scim/ResourceTypes/{resource}:
    get:
      tags:
      - Scim
      operationId: getResourceType
      parameters:
      - name: resource
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ResourceTypeResource'
      security:
      - guardianAuth: []
    servers:
    - url: https://login.truste.com
      description: Generated server url
components:
  schemas:
    Meta:
      properties:
        resourceType:
          type: string
        created:
          type: string
          format: date-time
        lastModified:
          type: string
          format: date-time
        location:
          type: string
          format: uri
        version:
          type: string
        createdMillis:
          $ref: '#/components/schemas/Meta'
        lastModifiedMillis:
          $ref: '#/components/schemas/Meta'
    ChangePasswordConfig:
      properties:
        supported:
          type: boolean
      required:
      - supported
    ETagConfig:
      properties:
        supported:
          type: boolean
      required:
      - supported
    AuthenticationScheme:
      properties:
        name:
          type: string
        description:
          type: string
        specUri:
          type: string
          format: uri
        documentationUri:
          type: string
          format: uri
        type:
          type: string
        primary:
          type: boolean
      required:
      - description
      - name
    BulkConfig:
      properties:
        supported:
          type: boolean
        maxOperations:
          type: integer
          format: int32
        maxPayloadSize:
          type: integer
          format: int32
      required:
      - maxOperations
      - maxPayloadSize
      - supported
    FilterConfig:
      properties:
        supported:
          type: boolean
        maxResults:
          type: integer
          format: int32
      required:
      - maxResults
      - supported
    AttributeDefinition:
      properties:
        name:
          type: string
        type:
          type: string
          enum:
          - string
          - boolean
          - decimal
          - integer
          - dateTime
          - binary
          - reference
          - complex
        subAttributes:
          type: array
          items:
            $ref: '#/components/schemas/AttributeDefinition'
        multiValued:
          type: boolean
        description:
          type: string
        required:
          type: boolean
        canonicalValues:
          type: array
          items:
            type: string
        caseExact:
          type: boolean
        mutability:
          type: string
          enum:
          - readOnly
          - readWrite
          - immutable
          - writeOnly
        returned:
          type: string
          enum:
          - always
          - never
          - default
          - request
        uniqueness:
          type: string
          enum:
          - none
          - server
          - global
        referenceTypes:
          type: array
          items:
            type: string
      required:
      - multiValued
      - mutability
      - name
      - required
      - returned
      - type
    ListResponseSchemaResource:
      properties:
        schemas:
          type: array
          items:
            type: string
          uniqueItems: true
        totalResults:
          type: integer
          format: int32
        startIndex:
          type: integer
          format: int32
        itemsPerPage:
          type: integer
          format: int32
        Resources:
          type: array
          items:
            $ref: '#/components/schemas/SchemaResource'
      required:
      - Resources
    SortConfig:
      properties:
        supported:
          type: boolean
      required:
      - supported
    ListResponseResourceTypeResource:
      properties:
        schemas:
          type: array
          items:
            type: string
          uniqueItems: true
        totalResults:
          type: integer
          format: int32
        startIndex:
          type: integer
          format: int32
        itemsPerPage:
          type: integer
          format: int32
        Resources:
          type: array
          items:
            $ref: '#/components/schemas/ResourceTypeResource'
      required:
      - Resources
    ServiceProviderConfigResource:
      properties:
        schemas:
          type: array
          items:
            type: string
          uniqueItems: true
        id:
          type: string
        externalId:
          type: string
        documentationUri:
          type: string
        patch:
          $ref: '#/components/schemas/PatchConfig'
        bulk:
          $ref: '#/components/schemas/BulkConfig'
        filter:
          $ref: '#/components/schemas/FilterConfig'
        changePassword:
          $ref: '#/components/schemas/ChangePasswordConfig'
        sort:
          $ref: '#/components/schemas/SortConfig'
        etag:
          $ref: '#/components/schemas/ETagConfig'
        pagination:
          $ref: '#/components/schemas/PaginationConfig'
        authenticationSchemes:
          type: array
          items:
            $ref: '#/components/schemas/AuthenticationScheme'
        meta:
          $ref: '#/components/schemas/Meta'
      required:
      - authenticationSchemes
      - bulk
      - changePassword
      - etag
      - filter
      - patch
      - sort
    SchemaResource:
      properties:
        schemas:
          type: array
          items:
            type: string
          uniqueItems: true
        id:
          type: string
        externalId:
          type: string
        name:
          type: string
        description:
          type: string
        attributes:
          type: array
          items:
            $ref: '#/components/schemas/AttributeDefinition'
        meta:
          $ref: '#/components/schemas/Meta'
      required:
      - attributes
      - id
    PaginationConfig:
      properties:
        cursor:
          type: boolean
        index:
          type: boolean
        defaultPaginationMethod:
          type: string
        defaultPageSize:
          type: integer
          format: int32
        maxPageSize:
          type: integer
          format: int32
        cursorTimeout:
          type: integer
          format: int32
    ResourceTypeResource:
      properties:
        schemas:
          type: array
          items:
            type: string
          uniqueItems: true
        id:
          type: string
        externalId:
          type: string
        name:
          type: string
        description:
          type: string
        endpoint:
          type: string
          format: uri
        schema:
          type: string
          format: uri
        schemaExtensions:
          type: array
          items:
            $ref: '#/components/schemas/SchemaExtension'
        meta:
          $ref: '#/components/schemas/Meta'
      required:
      - endpoint
      - name
      - schema
    SchemaExtension:
      properties:
        schema:
          type: string
          format: uri
        required:
          type: boolean
      required:
      - required
      - schema
    PatchConfig:
      properties:
        supported:
          type: boolean
      required:
      - supported
  securitySchemes:
    guardianAuth:
      type: oauth2
      scheme: bearer
      bearerFormat: JWT
      flows:
        implicit:
          authorizationUrl: https://login.truste.com/oauth/authorize
          tokenUrl: https://login.truste.com/oauth/token
          scopes:
            openid: OpenID
x-refined-from:
- trustarc-guardian-openapi.json
- trustarc-guardian-openapi.yml