Flowdock SCIM Provisioning API

Partial SCIM 1.x user provisioning API for CA Flowdock Enterprise customers with Single Sign-On configured. Bearer-token authenticated. Now offline.

Operations 6

GET /scim/{uid} Verify SCIM Authorization #
GET /scim/{uid}/Users List SCIM Users #
POST /scim/{uid}/Users Provision SCIM User #
GET /scim/{uid}/Users/{id} Get SCIM User #
PUT /scim/{uid}/Users/{id} Update SCIM User #
DELETE /scim/{uid}/Users/{id} Deactivate SCIM User #

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

flowdock-scim-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Flowdock Push Authentication SCIM API
  version: '1.0'
  x-status: discontinued
  x-deprecated-by-vendor: true
  x-shutdown-date: '2023-08-15'
  description: 'The Flowdock Push API was the legacy "post-only" integration surface for

    sending content into a Flow''s Team Inbox or Chat using a per-flow API

    token (no user authentication). It was deprecated in favor of the

    Messages endpoint of the REST API and was retired with the rest of

    Flowdock on August 15, 2023.


    Reconstructed from the historical https://github.com/flowdock/api-docs

    repository (docs/push.md, docs/team-inbox.md, docs/chat.md).

    '
servers:
- url: https://api.flowdock.com
  description: Historical production base URL (offline since 2023-08-15)
tags:
- name: SCIM
  description: SCIM 1.x user provisioning for SSO-enabled Flowdock organizations.
paths:
  /scim/{uid}:
    get:
      tags:
      - SCIM
      summary: Verify SCIM Authorization
      operationId: scimRoot
      parameters:
      - $ref: '#/components/parameters/Uid'
      responses:
        '200':
          description: Authorization OK.
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
        '401':
          description: Missing authorization header.
        '403':
          description: Invalid or wrong-token authorization header.
        '429':
          description: Rate-limited; retry later.
  /scim/{uid}/Users:
    get:
      tags:
      - SCIM
      summary: List SCIM Users
      operationId: scimListUsers
      parameters:
      - $ref: '#/components/parameters/Uid'
      responses:
        '200':
          description: SCIM Users collection.
          content:
            application/json:
              schema:
                type: object
                properties:
                  Resources:
                    type: array
                    items:
                      $ref: '#/components/schemas/ScimUser'
    post:
      tags:
      - SCIM
      summary: Provision SCIM User
      operationId: scimCreateUser
      parameters:
      - $ref: '#/components/parameters/Uid'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScimUser'
      responses:
        '201':
          description: User provisioned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScimUser'
  /scim/{uid}/Users/{id}:
    get:
      tags:
      - SCIM
      summary: Get SCIM User
      operationId: scimGetUser
      parameters:
      - $ref: '#/components/parameters/Uid'
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: User resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScimUser'
    put:
      tags:
      - SCIM
      summary: Update SCIM User
      operationId: scimUpdateUser
      parameters:
      - $ref: '#/components/parameters/Uid'
      - name: id
        in: path
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScimUser'
      responses:
        '200':
          description: User updated.
    delete:
      tags:
      - SCIM
      summary: Deactivate SCIM User
      operationId: scimDeleteUser
      parameters:
      - $ref: '#/components/parameters/Uid'
      - name: id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '204':
          description: User deactivated.
components:
  parameters:
    Uid:
      name: uid
      in: path
      required: true
      description: SSO organization UID issued during SSO setup.
      schema:
        type: string
  schemas:
    ScimUser:
      type: object
      properties:
        id:
          type: integer
        externalId:
          type: string
        userName:
          type: string
          format: email
        nickName:
          type: string
        name:
          type: object
          properties:
            givenName:
              type: string
            familyName:
              type: string
        emails:
          type: array
          items:
            type: object
            properties:
              value:
                type: string
                format: email
        meta:
          type: object
          properties:
            location:
              type: string
              format: uri
            created:
              type: string
              format: date-time
            lastModified:
              type: string
              format: date-time