curl --request POST \
--url https://prod-api.raisedonors.com/api/Raise/lead \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"isTestMode": true,
"emailLists": [
"<string>"
],
"customFields": [
{
"customFieldId": 123,
"value": "<string>"
}
],
"customCollections": [
{
"customCollectionId": 123,
"customFieldResponses": [
{
"customFieldId": 123,
"value": "<string>"
}
]
}
]
}
'