Edit customer

Note that some of the features that can be controlled via the API are related to the permissions assigned to your access token (seller, customer etc. with subcategories). Please contact Skyresponse support if any Forbidden responses occur.

Edit customer in Skyresponse Admin

To edit a specific customer, you must know his id, where id is the customer identifier you want to update.

PUT /api/customers/{id} HTTP/1.1
Host: https://admin.skyresponse.com
Authorization: Bearer tkgY9yiM...plBp

{
  "Name": "Demo User Changed"
  "CustomerNumber": "+38011111111"
}

Not all fields are described here. You can put all that you want to change.

If you don’t know how to get the Authorization header, please proceed to the Authentication tutorial.

If your request have correct values, you will recieve the full model with updated fields:

{
  "Name": "Demo Customer Changed",
  "CustomerNumber": "+3801111111"
}

And a lot more useful data!


cURL example:

Example of edit customer:

curl -X PUT -H "Content-Type: application/json" 'https://admin.skyresponse.com/api/customers/1' -H "Authorization: Bearer PASTE_YOUR_TOKEN_HERE" -d '{"Name": "Demo User Changed", "CustomerNumber": "+3801111111"}'

Full documentation:
Topics:

Edit customer

Note that some of the features that can be controlled via the API are related to the permissions assigned to your access token (seller, customer etc. with subcategories). Please contact Skyresponse support if any Forbidden responses occur.

Edit customer in Skyresponse Admin

To edit a specific customer, you must know his id, where id is the customer identifier you want to update.

PUT /api/customers/{id} HTTP/1.1
Host: https://admin.skyresponse.com
Authorization: Bearer tkgY9yiM...plBp

{
  "Name": "Demo User Changed"
  "CustomerNumber": "+38011111111"
}

Not all fields are described here. You can put all that you want to change.

If you don’t know how to get the Authorization header, please proceed to the Authentication tutorial.

If your request have correct values, you will recieve the full model with updated fields:

{
  "Name": "Demo Customer Changed",
  "CustomerNumber": "+3801111111"
}

And a lot more useful data!


cURL example:

Example of edit customer:

curl -X PUT -H "Content-Type: application/json" 'https://admin.skyresponse.com/api/customers/1' -H "Authorization: Bearer PASTE_YOUR_TOKEN_HERE" -d '{"Name": "Demo User Changed", "CustomerNumber": "+3801111111"}'

Full documentation: