ObservePoint Labels API

Endpoints for managing labels including creation, assignment, and retrieval for organizing audits, journeys, and other resources

Operations 4

GET /labels Get list of all labels #
POST /labels Create new label #
PUT /labels/{labelId} Update existing label name #
DELETE /labels/{labelId} Delete label with given id #

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/observepoint-labels-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

observepoint-labels-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Endpoints for managing labels including creation, assignment, and retrieval for organizing audits, journeys, and other resources
  title: V2 Labels API
  version: null
servers:
- url: https://api.observepoint.com/v2
tags:
- description: Endpoints for managing labels including creation, assignment, and retrieval for organizing audits, journeys, and other resources
  name: Labels
paths:
  /labels:
    get:
      description: GET /v2/labels
      operationId: getLabels
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/LabelWithSignedItems'
                type: array
        '401':
          description: Authentication credentials are missing or invalid
      security:
      - API_Key: []
      summary: Get list of all labels
      tags:
      - Labels
    post:
      description: POST /v2/labels
      operationId: createNewLabel
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NewLabel'
        description: New label info
        required: true
      responses:
        '201':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LabelWithSignedItems'
        '403':
          description: Duplicate name
        '422':
          description: Empty name
      security:
      - API_Key: []
      summary: Create new label
      tags:
      - Labels
  /labels/{labelId}:
    put:
      description: PUT /v2/labels/{labelId}
      operationId: updateLabel
      parameters:
      - name: labelId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NewLabel'
        description: Updated label info
        required: true
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LabelWithSignedItems'
        '403':
          description: Duplicate name
        '404':
          description: Label with such id doesn't exist in your account
        '422':
          description: Empty name
      security:
      - API_Key: []
      summary: Update existing label name
      tags:
      - Labels
    delete:
      description: DELETE /v2/labels/{labelId}
      operationId: deleteALabel
      parameters:
      - name: labelId
        in: path
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '204':
          description: Label deleted
        '404':
          description: There is no label with id labelid
      security:
      - API_Key: []
      summary: Delete label with given id
      tags:
      - Labels
components:
  schemas:
    LabelWithSignedItems:
      type: object
      required:
      - alerts
      - audits
      - consentCategories
      - emailInboxes
      - id
      - mobileJourney
      - name
      - rules
      - savedReports
      - webJourney
      properties:
        alerts:
          items:
            type: number
          type: array
        audits:
          items:
            type: number
          type: array
        consentCategories:
          items:
            type: number
          type: array
        emailInboxes:
          items:
            type: number
          type: array
        id:
          format: int32
          type: integer
        mobileJourney:
          items:
            type: number
          type: array
        name:
          type: string
        rules:
          items:
            type: number
          type: array
        savedReports:
          items:
            type: number
          type: array
        webJourney:
          items:
            type: number
          type: array
      description: Label with all items to which it was assigned
    NewLabel:
      type: object
      required:
      - name
      properties:
        name:
          type: string
      description: Label creation information
  securitySchemes:
    API_Key:
      description: 'Use the `Authorization` header in your requests with ObservePoint API key as header value.


        Example: `Authorization: abc123...def456`'
      in: header
      name: Authorization
      type: apiKey