contacts: write
message: "Contact updated successfully"
Authorization: Bearer ********************
{ "firstname": "string", "lastname": "string", "phone": "string", "type": "lead", "source_id": 0, "status_id": 0, "email": "user@example.com", "company": "string", "description": "string", "city": "string", "state": "string", "zip": "string", "address": "string", "country_id": 0, "assigned_id": 0, "groups": [ 0 ] }
curl --location --request PATCH 'https://getrasl.io/api/v2/contacts/' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data-raw '{ "firstname": "string", "lastname": "string", "phone": "string", "type": "lead", "source_id": 0, "status_id": 0, "email": "user@example.com", "company": "string", "description": "string", "city": "string", "state": "string", "zip": "string", "address": "string", "country_id": 0, "assigned_id": 0, "groups": [ 0 ] }'
{ "success": true, "data": {}, "meta": { "request_id": "string", "timestamp": "string" } }