GET
/
v1
/
projects
/
{projectId}
/
screener-responses
/
payouts
Retrieve payout counts
curl --request GET \
  --url https://api-staging.respondent.io/v1/projects/{projectId}/screener-responses/payouts \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-api-secret: <x-api-secret>'
[
  {
    "userId": "<string>",
    "profileId": "<string>",
    "screenerResponseId": "<string>",
    "numberOfPayouts": 123,
    "payouts": [
      {
        "incentive": 123,
        "tip": 123,
        "totalIncentive": 123,
        "createdAt": "<string>"
      }
    ]
  }
]

Headers

x-api-key
string
required
x-api-secret
string
required

Path Parameters

projectId
string
required

Response

200 - application/json

The response is of type object[].