Cacheflow Users API

The Users API from Cacheflow — 11 operation(s) for users.

Business capability
Identity & Access Management BC-620.20

Operations 20

POST /api/latest/data/users/{id}/emails Add user email #
DELETE /api/latest/data/users/{id}/emails Delete user email #
GET /api/latest/data/users List users #
POST /api/latest/data/users Create a user #
GET /api/latest/data/users/{id} Retrieve a user #
PUT /api/latest/data/users/{id} Update a user #
DELETE /api/latest/data/users/{id} Delete a user #
GET /api/latest/profile/me/sso_redirect Retrieve SSO redirect #
POST /api/latest/profile/me/support Retrieve support token #
GET /api/latest/profile/me Retrieve user profile #
PUT /api/latest/profile/me Update user profile #
GET /api/latest/profile/me/logout Sign-out user #
GET /api/latest/settings/invites List invites #
POST /api/latest/settings/invites Create invite #
DELETE /api/latest/settings/invites/{id} Delete invite #
GET /api/latest/settings/me/configs/{config_key} Retrieve user config by key #
PUT /api/latest/settings/me/configs/{config_key} Update a user config #
POST /api/latest/settings/me/configs/{config_key} Create a user config #
DELETE /api/latest/settings/me/configs/{config_key} Delete a user config #
GET /api/latest/settings/me/configs List user configs #

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

cacheflow-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Cacheflow Users API
  version: 0.0.3
servers:
- url: https://api.getcacheflow.com
  description: 'Production. Calls are tenant-routed: send Host: <org-flow-domain>.api.getcacheflow.com (per github.com/getcacheflow/api-examples SETUP.md). Host no longer resolves as of 2026-08-13.'
- url: https://api.sandbox.getcacheflow.com
  description: Sandbox. Tenant-routed as <org-flow-domain>.api.sandbox.getcacheflow.com. Host no longer resolves as of 2026-08-13.
tags:
- name: Users
paths:
  /api/latest/data/users/{id}/emails:
    post:
      tags:
      - Users
      summary: Add user email
      operationId: addUserEmail
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserEmail'
      responses:
        '201':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserEmail'
    delete:
      tags:
      - Users
      summary: Delete user email
      operationId: deleteUserEmail
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserEmail'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserEmail'
  /api/latest/data/users:
    get:
      tags:
      - Users
      summary: List users
      operationId: getAllUsers
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UserProfile'
    post:
      tags:
      - Users
      summary: Create a user
      operationId: createUser
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserProfile'
      responses:
        '201':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserProfile'
  /api/latest/data/users/{id}:
    get:
      tags:
      - Users
      summary: Retrieve a user
      operationId: getUserById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserProfile'
    put:
      tags:
      - Users
      summary: Update a user
      operationId: updateUser
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserProfile'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserProfile'
    delete:
      tags:
      - Users
      summary: Delete a user
      operationId: deleteUser
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        '200':
          description: OK
  /api/latest/profile/me/sso_redirect:
    get:
      tags:
      - Users
      summary: Retrieve SSO redirect
      operationId: getSsoRedirect
      parameters:
      - name: sso_source
        in: query
        schema:
          type: string
      - name: return_to
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenResponse'
  /api/latest/profile/me/support:
    post:
      tags:
      - Users
      summary: Retrieve support token
      operationId: getSupportToken
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenResponse'
  /api/latest/profile/me:
    get:
      tags:
      - Users
      summary: Retrieve user profile
      operationId: getUserProfile
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Profile'
    put:
      tags:
      - Users
      summary: Update user profile
      operationId: updateUser_1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/User'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
  /api/latest/profile/me/logout:
    get:
      tags:
      - Users
      summary: Sign-out user
      operationId: logout
      responses:
        default:
          description: default response
          content:
            application/json: {}
  /api/latest/settings/invites:
    get:
      tags:
      - Users
      summary: List invites
      operationId: getInvites
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Invite'
    post:
      tags:
      - Users
      summary: Create invite
      operationId: createInvite
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InviteRequest'
      responses:
        '201':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Invite'
  /api/latest/settings/invites/{id}:
    delete:
      tags:
      - Users
      summary: Delete invite
      operationId: removeInvite
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      responses:
        default:
          description: default response
          content:
            application/json: {}
  /api/latest/settings/me/configs/{config_key}:
    get:
      tags:
      - Users
      summary: Retrieve user config by key
      operationId: getUserConfig
      parameters:
      - name: config_key
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserConfig'
    put:
      tags:
      - Users
      summary: Update a user config
      operationId: upsertUserConfig
      parameters:
      - name: config_key
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              additionalProperties:
                type: object
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserConfig'
    post:
      tags:
      - Users
      summary: Create a user config
      operationId: createUserConfig
      parameters:
      - name: config_key
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              additionalProperties:
                type: object
      responses:
        '201':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserConfig'
    delete:
      tags:
      - Users
      summary: Delete a user config
      operationId: deleteUserConfig
      parameters:
      - name: config_key
        in: path
        required: true
        schema:
          type: string
      responses:
        default:
          description: default response
          content:
            application/json: {}
  /api/latest/settings/me/configs:
    get:
      tags:
      - Users
      summary: List user configs
      operationId: listUserConfigs
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/UserConfig'
components:
  schemas:
    ReferenceSet:
      type: object
      properties:
        references:
          uniqueItems: true
          type: array
          items:
            $ref: '#/components/schemas/Reference'
    Profile:
      required:
      - role
      type: object
      properties:
        user:
          $ref: '#/components/schemas/User'
        organizationId:
          type: string
          format: uuid
        domain:
          type: string
        organizationName:
          type: string
        flowDomain:
          type: string
        organizationDefaultCurrency:
          type: string
        referenceSet:
          $ref: '#/components/schemas/ReferenceSet'
        identity:
          $ref: '#/components/schemas/Identity'
        groups:
          type: array
          items:
            $ref: '#/components/schemas/Group'
        role:
          type: string
          enum:
          - anonymous
          - auth_identity
          - system
          - admin
          - user
          - observer
          - sales
          - scope
          - api
          - buyer_guest
          - buyer_preview
          - buyer
        referenceTypes:
          type: array
          items:
            type: string
            enum:
            - account
            - apiwebhook
            - apitoken
            - approvalgroup
            - attachmentconfig
            - authidentity
            - billingschedule
            - companyInfo
            - connectorSyncEvent
            - contact
            - contentTemplate
            - contract
            - contractitem
            - contractitemlevel
            - currency
            - customer
            - docusignaccount
            - document
            - documentversion
            - group
            - invite
            - invoice
            - invoiceConfiguration
            - organization
            - orgconfig
            - orgidentitytoken
            - payment
            - paymentMethod
            - paymentSchedule
            - paymentTerm
            - pricebook
            - pricebookentry
            - product
            - productlevel
            - productusage
            - proposal
            - proposalapprovalrule
            - proposalevent
            - proposalitem
            - proposaliteminterval
            - proposalitemlevel
            - proposaloption
            - refund
            - renewalconfiguration
            - signature
            - signingdocument
            - transfer
            - transferevent
            - unit
            - user
        isSysAdmin:
          type: boolean
    UserConfig:
      type: object
      properties:
        id:
          type: string
          format: uuid
        createdAt:
          type: string
          format: date-time
          readOnly: true
        createdBy:
          type: string
        updatedAt:
          type: string
          format: date-time
          readOnly: true
        updatedBy:
          type: string
          readOnly: true
        configKey:
          type: string
        configValue:
          type: object
          additionalProperties:
            type: object
        userId:
          type: string
          format: uuid
    Group:
      type: object
      properties:
        id:
          type: string
          format: uuid
        createdAt:
          type: string
          format: date-time
          readOnly: true
        createdBy:
          type: string
        updatedAt:
          type: string
          format: date-time
          readOnly: true
        updatedBy:
          type: string
          readOnly: true
        roleType:
          type: string
          enum:
          - anonymous
          - auth_identity
          - system
          - admin
          - user
          - observer
          - sales
          - scope
          - api
          - buyer_guest
          - buyer_preview
          - buyer
        name:
          type: string
    InviteRequest:
      type: object
      properties:
        email:
          type: string
        type:
          type: string
          enum:
          - anonymous
          - auth_identity
          - system
          - admin
          - user
          - observer
          - sales
          - scope
          - api
          - buyer_guest
          - buyer_preview
          - buyer
    User:
      type: object
      properties:
        id:
          type: string
          format: uuid
        createdAt:
          type: string
          format: date-time
          readOnly: true
        createdBy:
          type: string
        updatedAt:
          type: string
          format: date-time
          readOnly: true
        updatedBy:
          type: string
          readOnly: true
        username:
          type: string
        status:
          type: string
          enum:
          - pending
          - active
          - inactive
        source:
          type: string
        firstName:
          type: string
        lastName:
          type: string
        lastActiveAt:
          type: string
          format: date-time
        manager:
          $ref: '#/components/schemas/User'
    UserProfile:
      type: object
      properties:
        user:
          $ref: '#/components/schemas/User'
        roleType:
          type: string
          enum:
          - anonymous
          - auth_identity
          - system
          - admin
          - user
          - observer
          - sales
          - scope
          - api
          - buyer_guest
          - buyer_preview
          - buyer
        invite:
          type: boolean
        emails:
          type: array
          items:
            $ref: '#/components/schemas/UserEmail'
    TokenResponse:
      type: object
      properties:
        token:
          type: string
        actorType:
          type: string
          enum:
          - account
          - apiwebhook
          - apitoken
          - approvalgroup
          - attachmentconfig
          - authidentity
          - billingschedule
          - companyInfo
          - connectorSyncEvent
          - contact
          - contentTemplate
          - contract
          - contractitem
          - contractitemlevel
          - currency
          - customer
          - docusignaccount
          - document
          - documentversion
          - group
          - invite
          - invoice
          - invoiceConfiguration
          - organization
          - orgconfig
          - orgidentitytoken
          - payment
          - paymentMethod
          - paymentSchedule
          - paymentTerm
          - pricebook
          - pricebookentry
          - product
          - productlevel
          - productusage
          - proposal
          - proposalapprovalrule
          - proposalevent
          - proposalitem
          - proposaliteminterval
          - proposalitemlevel
          - proposaloption
          - refund
          - renewalconfiguration
          - signature
          - signingdocument
          - transfer
          - transferevent
          - unit
          - user
        orgId:
          type: string
        userId:
          type: string
        redirectUrl:
          type: string
        role:
          type: string
          enum:
          - anonymous
          - auth_identity
          - system
          - admin
          - user
          - observer
          - sales
          - scope
          - api
          - buyer_guest
          - buyer_preview
          - buyer
    UserEmail:
      type: object
      properties:
        id:
          type: string
          format: uuid
        createdAt:
          type: string
          format: date-time
          readOnly: true
        createdBy:
          type: string
        updatedAt:
          type: string
          format: date-time
          readOnly: true
        updatedBy:
          type: string
          readOnly: true
        email:
          type: string
        status:
          type: string
          enum:
          - pending
          - active
          - inactive
        user:
          $ref: '#/components/schemas/User'
    Reference:
      type: object
      properties:
        type:
          type: string
          enum:
          - account
          - apiwebhook
          - apitoken
          - approvalgroup
          - attachmentconfig
          - authidentity
          - billingschedule
          - companyInfo
          - connectorSyncEvent
          - contact
          - contentTemplate
          - contract
          - contractitem
          - contractitemlevel
          - currency
          - customer
          - docusignaccount
          - document
          - documentversion
          - group
          - invite
          - invoice
          - invoiceConfiguration
          - organization
          - orgconfig
          - orgidentitytoken
          - payment
          - paymentMethod
          - paymentSchedule
          - paymentTerm
          - pricebook
          - pricebookentry
          - product
          - productlevel
          - productusage
          - proposal
          - proposalapprovalrule
          - proposalevent
          - proposalitem
          - proposaliteminterval
          - proposalitemlevel
          - proposaloption
          - refund
          - renewalconfiguration
          - signature
          - signingdocument
          - transfer
          - transferevent
          - unit
          - user
        ids:
          uniqueItems: true
          type: array
          items:
            type: string
            format: uuid
        actions:
          uniqueItems: true
          type: array
          items:
            type: string
            enum:
            - none
            - read
            - create
            - update
            - delete
            - sign
            - planset_selection
            - invite_contact
            - billing_information
            - billing_payment
            - accept
    Identity:
      type: object
      properties:
        id:
          type: string
          format: uuid
        username:
          type: string
        identityType:
          type: string
          enum:
          - account
          - apiwebhook
          - apitoken
          - approvalgroup
          - attachmentconfig
          - authidentity
          - billingschedule
          - companyInfo
          - connectorSyncEvent
          - contact
          - contentTemplate
          - contract
          - contractitem
          - contractitemlevel
          - currency
          - customer
          - docusignaccount
          - document
          - documentversion
          - group
          - invite
          - invoice
          - invoiceConfiguration
          - organization
          - orgconfig
          - orgidentitytoken
          - payment
          - paymentMethod
          - paymentSchedule
          - paymentTerm
          - pricebook
          - pricebookentry
          - product
          - productlevel
          - productusage
          - proposal
          - proposalapprovalrule
          - proposalevent
          - proposalitem
          - proposaliteminterval
          - proposalitemlevel
          - proposaloption
          - refund
          - renewalconfiguration
          - signature
          - signingdocument
          - transfer
          - transferevent
          - unit
          - user
        firstName:
          type: string
        lastName:
          type: string
    Invite:
      type: object
      properties:
        id:
          type: string
          format: uuid
        createdAt:
          type: string
          format: date-time
          readOnly: true
        createdBy:
          type: string
        updatedAt:
          type: string
          format: date-time
          readOnly: true
        updatedBy:
          type: string
          readOnly: true
        email:
          type: string
        code:
          type: string
        status:
          type: string
          enum:
          - pending
          - active
          - inactive
        expiresAt:
          type: string
          format: date-time
        source:
          type: string
        group:
          $ref: '#/components/schemas/Group'