Update Contact

Endpoint

[PATCH] https://usenotifier.com/api/contacts/174926c5-becf-4c56-a447-fbd9f6d99dcf

Example Request

$response = Http::withToken('YOUR_API_KEY')
               ->patch('https://usenotifier.com/api/contacts', [
                  "firstname" => "Jane",
                  "lastname" => "Smith"
                ]);

Read the Authentication docs to get your API KEY

firstname: optional | nullable

The contacts firstname.

last name: optional | nullable

The contacts last name.

Example Response

Last updated

Was this helpful?