Create/Update Tags

The endpoint performs a full replacement of the current collection of tags.


Endpoint

POST /api/v1/jackpot-tags

Headers

X-Third-Party-Authorization: Bearer <jwt-token>

Request Body

Field Type Required Description
tags string[] Yes List of tags.

Status Codes


Example Request

[POST] <https://api.splash.tech/api/v1/jackpot-tags>

{
	"tags": ["TAG_1", "TAG_2"]
}

Response

Response will be empty with status code 200 if tags were created successfully

Example Implementation