Get Recent Macro Activity
Retrieve recent macro events across the system or for a specific macro ID.
Overview
- Method: GET
- Path:
/brand/macros/get-recent-activity - Tags: brand
Parameters
macroId (query)
- Type:
string - Required: No
- Description: macroId query parameter
skip (query)
- Type:
integer - Required: No
- Description: skip query parameter
take (query)
- Type:
integer - Required: No
- Description: take query parameter
eventType (query)
- Type:
object - Required: No
- Description: eventType query parameter
Request Body
No request body required.
Responses
200
Successful response
Content Type: application/json
{
"data": {
"key": {}
},
"eventType": "string",
"createdAt": "2024-01-01T00:00:00.000Z",
"userId": "string",
"macroId": "string"
}400
Bad Request
Content Type: application/json
{
"error": "string",
"details": [
{}
]
}401
Unauthorized
404
Not Found
500
Internal Server Error
Example Usage
curl -X GET \
https://api.pillexa.com/brand/macros/get-recent-activity \
-H "Content-Type: application/json" \