Skip to content

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.

GET/v1/actions
  • Any client token
  • Read
  • MCP toolscouty_list_actions

Markdown version for your agent

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_TOKEN

Query parameters

NameTypeRequiredDescription
campaignIdintegerOptional

Only actions against this campaign. Every action when omitted.

limitintegerOptional

How many actions to return. 25 by default, 100 at most.

cursorstringOptional

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

Statuserror.codeMeaning
400 Bad Requestinvalid_requestThe request was not the shape this capability takes, or its body was not JSON.
401 Unauthorizedmissing_token invalid_token token_revoked token_expired token_orphanedNo token, or one that is not recognized, revoked or expired.
403 Forbiddenwrong_principalThe token does not carry the scope this capability needs.
429 Too Many Requestsrate_limitedToo many requests this minute. Retry-After says how long is left.