Skip to main content
GET
/
v1
/
phone-numbers
/
{id}
Retrieve a phone number
curl --request GET \
  --url https://api.revdesk.com/v1/phone-numbers/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "phone_number": "<string>",
    "name": "<string>",
    "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "provider": "<string>",
    "is_active": true,
    "subscription_status": "<string>",
    "iso_country": "<string>",
    "reputation_enrolled_at": "<string>",
    "created_at": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

Success

data
object
required