Customers
For instructions on how to authenticate to use this endpoint, see API overview.
Endpoints
GET | /customers |
POST | /customers |
GET | /customers/:id |
PUT | /customers/:id |
PATCH | /customers/:id |
DELETE | /customers/:id |
Retrieve undefined
Request
GET
/customers
export ICLOUDREADY_API_KEY=[your api key]curl \-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \https://app.icloud-ready.com/customers
Response
No responseCreate undefined
Request Parameters
- isCompanyboolean
- capitalinteger
- managerstring
- namestring
- name_arstring
- address_arstring
- street1string
- street2string
- zipCodestring
- citystring
- contactsarray
- siretstring
- rcsstring
- unNumberinteger
- statusstring
- subjectstring
- categorystring
Request
POST
/customers
export ICLOUDREADY_API_KEY=[your api key]curl-H 'Content-Type: application/json'\-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \https://app.icloud-ready.com/customers\-d isCompany="boolean"
Response
No responseRetrieve undefined
Path Parameters
- idstring
ID of the customer
Request
GET
/customers /:id
export ICLOUDREADY_API_KEY=[your api key]curl \-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \https://app.icloud-ready.com/customers/:id
Response
No responseUpdate undefined
Path Parameters
- idstring
ID of the customer
Request
PUT
/customers /:id
export ICLOUDREADY_API_KEY=[your api key]curl -X PUT \-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \https://app.icloud-ready.com/customers/:id
Response
No responseUpdate undefined
Path Parameters
- idstring
ID of the customer
Request
PATCH
/customers /:id
export ICLOUDREADY_API_KEY=[your api key]curl \-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \https://app.icloud-ready.com/customers/:id
Response
No responseDelete undefined
Path Parameters
- idstring
ID of the customer
Request
DELETE
/customers /:id
export ICLOUDREADY_API_KEY=[your api key]curl -X DELETE \-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \https://app.icloud-ready.com/customers/:id