Incentives
Get an incentive by id
Gets an incentive by id
GET
/
incentives
/
{incentiveId}
Copy
curl --request GET \
--url https://api.rallyuxr.com/api/public/v1/incentives/{incentiveId} \
--header 'Authorization: Bearer <token>'
Copy
{
"incentiveId": "<string>",
"type": "MONEY_OR_GIFT_CARD",
"amountCents": 123,
"sentAt": "2023-11-07T05:31:56Z",
"recipientEmail": "jsmith@example.com",
"personId": "<string>",
"participantId": "<string>",
"studyId": "<string>",
"status": "UNCLAIMED",
"budgetId": "<string>",
"customIncentiveId": "<string>",
"customIncentiveValue": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Response
200
application/json
Incentive response
An incentives's metadata
Copy
curl --request GET \
--url https://api.rallyuxr.com/api/public/v1/incentives/{incentiveId} \
--header 'Authorization: Bearer <token>'
Copy
{
"incentiveId": "<string>",
"type": "MONEY_OR_GIFT_CARD",
"amountCents": 123,
"sentAt": "2023-11-07T05:31:56Z",
"recipientEmail": "jsmith@example.com",
"personId": "<string>",
"participantId": "<string>",
"studyId": "<string>",
"status": "UNCLAIMED",
"budgetId": "<string>",
"customIncentiveId": "<string>",
"customIncentiveValue": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.