AskUI invites API

The invites API from AskUI — 3 operation(s) for invites.

Operations 5

GET /api/v1/invites List User Invites #
POST /api/v1/workspaces/{workspace_id}/invites Create Invite #
GET /api/v1/workspaces/{workspace_id}/invites List Invites #
PUT /api/v1/workspaces/{workspace_id}/invites/{invitation_id} Process Invite #
DELETE /api/v1/workspaces/{workspace_id}/invites/{invitation_id} Revoke Invite #

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

askui-invites-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AskUI Workspaces access-tokens Invites API
  version: 0.2.15
servers:
- url: https://workspaces.askui.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: invites
paths:
  /api/v1/invites:
    get:
      tags:
      - invites
      summary: List User Invites
      description: Get all valid invites for the authenticated user
      operationId: list_user_invites_api_v1_invites_get
      responses:
        '200':
          description: List of invites for the user
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListUserInvitesResponse'
        '500':
          description: Internal server error
      security:
      - Bearer: []
      - Basic: []
  /api/v1/workspaces/{workspace_id}/invites:
    post:
      tags:
      - invites
      summary: Create Invite
      operationId: create_invite_api_v1_workspaces__workspace_id__invites_post
      security:
      - Bearer: []
      - Basic: []
      parameters:
      - name: workspace_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Workspace Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateInviteCommand'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InviteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    get:
      tags:
      - invites
      summary: List Invites
      operationId: list_invites_api_v1_workspaces__workspace_id__invites_get
      security:
      - Bearer: []
      - Basic: []
      parameters:
      - name: workspace_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Workspace Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListInvitesResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/workspaces/{workspace_id}/invites/{invitation_id}:
    put:
      tags:
      - invites
      summary: Process Invite
      operationId: process_invite_api_v1_workspaces__workspace_id__invites__invitation_id__put
      security:
      - Bearer: []
      - Basic: []
      parameters:
      - name: workspace_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Workspace Id
      - name: invitation_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Invitation Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProcessWorkspaceInviteCommand'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InviteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - invites
      summary: Revoke Invite
      operationId: revoke_invite_api_v1_workspaces__workspace_id__invites__invitation_id__delete
      security:
      - Bearer: []
      - Basic: []
      parameters:
      - name: workspace_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Workspace Id
      - name: invitation_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Invitation Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InviteResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ProcessWorkspaceInviteCommand:
      properties:
        action:
          $ref: '#/components/schemas/InviteActionEnum'
      type: object
      required:
      - action
      title: ProcessWorkspaceInviteCommand
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    ListUserInvitesResponse:
      properties:
        invites:
          items:
            $ref: '#/components/schemas/InviteResponse'
          type: array
          title: Invites
      type: object
      required:
      - invites
      title: ListUserInvitesResponse
    InviteActionEnum:
      type: string
      enum:
      - accept
      - decline
      title: InviteActionEnum
    WorkspacePrivilege:
      type: string
      enum:
      - ROLE_WORKSPACE_OWNER
      - ROLE_WORKSPACE_ADMIN
      - ROLE_WORKSPACE_MEMBER
      title: WorkspacePrivilege
    InviteStatus:
      type: string
      enum:
      - pending
      - accepted
      - declined
      - revoked
      - expired
      title: InviteStatus
    ListInvitesResponse:
      properties:
        invites:
          items:
            $ref: '#/components/schemas/InviteResponse'
          type: array
          title: Invites
      type: object
      required:
      - invites
      title: ListInvitesResponse
    InviteResponse:
      properties:
        id:
          type: string
          format: uuid4
          title: Id
        email:
          type: string
          format: email
          title: Email
        workspaceId:
          type: string
          format: uuid4
          title: Workspaceid
        inviterId:
          type: string
          title: Inviterid
        privileges:
          items:
            $ref: '#/components/schemas/WorkspacePrivilege'
          type: array
          title: Privileges
        status:
          $ref: '#/components/schemas/InviteStatus'
        updatedAt:
          type: string
          format: date-time
          title: Updatedat
        expiresAt:
          type: string
          format: date-time
          title: Expiresat
        workspaceName:
          type: string
          title: Workspacename
      type: object
      required:
      - id
      - email
      - workspaceId
      - inviterId
      - privileges
      - status
      - updatedAt
      - expiresAt
      - workspaceName
      title: InviteResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CreateInviteCommand:
      properties:
        email:
          type: string
          format: email
          title: Email
        privilege:
          $ref: '#/components/schemas/WorkspacePrivilege'
      type: object
      required:
      - email
      - privilege
      title: CreateInviteCommand
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
    Basic:
      type: apiKey
      in: header
      name: Authorization