Unblock a blocked affiliate

POST https://api.tamio.com/v2/affiliates/unblock/{uuid}

Removes a previously blocked affiliate from the block list, allowing them to apply to affiliate programs again.

Path Parameters

uuid string*

UUID of the blocked affiliate to unblock.

Responses

200 Affiliate unblocked successfully.

Affiliate unblocked successfully.

status integer
400 Validation or business logic error. Possible causes:
401 Missing or invalid Bearer token.
/affiliates/unblock/{uuid}
1const response = await fetch("https://api.tamio.com/v2/affiliates/unblock/{uuid}", {
2 method: "POST",
3 headers: {
4 "Authorization": "Bearer YOUR_API_KEY",
5 "Content-Type": "application/json"
6 },
7 body: JSON.stringify({
8 // ... request body
9 })
10});
11const data = await response.json();
Responses
{
  "status": 200
}