Update a single contact’s phone number (and optionally display name) within a specific contact list/tag.
Endpoint: POST /partners/broadcast/editSingleContact
This endpoint typically requires an access token.
Use the existing variable:
Add it in your request auth/header as used by your API (commonly as a Bearer token):
If your backend expects the token in a different header/cookie, keep using the same convention used across this collection.
Send a JSON payload with the following fields:
*If your API enforces name, treat as required.
old_number doesn’t match an existing contact within the given tag, the API may return an error or a “not found” style response.Actual response shape can vary by deployment/version. Use the saved examples on this request as the source of truth.
Common patterns include a success flag/message and/or updated contact info.
Returned when required fields are missing/invalid.
Returned when token is missing/invalid/expired.
Returned when the contact or tag cannot be found, or old_number does not match any contact in the list.
Returned when the new number already exists in the same tag/list (depending on backend rules).