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>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
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>"
}
]
}