curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#FRONT_UPDATE_CONTACT' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "FRONT_UPDATE_CONTACT",
"parameters": {
"contactId": "<string>",
"contactName": "<string>",
"description": "<string>",
"avatar": "<string>",
"isSpammer": true,
"links": "<string>",
"groupNames": "<string>",
"customFieldsContact": {}
}
}'
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#FRONT_UPDATE_CONTACT' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "FRONT_UPDATE_CONTACT",
"parameters": {
"contactId": "<string>",
"contactName": "<string>",
"description": "<string>",
"avatar": "<string>",
"isSpammer": true,
"links": "<string>",
"groupNames": "<string>",
"customFieldsContact": {}
}
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Your Paragon Project ID
Success
Was this page helpful?