curl --request PATCH \
--url https://api.dev.kathan.tech/phone-numbers/{phone_number_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"label": "<string>"
}
'{
"id": "<string>",
"provider": "<string>",
"phone_number": "<string>",
"status": "<string>",
"label": "<string>",
"created_at": "<string>"
}curl --request PATCH \
--url https://api.dev.kathan.tech/phone-numbers/{phone_number_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"label": "<string>"
}
'{
"id": "<string>",
"provider": "<string>",
"phone_number": "<string>",
"status": "<string>",
"label": "<string>",
"created_at": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Update the label
Was this page helpful?