Create Contact List / Tag

View as Markdown
Creates a new **Contact List / Contact Tag** for the Partners Broadcast module. **Method:** `POST` **URL:** `https://business.me-mate.net/partners/broadcast/addnewcontacttag` --- ### Authentication This endpoint requires an authenticated Partners session. - Send the auth token using the global variable: `{{auth token}}` - Add it in the standard auth mechanism used by your collection (for example, an `Authorization` header). > Note: This request already references the `auth token` variable in your workspace. Ensure it is set before sending. --- ### Required Headers | Header | Value | Required | | --- | --- | --- | | `X-Requested-With` | `XMLHttpRequest` | Yes | --- ### Request Body **Content-Type:** `application/json` #### Schema ``` json { "name": "string" } ``` - `name` (string, required): Contact list name to create. #### Example ``` json { "name": "new contact new test" } ``` --- ### Success Response #### `200 OK` Returns a success flag, message, and the created tag/contact-list identifier. ``` json { "status": true, "message": "Contact List Created Successfully", "tagId": 112995 } ``` --- ### Error Responses (generic) Depending on authentication, validation, or server issues, you may see: - `400 Bad Request`: Invalid/missing fields (for example, missing `name`). - `401 Unauthorized` / `403 Forbidden`: Missing or invalid `{{auth token}}` / insufficient permissions. - `500 Internal Server Error`: Unexpected server-side error. --- ### Notes - Use a unique, meaningful `name` to avoid duplicates (behavior may vary by server-side validation). - If you receive `401/403`, verify `{{auth token}}` is set and is valid for the Partners account/session.

Headers

X-Requested-WithstringOptional

Request

This endpoint expects a string.

Response

OK
tagIdinteger
statusboolean
messagestring