View as Markdown
### Purpose Uploads/adds a single contact to an existing contact list (tag/contact list ID) for partner broadcast. ### Endpoint `POST https://business.me-mate.net/partners/broadcast/uploadsinglecontact` ### Authentication This endpoint requires an auth token. - Use the existing token variable: `{{auth token}}` - Send it in the request exactly as your API expects (for example, as an `Authorization` header or another required header in your workspace/collection). > Note: This request currently references `{{auth token}}` as its authentication token variable. Ensure it is set in your active environment or globals before sending. ### Required Headers | Header | Value | Required | Notes | | --- | --- | --- | --- | | `X-Requested-With` | `XMLHttpRequest` | Yes | Required by the endpoint. | _(Plus any auth header required by your backend, using_ `_{{auth token}}_`_.)_ ### Request Body (JSON) Content-Type: `application/json` #### Schema | Field | Type | Required | Meaning | | --- | --- | --- | --- | | `tag` | string (or numeric string) | Yes | Contact list ID (tag/list identifier) to add the contact into. | | `number` | string | Yes | Contact phone number (typically E.164 digits without spaces). | | `name` | string | Yes | Display name for the contact. | #### Example Request Body ``` json { "tag": "112998", "number": "79747583534", "name": "aman waba number" } ``` ### Example Success Response (200) ``` json { "status": true, "msg": "Contact added!" } ``` ### Common Error Responses (placeholders) > Exact error payloads may vary. - **400 Bad Request** — Missing/invalid fields (e.g., `tag`, `number`, `name`). - **401 Unauthorized** — Missing/invalid/expired auth token (`{{auth token}}`). - **403 Forbidden** — Auth token valid but not permitted to add contacts to the specified list. - **404 Not Found** — List/tag not found. - **409 Conflict** — Contact already exists in the list (if applicable). - **422 Unprocessable Entity** — Validation failure (number format, etc.). - **429 Too Many Requests** — Rate-limited. - **500 Internal Server Error** — Server-side error. - **503 Service Unavailable** — Temporary outage/maintenance.

Headers

X-Requested-WithstringOptional

Request

This endpoint expects a string.

Response

OK
msgstring
statusboolean