1. Verification groups
Flireo AI
  • Introducing Flireo AI
    • Introduction
    • Core concepts
    • Getting started
    • API overview
    • Errors
  • Assistants
    • Phone numbers linking
  • Phone numbers
    • Overview
    • Available numbers
    • List phone numbers
    • Order a phone number
    • Phone number orders
  • Verification groups
    • Overview
    • Available numbers
    • Create verification group
    • List verification groups
    • Order number via verification group
  • Server events
    • Assistant types
    • Assistant-request Event
    • Tool-calls Event
    • End-of-call-report Event
    • Status-update Event
    • Control live calls
API ReferenceDocumentatie
API ReferenceDocumentatie
Linkedin
  1. Verification groups

List verification groups

Retrieve all verification groups associated with your account.

Endpoints#

EndpointMethodDescription
/v1/verification-groupsGETList all groups
/v1/verification-groups/{id}GETGet specific group

List All Groups#

Endpoint#

GET /v1/verification-groups

Query Parameters#

ParameterTypeRequiredDefaultDescription
statusstringNo-Filter: pending, approved, rejected, deleted
phone_number_typestringNo-Filter: local, mobile, national
limitintegerNo20Maximum results (1-100)
offsetintegerNo0Pagination offset

Example Request#

Example Response#

{
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "name": "Amsterdam Office",
      "phone_number_type": "local",
      "status": "approved",
      "locality": "Amsterdam",
      "business_name": "Example BV",
      "created_at": "2025-01-10T08:00:00Z"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}

Get Group Details#

Endpoint#

GET /v1/verification-groups/{id}

Path Parameters#

ParameterTypeRequiredDescription
iduuidYesVerification group ID

Example Request#

Example Response#

{
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Amsterdam Office",
    "phone_number_type": "local",
    "status": "approved",
    "locality": "Amsterdam",
    "business_name": "Example BV",
    "created_at": "2025-01-10T08:00:00Z",
    "documents": [
      {
        "id": "doc_123",
        "type": "proof_of_address",
        "status": "approved"
      }
    ],
    "phone_numbers": [
      {
        "id": "660e8400-e29b-41d4-a716-446655440000",
        "phone_number": "+31201234567",
        "status": "active"
      }
    ]
  }
}

Response JSON Schema (List)#

{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": { "type": "string", "format": "uuid" },
          "name": { "type": "string", "nullable": true },
          "phone_number_type": { "type": "string" },
          "status": { "type": "string", "enum": ["pending", "approved", "rejected", "deleted"] },
          "locality": { "type": "string", "nullable": true },
          "business_name": { "type": "string", "nullable": true },
          "created_at": { "type": "string", "format": "date-time" }
        }
      }
    },
    "meta": {
      "type": "object",
      "properties": {
        "total": { "type": "integer" },
        "limit": { "type": "integer" },
        "offset": { "type": "integer" }
      }
    }
  }
}

Next:
Once your group is approved, search available numbers for that region.
Modified at 2025-12-08 10:37:25
Previous
Create verification group
Next
Order number via verification group
Built with