Skip to main content
POST
/
users
/
check-contacts
Check User Contacts
curl --request POST \
  --url https://api-dev.monyfix.tech/users/check-contacts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "contacts": [
    "<string>"
  ]
}
'
{
"users": [
{
"id": "<string>",
"phone": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"username": "<string>",
"avatar_url": "<string>"
}
]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
contacts
string[]
required

Response

Successful Response

users
UserCheckContactsFoundResponse · object[]
required