Skip to main content
GET
/
v1
/
contacts
/
{id}
Obter contato
curl --request GET \
  --url https://api.notifique.dev/v1/contacts/{id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "id": "<string>",
    "name": "<string>",
    "phone": "<string>",
    "email": "<string>",
    "url": "<string>",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "tags": [
      {
        "id": "<string>",
        "name": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Authorization: Bearer sk_live_xxxxx

Path Parameters

id
string
required

Response

Contato encontrado.

success
boolean
Example:

true

data
object

Contato do workspace (phone e/ou email; tags).