Select Star scim API

The scim API from Select Star — 5 operation(s) for scim.

Operations 9

GET /scim/v2/Me #
PUT /scim/v2/Me #
GET /scim/v2/ResourceTypes #
GET /scim/v2/ServiceProviderConfig #
GET /scim/v2/Users #
POST /scim/v2/Users #
GET /scim/v2/Users/{guid} #
PUT /scim/v2/Users/{guid} #
DELETE /scim/v2/Users/{guid} #

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/select-star-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

select-star-scim-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Select Star Metadata bi SCIM API
  version: 1.0.0
  x-role-system:
    description: This API uses role-based access control
    roles:
      admin: Full access to all operations
      data_manager: Can modify data and configurations
      user: Read-only access to most resources
  description: API for interacting with the Select Star system
  termsOfService: https://www.selectstar.com/terms-of-service
  contact:
    email: support@selectstar.com
  license:
    name: All Rights Reserved
servers:
- url: https://api.production.selectstar.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: scim
paths:
  /scim/v2/Me:
    get:
      operationId: scim_v2_Me_retrieve
      description: 'Manage Users with a SCIM compliant API.


        **Required Role:** Admin'
      tags:
      - scim
      security:
      - tokenAuth: []
      responses:
        '200':
          content:
            application/scim+json:
              schema:
                $ref: '#/components/schemas/SCIMUser'
          description: ''
      x-role-requirements: Admin
    put:
      operationId: scim_v2_Me_update
      description: 'Manage Users with a SCIM compliant API.


        **Required Role:** Admin'
      tags:
      - scim
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SCIMUserUpdateRequest'
        required: true
      security:
      - tokenAuth: []
      responses:
        '200':
          content:
            application/scim+json:
              schema:
                $ref: '#/components/schemas/SCIMUser'
          description: ''
      x-role-requirements: Admin
  /scim/v2/ResourceTypes:
    get:
      operationId: scim_v2_ResourceTypes_retrieve
      tags:
      - scim
      security:
      - tokenAuth: []
      responses:
        '200':
          description: No response body
      description: '**Required Role:** Authenticated User with Active Organization'
      x-role-requirements: Authenticated User with Active Organization
  /scim/v2/ServiceProviderConfig:
    get:
      operationId: scim_v2_ServiceProviderConfig_retrieve
      tags:
      - scim
      security:
      - tokenAuth: []
      responses:
        '200':
          description: No response body
      description: '**Required Role:** Authenticated User with Active Organization'
      x-role-requirements: Authenticated User with Active Organization
  /scim/v2/Users:
    get:
      operationId: scim_v2_Users_list
      description: 'Manage Users with a SCIM compliant API.


        **Required Role:** Admin'
      parameters:
      - in: query
        name: count
        schema:
          type: integer
        description: Non-negative integer. Specifies the desired maximum number of query results per page, e.g., 10. A negative value SHALL be interpreted as "0". A value of "0" indicates that no resource results are to be returned except for "totalResults".
      - in: query
        name: page
        schema:
          type: integer
        description: Deprecated. Use startIndex instead.
      - in: query
        name: page_size
        schema:
          type: integer
        description: Deprecated. Use count instead.
      - in: query
        name: startIndex
        schema:
          type: integer
        description: The 1-based index of the first query result.
      - in: query
        name: userName
        schema:
          type: string
        description: A string that is matched against the "userName" or "email" attributes of a User.
      tags:
      - scim
      security:
      - tokenAuth: []
      responses:
        '200':
          content:
            application/scim+json:
              schema:
                $ref: '#/components/schemas/SCIMUserListResponse'
          description: ''
      x-role-requirements: Admin
    post:
      operationId: scim_v2_Users_create
      description: 'Manage Users with a SCIM compliant API.


        **Required Role:** Admin'
      tags:
      - scim
      requestBody:
        content:
          application/scim+json:
            schema:
              $ref: '#/components/schemas/SCIMUserCreateRequest'
        required: true
      security:
      - tokenAuth: []
      responses:
        '201':
          content:
            application/scim+json:
              schema:
                $ref: '#/components/schemas/SCIMUser'
          description: ''
      x-role-requirements: Admin
  /scim/v2/Users/{guid}:
    get:
      operationId: scim_v2_Users_retrieve
      description: 'Manage Users with a SCIM compliant API.


        **Required Role:** Admin'
      parameters:
      - in: path
        name: guid
        schema:
          type: string
          pattern: ^([a-zA-z]{2}_[a-zA-Z0-9]{22})|me|default|([a-zA-z]{2}_[a-zA-Z0-9]{22}).personal$
        required: true
      tags:
      - scim
      security:
      - tokenAuth: []
      responses:
        '200':
          content:
            application/scim+json:
              schema:
                $ref: '#/components/schemas/SCIMUser'
          description: ''
      x-role-requirements: Admin
    put:
      operationId: scim_v2_Users_update
      description: 'Manage Users with a SCIM compliant API.


        **Required Role:** Admin'
      parameters:
      - in: path
        name: guid
        schema:
          type: string
          pattern: ^([a-zA-z]{2}_[a-zA-Z0-9]{22})|me|default|([a-zA-z]{2}_[a-zA-Z0-9]{22}).personal$
        required: true
      tags:
      - scim
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SCIMUserUpdateRequest'
        required: true
      security:
      - tokenAuth: []
      responses:
        '200':
          content:
            application/scim+json:
              schema:
                $ref: '#/components/schemas/SCIMUser'
          description: ''
      x-role-requirements: Admin
    delete:
      operationId: scim_v2_Users_destroy
      description: 'Manage Users with a SCIM compliant API.


        **Required Role:** Admin'
      parameters:
      - in: path
        name: guid
        schema:
          type: string
          pattern: ^([a-zA-z]{2}_[a-zA-Z0-9]{22})|me|default|([a-zA-z]{2}_[a-zA-Z0-9]{22}).personal$
        required: true
      tags:
      - scim
      security:
      - tokenAuth: []
      responses:
        '204':
          description: No response body
      x-role-requirements: Admin
components:
  schemas:
    SCIMUserListResponse:
      type: object
      properties:
        schemas:
          type: array
          items:
            type: string
            maxLength: 255
        totalResults:
          type:
          - integer
          - 'null'
        startIndex:
          type:
          - integer
          - 'null'
        itemsPerPage:
          type:
          - integer
          - 'null'
        resources:
          type: array
          items:
            $ref: '#/components/schemas/SCIMUser'
      required:
      - itemsPerPage
      - resources
      - schemas
      - startIndex
      - totalResults
    SCIMUser:
      type: object
      properties:
        schemas:
          type: array
          items:
            type: string
          readOnly: true
        meta:
          type: object
          additionalProperties: {}
          readOnly: true
        id:
          type: string
          readOnly: true
        userName:
          type: string
          pattern: '@(?!gmail\.|hotmail\.|yahoo\.|live\.|qq\.|naver\.|protonmail\.|yopmail\.|pokemail\.|bvhrs\.|idrct\.|caraparcal\.|tryninja.io|mailinator.com|ontimeusemail\.|outlook\.|icloud\.|mail\.|instasmail\.|nevyxus\.|bvhrk\.|cazlq\.)'
        name:
          type: object
          properties:
            givenName:
              type: string
            familyName:
              type: string
          description: 'The components of the user''s real name. Returned as a complex type with the following sub-attributes: `familyName`, `givenName`.'
        emails:
          type: array
          items:
            type: object
            properties:
              value:
                type: string
                format: email
              primary:
                type: boolean
          readOnly: true
          description: 'Email of the user. Returned as a list of objects with the following attributes: `value` and `primary`.'
        active:
          type: boolean
        lastLogin:
          type: string
          format: date-time
          readOnly: true
        role:
          type: string
          description: The role of the user. One of 'user', 'admin' or 'data_manager'
        team:
          allOf:
          - $ref: '#/components/schemas/Team'
      required:
      - active
      - emails
      - id
      - lastLogin
      - meta
      - name
      - schemas
      - userName
    SCIMUserCreateRequest:
      type: object
      properties:
        userName:
          type: string
          minLength: 1
          pattern: '@(?!gmail\.|hotmail\.|yahoo\.|live\.|qq\.|naver\.|protonmail\.|yopmail\.|pokemail\.|bvhrs\.|idrct\.|caraparcal\.|tryninja.io|mailinator.com|ontimeusemail\.|outlook\.|icloud\.|mail\.|instasmail\.|nevyxus\.|bvhrk\.|cazlq\.)'
        password:
          type: string
          writeOnly: true
          minLength: 1
        name:
          type: object
          properties:
            givenName:
              type: string
            familyName:
              type: string
          description: 'The components of the user''s real name. Returned as a complex type with the following sub-attributes: `familyName`, `givenName`.'
        active:
          type: boolean
        role:
          type: string
          minLength: 1
          description: The role of the user. One of 'user', 'admin' or 'data_manager'
        team:
          allOf:
          - $ref: '#/components/schemas/TeamRequest'
      required:
      - active
      - name
      - password
      - userName
    TeamRequest:
      type: object
      properties:
        name:
          type: string
          minLength: 1
          maxLength: 100
        description:
          type:
          - string
          - 'null'
          description: Active description
        richtext_description:
          type:
          - string
          - 'null'
          description: Richtext formatted description. Can be in Slatejs or Draftjs format.
      required:
      - name
    SCIMUserUpdateRequest:
      type: object
      properties:
        userName:
          type: string
          minLength: 1
          pattern: '@(?!gmail\.|hotmail\.|yahoo\.|live\.|qq\.|naver\.|protonmail\.|yopmail\.|pokemail\.|bvhrs\.|idrct\.|caraparcal\.|tryninja.io|mailinator.com|ontimeusemail\.|outlook\.|icloud\.|mail\.|instasmail\.|nevyxus\.|bvhrk\.|cazlq\.)'
        name:
          type: object
          properties:
            givenName:
              type: string
            familyName:
              type: string
          description: 'The components of the user''s real name. Returned as a complex type with the following sub-attributes: `familyName`, `givenName`.'
        active:
          type: boolean
        role:
          type: string
          minLength: 1
          description: The role of the user. One of 'user', 'admin' or 'data_manager'
        team:
          allOf:
          - $ref: '#/components/schemas/TeamRequest'
      required:
      - active
      - name
      - userName
    Team:
      type: object
      properties:
        guid:
          type: string
          readOnly: true
        name:
          type: string
          maxLength: 100
        description:
          type:
          - string
          - 'null'
          description: Active description
        richtext_description:
          type:
          - string
          - 'null'
          description: Richtext formatted description. Can be in Slatejs or Draftjs format.
        members_count:
          type: integer
          readOnly: true
      required:
      - guid
      - members_count
      - name
  securitySchemes:
    JWTAuthentication:
      type: http
      scheme: bearer
      bearerFormat: JWT
    tokenAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Token-based authentication with required prefix "Token"
externalDocs:
  description: Select Star API reference documentation
  url: https://docs.selectstar.com/select-star-api