APIs to create and manage events.
curl -i -X GET \
'https://apis.spotnana.com/v2/events/payment-sources?userId=f49d00fe-1eda-4304-ba79-a980f565281d' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
OK
List of payment sources
Unique identifier identifying this payment source
Type of Payment Source
Payment source descriptor.
Status of the Payment Source.
{ "paymentSources": [ { … } ] }
curl -i -X POST \
'https://apis.spotnana.com/v2/events/6926658168/cancel?type=GENERIC' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'
Indicates from where in the list of travelers the server should start.
Maximum number of results to be fetched for the query.
curl -i -X POST \
https://apis.spotnana.com/v2/events/6926658168/travelers-list \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"offset": 2,
"limit": 2,
"type": "GENERIC",
"filters": [
{
"type": "string",
"searchTerm": "name"
}
]
}'
{ "travelerEventInfos": [ { … } ], "userGroupInfo": { "userGroupCriteria": [ … ], "userIds": [ … ] }, "paginationParams": { "totalNumResults": 0 } }