cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#FRONT_CREATE_CONTACT' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "FRONT_CREATE_CONTACT", "parameters": { "handles": {}, "contactName": "<string>", "description": "<string>", "avatar": "<string>", "isSpammer": true, "links": "<string>", "groupNames": "<string>", "customFieldsContact": {} } } '
Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
Handles : Handles (https://dev.frontapp.com/reference/post_contacts) attributes for this contact (example: "[ { "handle": "[email protected]", "source": "email", }, { "handle": "[email protected]", "source": "email", }, ]")
Contact Name : Name of the Contact (example: "Enter Contact Name")
Contact Description : Specify a description of the Contact (example: "Enter Description")
Avatar : Avatar Url (example: "https://picsum.photos/200/300")
Is Spammer : Whether or not the contact is marked as a spammer
Links : Add links for the contact (example: "Enter Links")
Group Names : Add group names for the contact (example: "Enter Group Names")
Custom Fields : Custom field (https://dev.frontapp.com/reference/post_contacts) attributes for this contact
Success
Was this page helpful?