GET
/
v1
/
enrichment
/
hlr
/
logs
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/enrichment/hlr/logs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "team_name": "<string>",
      "team_id": "<string>",
      "object_id": "<string>",
      "object_type": "call",
      "campaign_id": "<string>",
      "campaign_send_id": "<string>",
      "number": 123,
      "status": "<string>",
      "country_id": 123,
      "network_id": 123,
      "error_message": "<string>",
      "meta": [
        "<any>"
      ],
      "latency": "<string>",
      "cost": "<string>",
      "provider": "<string>",
      "hlr_reason": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer | null
per_page
integer | null
campaign_id
string<uuid> | null
team_id
string<uuid> | null
object_type
enum<string> | null
Available options:
call,
sms
object_id
string<uuid> | null
start_date
string | null
end_date
string | null
search_ids
string<uuid>[]

Response

200
application/json

Array of HlrValidationResource

The response is of type object.