v8

OpenAPI 3.1.02026-08-033623795.0 MB
Bounty Submissions

List Bounty Submissions

Lists bounty submissions visible to the credential — for a user token, the submissions they authored plus those on bounties they posted; for an account API key, the submissions on the account's bounties.

get/bounty_submissions

Query parameters

account_idstring

Scope the list to submissions on this account's bounties (biz_ tag). Requires read access to the account.

bounty_idstring

Only submissions on this bounty (bnty_ tag).

status'in_progress' | 'submitted' | 'approved' | 'denied'

Filter by lifecycle state.

created_afterstring

Only submissions created after this ISO 8601 timestamp.

created_beforestring

Only submissions created before this ISO 8601 timestamp.

order'created_at'

Sort field.

direction'asc' | 'desc'

Sort direction.

firstinteger

Number of submissions to return from the start of the window.

afterstring

Cursor to paginate forwards from.

lastinteger

Number of submissions to return from the end of the window.

beforestring

Cursor to paginate backwards from.

Response

bounty submissions listed

Example response

{
  "data": [
    {
      "capture_clips": [
        {
          "status": "recording"
        }
      ],
      "deliverable_type": "content_url",
      "files": [
        {
          "attachment_type": "image"
        }
      ],
      "status": "in_progress"
    }
  ]
}