List this token's actions
Lists only the changes made through this connection's own token, newest first: which capability, which campaign, how it ended and when. It is not a history of the campaign or its creators: anything done on the dashboard, by the team, by a creator, or through another connection is not here, so an empty or short list says nothing about how many creators a campaign has. Read it to find out whether a change you were part-way through already went through.
https://api.tryscouty.com/v1/actions - Any client token
- Read
- MCP tool
scouty_list_actions
Authorization
Send a Scouty token as a bearer token in the Authorization header. Every client token can call this, whatever its scopes. Tokens and scopes
Authorization: Bearer $SCOUTY_TOKENQuery parameters
| Name | Type | Required | Description |
|---|---|---|---|
campaignId | integer | Optional | Only actions against this campaign. Every action when omitted. |
limit | integer | Optional | How many actions to return. 25 by default, 100 at most. |
cursor | string | Optional | The cursor from the previous page. |
Pagination
This list comes a page at a time, in actions. Send limit (1 to 100, 25 by default) and pass the answer's nextCursor back as cursor for the next page. nextCursor is null on the last page.
Errors
A refusal answers { "error": { "code", "message" } }. Branch on code; the message is for a person. Every error and its fix
| Status | error.code | Meaning |
|---|---|---|
| 400 Bad Request | invalid_request | The request was not the shape this capability takes, or its body was not JSON. |
| 401 Unauthorized | missing_token invalid_token token_revoked token_expired token_orphaned | No token, or one that is not recognized, revoked or expired. |
| 403 Forbidden | wrong_principal | The token does not carry the scope this capability needs. |
| 429 Too Many Requests | rate_limited | Too many requests this minute. Retry-After says how long is left. |