Delete custom table record for contact
documentedDelete a contact's record from a custom table.
DELETE /Services.svc/Contacts/CustomTables/{tableName}/Contacts/{emailOrId}Contactsno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://integration.delivra.com/DelivraRESTServices/Services.svc/Contacts/CustomTables/{{$tableName}}/Contacts/{{$emailOrId}}" \
-X DELETE \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "username: {{DELIVRA_USERNAME}}" \
-H "password: {{DELIVRA_PASSWORD}}" \
-H "listname: {{DELIVRA_LISTNAME}}" \
-d '{"tableName": "{{$tableName}}", "emailOrId": "{{$emailOrId}}", "query": "{{$query}}"}'