Replyr.ai Accounts API

The Accounts API from Replyr.ai — 13 operation(s) for accounts.

Operations 18

GET /accounts/me #
GET /accounts/admins #
GET /accounts/teams #
GET /accounts/tags #
POST /accounts/tags #
GET /accounts/tags/{tag_id} #
DELETE /accounts/tags/{tag_id} #
GET /accounts/tags/name/{tag_name} #
GET /accounts/flows #
GET /accounts/custom_fields #
POST /accounts/custom_fields #
GET /accounts/custom_fields/{custom_field_id} #
GET /accounts/custom_fields/name/{custom_field_name} #
GET /accounts/bot_fields/{bot_field_id} #
POST /accounts/bot_fields/{bot_field_id} #
DELETE /accounts/bot_fields/{bot_field_id} #
GET /accounts/integrations #

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

replyrai-accounts-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '1.1'
  title: Docs Accounts API
servers:
- url: https://app.replyr.ai/api/
security:
- APIKeyHeader: []
tags:
- name: Accounts
paths:
  /accounts/me:
    get:
      tags:
      - Accounts
      description: Get business account details.
      operationId: getAccountInformation
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  page_id:
                    type: integer
                    format: int64
                  name:
                    type: string
                  active:
                    type: boolean
                    description: If false the admins of the bot can't access the dashboard.
                  created:
                    type: integer
                    format: int64
                    description: Timestamp representing the date the bot was created
                  total_users:
                    type: integer
                    format: int64
                    description: The total number of contacts.
  /accounts/admins:
    get:
      tags:
      - Accounts
      description: Get all admins from a business account.
      operationId: getAccountAdmins
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Admin'
  /accounts/teams:
    get:
      tags:
      - Accounts
      description: Get all teams from a bot account.
      operationId: getAccountTeams
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Team'
  /accounts/tags:
    get:
      tags:
      - Accounts
      description: Get all tags from a business account.
      operationId: getAccountTags
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Tag'
    post:
      tags:
      - Accounts
      description: Create a new tag
      operationId: createTag
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    format: int64
                    description: The the new tag ID.
                example:
                  id: 1995
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                name:
                  type: string
              required:
              - name
  /accounts/tags/{tag_id}:
    get:
      tags:
      - Accounts
      description: Get tag by id
      operationId: getTagById
      parameters:
      - name: tag_id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tag'
    delete:
      tags:
      - Accounts
      description: Delete a tag
      operationId: deleteTag
      parameters:
      - name: tag_id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                example:
                  success: true
  /accounts/tags/name/{tag_name}:
    get:
      tags:
      - Accounts
      description: Get a tag by name
      operationId: getTagByName
      parameters:
      - name: tag_name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Tag'
  /accounts/flows:
    get:
      tags:
      - Accounts
      description: Get all flows from a business account.
      operationId: getAccountFlows
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                      format: int64
                    name:
                      type: string
  /accounts/custom_fields:
    get:
      tags:
      - Accounts
      description: Get all custom fields from a business account.
      operationId: getAccountCustomFields
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                      format: int64
                    name:
                      type: string
                    type:
                      type: integer
                      description: 0 - Text, 1 - Number, 2- Date (Unix timestamp), 3 - Date & Time (Unix timestamp), 4 - Boolean(0 or 1)
                    description:
                      type: string
    post:
      tags:
      - Accounts
      description: Create a custom field
      operationId: createCustomField
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    format: int64
                    description: The ID of the new custom field
                  name:
                    type: string
                example:
                  id: 1995
                  name: lead_score
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  required: true
                  type: string
                type:
                  type: integer
                  required: true
                  enum:
                  - 0
                  - 1
                  - 2
                  - 3
                  - 4
                  description: 0 - text | 1 - number | 2 - date | 3 - datetime | 4 - true/false
                isBotField:
                  type: boolean
                  default: false
                  required: false
                value:
                  type: string
                  required: false
                  description: The value of the bot field. It is ignored for the contact custom field.
                description:
                  type: string
                  required: false
              example:
                name: lead_score
                type: 1
        required: true
  /accounts/custom_fields/{custom_field_id}:
    get:
      tags:
      - Accounts
      description: Get custom field by id
      operationId: getCustomFieldById
      parameters:
      - name: custom_field_id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    format: int64
                  name:
                    type: string
                  type:
                    type: integer
                    description: 0 - Text, 1 - Number, 2- Date (Unix timestamp), 3 - Date & Time (Unix timestamp), 4 - Boolean(0 or 1)
                  description:
                    type: string
  /accounts/custom_fields/name/{custom_field_name}:
    get:
      tags:
      - Accounts
      description: Get custom field by name
      operationId: getCustomFieldByName
      parameters:
      - name: custom_field_name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                    format: int64
                  name:
                    type: string
                  type:
                    type: integer
                    description: 0 - Text, 1 - Number, 2- Date (Unix timestamp), 3 - Date & Time (Unix timestamp), 4 - Boolean(0 or 1)
                  description:
                    type: string
  /accounts/bot_fields/{bot_field_id}:
    get:
      tags:
      - Accounts
      description: Get bot field value by id
      operationId: getBFieldValue
      parameters:
      - name: bot_field_id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: integer
                  type:
                    type: integer
                  name:
                    type: string
                  value:
                    type: string
                example:
                  id: 2334
                  name: age
                  type: 1
                  value: 25
    post:
      tags:
      - Accounts
      description: Set a bot field value
      operationId: setBField
      parameters:
      - name: bot_field_id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                example:
                  success: true
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              type: object
              properties:
                value:
                  type: string
              required:
              - value
    delete:
      tags:
      - Accounts
      description: Unset the value of a bot field
      operationId: removeBField
      parameters:
      - name: bot_field_id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                example:
                  success: true
  /accounts/integrations:
    get:
      tags:
      - Accounts
      description: Get all integrations from a business account.
      operationId: getAccountIntegrations
      responses:
        '200':
          description: List of available integrations and their status
          example:
            openai:
              active: true
            gemini:
              active: false
            claude:
              active: true
            xai:
              active: false
            deepseek:
              active: true
            google_sheets:
              active: false
            email:
              active: true
          content:
            application/json:
              schema:
                type: object
                properties:
                  openai:
                    type: object
                    properties:
                      active:
                        type: boolean
                  gemini:
                    type: object
                    properties:
                      active:
                        type: boolean
                  claude:
                    type: object
                    properties:
                      active:
                        type: boolean
                  xai:
                    type: object
                    properties:
                      active:
                        type: boolean
                  deepseek:
                    type: object
                    properties:
                      active:
                        type: boolean
                  google_sheets:
                    type: object
                    properties:
                      active:
                        type: boolean
                  email:
                    type: object
                    properties:
                      active:
                        type: boolean
  /accounts/templates/{template_id}/generateSingleUseLink:
    post:
      tags:
      - Accounts
      description: Generate single-use template link
      operationId: generateTemplateLink
      parameters:
      - name: template_id
        in: path
        required: true
        description: You can get template ID from the template link
        schema:
          type: integer
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  link:
                    type: string
                example:
                  link: https://...
components:
  schemas:
    Team:
      type: object
      properties:
        id:
          type: number
          format: int64
        name:
          type: string
      xml:
        name: Team
    Admin:
      type: object
      properties:
        id:
          type: integer
          format: int64
        email:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        full_name:
          type: string
        profile_pic:
          type: string
        available:
          type: boolean
          description: Whether the admin has the availability status set on/off.
      xml:
        name: Tag
    Tag:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
      xml:
        name: Tag
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-ACCESS-TOKEN