I get 401 Unauthorized when try to create a customer. I have updated `access_token` but any way have error 401 Unauthorized.
My request is:
$client = new \GuzzleHttp\Client(); $response = $client->request('POST', 'https://sandbox.dev.clover.com/v3/merchants/XXXXXXX/customers', [ 'body' => '{"firstName":"1","lastName":"2"}', 'headers' => [ 'Authorization' => 'Bearer xxxxxxxxxxxxxxxx', 'Content-Type' => 'application/json', ], ]);
Are there any changes that I have should done?
Config of my app is: