Get a creator on a campaign
Reads one creator on one of this brand's campaigns, anyone scouty_list_applicants lists with a memberId: their handles, their Scout standing, where their application stands, whether and when they signed the contract, and how far through activation they are.
GET
https://api.tryscouty.com/v1/campaigns/{campaignId}/creators/{memberId} - Scope
creators:read - Read
- MCP tool
scouty_get_creator
Authorization
Send a Scouty token as a bearer token in the Authorization header. The token needs the creators:read scope, or the call answers 403 insufficient_scope. Tokens and scopes
Authorization: Bearer $SCOUTY_TOKENPath parameters
| Name | Type | Required | Description |
|---|---|---|---|
campaignId | integer | Required | The campaign this creator is on. |
memberId | integer | Required | The creator's member id. |
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 |
|---|---|---|
| 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 | insufficient_scope wrong_principal | The token does not carry the scope this capability needs. |
| 404 Not Found | not_found | No such route, or no such campaign for this client. |
| 429 Too Many Requests | rate_limited | Too many requests this minute. Retry-After says how long is left. |