View as MarkdownOpen in Claude
### Purpose Create a new **Tag** in the Tag Management system. ### Endpoint `POST https://business.me-mate.net/api/betav3/tagmanage/tag/create` ### Authentication This endpoint expects an API key in the request body: - `api_key`: `{{api_key}}` > Ensure the `api_key` variable is set in your active environment/collection/global variables. ### Headers - `X-Requested-With: XMLHttpRequest` > Keep this header as-is if the backend expects an XMLHttpRequest-style call. ### Request Body (JSON) | Field | Required | Type | Constraints / Notes | | --- | --- | --- | --- | | `api_key` | Yes | string | Use `{{api_key}}`. | | `tag_name` | No | string | Tag name to create. | | `access_type` | No | string | Allowed values: `private` | | `TagDescription` | No | string | Max length **255** characters. | #### Example request body ``` json { "api_key": "{{api_key}}", "tag_name": "New Customer sec", "access_type": "private", "TagDescription": "Short description about the tag" } ``` ### Example Success Response (200) ``` json { "message": "Tag created successfully", "data": { "tag_name": "New Customer sec", "tag_id": 275 } } ``` ### Notes - **`access_type`** **values** - `private`: intended for restricted/private use. - `public`: intended for broadly visible/available tags. - `admin`: intended for administrative-level tags. - If `tag_name`, `access_type`, or `TagDescription` are omitted, backend behavior depends on server defaults/validation rules.

Headers

X-Requested-WithstringOptional

Request

This endpoint expects a string.

Response

OK
dataobject
messagestring