Pomo Consumer Group API

The consumer-group API from Pomo — 6 operation(s) for consumer-group.

Operations 6

POST /api/consumer-group/create_group Create User Group #
GET /api/consumer-group/fetch_groups Fetch Consumer Groups #
DELETE /api/consumer-group/delete_group/{group_id} Delete Consumer Group #
POST /api/consumer-group/upload_consumers/{group_id} Upload Consumers To Group #
POST /api/consumer-group/remove_consumers/{group_id} Remove Consumers From Group #
GET /api/consumer-group/get_consumers/{group_id} Get Consumers #

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/pomo-consumer-group-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

pomo-consumer-group-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: GPT Backend Consumer Group API
  version: 0.1.0
servers:
- url: https://api.usepomo.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: consumer-group
paths:
  /api/consumer-group/create_group:
    post:
      tags:
      - consumer-group
      summary: Create User Group
      description: Create a new consumer group for the current company profile.
      operationId: create_user_group_api_consumer_group_create_group_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
      - HTTPBearer: []
  /api/consumer-group/fetch_groups:
    get:
      tags:
      - consumer-group
      summary: Fetch Consumer Groups
      description: Fetch all consumer groups for the current company profile.
      operationId: fetch_consumer_groups_api_consumer_group_fetch_groups_get
      security:
      - HTTPBearer: []
      parameters:
      - name: page
        in: query
        required: false
        schema:
          type: integer
          default: 0
          title: Page
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 10
          title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/consumer-group/delete_group/{group_id}:
    delete:
      tags:
      - consumer-group
      summary: Delete Consumer Group
      description: Delete a consumer group and all its consumers.
      operationId: delete_consumer_group_api_consumer_group_delete_group__group_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: group_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Group Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/consumer-group/upload_consumers/{group_id}:
    post:
      tags:
      - consumer-group
      summary: Upload Consumers To Group
      description: Upload consumers from a CSV or Excel file to a consumer group.
      operationId: upload_consumers_to_group_api_consumer_group_upload_consumers__group_id__post
      security:
      - HTTPBearer: []
      parameters:
      - name: group_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Group Id
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/Body_upload_consumers_to_group_api_consumer_group_upload_consumers__group_id__post'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/consumer-group/remove_consumers/{group_id}:
    post:
      tags:
      - consumer-group
      summary: Remove Consumers From Group
      description: Remove specific consumers from a group.
      operationId: remove_consumers_from_group_api_consumer_group_remove_consumers__group_id__post
      security:
      - HTTPBearer: []
      parameters:
      - name: group_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Group Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/consumer-group/get_consumers/{group_id}:
    get:
      tags:
      - consumer-group
      summary: Get Consumers
      description: Get consumers in a group with pagination.
      operationId: get_consumers_api_consumer_group_get_consumers__group_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: group_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Group Id
      - name: page
        in: query
        required: false
        schema:
          type: integer
          minimum: 0
          default: 0
          title: Page
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          maximum: 100
          minimum: 1
          default: 20
          title: Limit
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
    Body_upload_consumers_to_group_api_consumer_group_upload_consumers__group_id__post:
      properties:
        file:
          type: string
          format: binary
          title: File
      type: object
      required:
      - file
      title: Body_upload_consumers_to_group_api_consumer_group_upload_consumers__group_id__post
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer