Podium Conversation Assignee API

The Conversation Assignee API from Podium — 1 operation(s) for conversation assignee.

Operations 2

GET /v4/conversations/{uid}/assignees Get conversation assignees. #
PUT /v4/conversations/{uid}/assignees Update a conversation assignee. #

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/podium-conversation-assignee-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

podium-conversation-assignee-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Conversations Conversation Assignee API
  version: 2021.04.01
servers:
- url: https://api.podium.com
  variables: {}
security: []
tags:
- name: Conversation Assignee
paths:
  /v4/conversations/{uid}/assignees:
    get:
      callbacks: {}
      description: 'Get conversation assignees.


        Required scope: `read_messages`.'
      operationId: conversation_assignee.get
      parameters:
      - description: Podium unique identifier for conversation.
        in: path
        name: uid
        required: true
        schema:
          example: 00000000-0000-0000-0000-000000000000
          format: uuid
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: '#/components/schemas/conversation_assignee'
                  metadata:
                    description: Additional response data.
                    properties:
                      url:
                        description: The resource URL.
                        example: https://www.podium.com/
                        type: string
                    type: object
                type: object
          description: Successful response.
        default:
          content:
            application/json:
              schema:
                properties:
                  code:
                    description: Podium code for the error.
                    type: integer
                  message:
                    description: Specific details about the error.
                    type:
                    - string
                    - 'null'
                  moreInfo:
                    description: URL providing more information about the error.
                    type: string
                title: Error
                type: object
          description: Error response.
      summary: Get conversation assignees.
      tags:
      - Conversation Assignee
    put:
      callbacks: {}
      description: 'Update a conversation assignee.


        Required scope: `write_messages`.'
      operationId: conversation_assignee.update
      parameters:
      - description: Podium unique identifier for conversation.
        in: path
        name: uid
        required: true
        schema:
          example: 00000000-0000-0000-0000-000000000000
          format: uuid
          type: string
      requestBody:
        content:
          application/json:
            schema:
              description: Messenger conversation assignee.
              properties:
                assigneeUids:
                  description: List of assignee user UIDs
                  items:
                    description: Podium unique identifier for assignee user.
                    example: 00000000-0000-0000-0000-000000000000
                    format: uuid
                    type: string
                  type: array
                keepAiAssignment:
                  description: Keep AI assignment - defaults to false
                  type:
                  - boolean
                  - 'null'
                name:
                  description: User assigning the conversation (to be shown in the notification)
                  type:
                  - string
                  - 'null'
              type: object
        description: Update conversation assignee params
        required: false
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    items:
                      $ref: '#/components/schemas/conversation_assignee'
                    type: array
                  metadata:
                    description: Additional response data.
                    properties:
                      url:
                        description: The resource URL.
                        example: https://www.podium.com/
                        type: string
                    type: object
                type: object
          description: Successful response.
        default:
          content:
            application/json:
              schema:
                properties:
                  code:
                    description: Podium code for the error.
                    type: integer
                  message:
                    description: Specific details about the error.
                    type:
                    - string
                    - 'null'
                  moreInfo:
                    description: URL providing more information about the error.
                    type: string
                title: Error
                type: object
          description: Error response.
      summary: Update a conversation assignee.
      tags:
      - Conversation Assignee
components:
  schemas:
    conversation_assignee:
      description: Messenger conversation assignees.
      properties:
        assignedUserUid:
          description: Podium unique identifier for user.
          example: 00000000-0000-0000-0000-000000000000
          format: uuid
          type:
          - string
          - 'null'
        assigneeType:
          description: Type of assignee
          enum:
          - user
          type:
          - string
          - 'null'
        assigneeUid:
          description: Podium unique identifier for user.
          example: 00000000-0000-0000-0000-000000000000
          format: uuid
          type:
          - string
          - 'null'
        assignees:
          description: List of conversation assignees
          items:
            properties:
              uid:
                description: Podium unique identifier for assignee user.
                example: 00000000-0000-0000-0000-000000000000
                format: uuid
                type: string
            type: object
          type:
          - array
          - 'null'
      title: conversation_assignee
      type: object