Documentation Index
Fetch the complete documentation index at: https://mintlify.com/rafaverde/macondoLinkManager/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Clients are global entities in the agency system. They represent organizations or brands for which you manage links and campaigns. All authenticated users can access client endpoints.All endpoints require authentication via Bearer token in the Authorization header.
List Clients
Response
Unique identifier (UUID) of the client.
Name of the client.
Number of campaigns associated with this client.
Number of links associated with this client.
ISO 8601 timestamp of creation.
Example Request
Example Response
Create Client
Request Body
Name of the client. Must be at least 3 characters long and unique.
Response
Unique identifier (UUID) of the created client.
Name of the client.
ISO 8601 timestamp of creation.
ISO 8601 timestamp of last update.
Example Request
Example Response
Error Responses
Client with this name already exists.
Get Client
Path Parameters
UUID of the client to retrieve.
Response
Unique identifier (UUID) of the client.
Name of the client.
ISO 8601 timestamp of creation.
ISO 8601 timestamp of last update.
Example Request
Example Response
Error Responses
Client not found.
Update Client
Path Parameters
UUID of the client to update.
Request Body
Updated name for the client. Must be at least 3 characters long and unique.
Response
Returns the updated client object with the same structure as the Get Client response.Example Request
Example Response
Error Responses
Client not found.
Another client with this name already exists.
Delete Client
Path Parameters
UUID of the client to delete.
Response
Returns 204 No Content on success.Example Request
Error Responses
Client not found.
