Leads

For instructions on how to authenticate to use this endpoint, see API overview.

Retrieve undefined

Request

GET /leads
export ICLOUDREADY_API_KEY=[your api key]
curl \
-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \
https://app.icloud-ready.com/leads

Response

No response

Create undefined

Request Parameters

  • leadInformation
    object
  • customer
    string
  • unitId
    string
  • leadOwner
    string
  • taskId
    string
  • promoId
    string
  • leadType
    string
  • leadSource
    string
  • status
    string
  • leadRating
    integer
  • history
    array
  • activityLog
    array
  • leadDescription
    string
  • notes
    array
  • documents
    array
  • idengagerRequestId
    string

Request

POST /leads
export ICLOUDREADY_API_KEY=[your api key]
curl
-H 'Content-Type: application/json'\
-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \
https://app.icloud-ready.com/leads\
-d leadInformation="object"

Response

No response

Retrieve undefined

Path Parameters

  • id
    string

    ID of the lead

Request

GET /leads/:id
export ICLOUDREADY_API_KEY=[your api key]
curl \
-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \
https://app.icloud-ready.com/leads/:id

Response

No response

Update undefined

Path Parameters

  • id
    string

    ID of the lead

Request

PUT /leads/:id
export ICLOUDREADY_API_KEY=[your api key]
curl -X PUT \
-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \
https://app.icloud-ready.com/leads/:id

Response

No response

Update undefined

Path Parameters

  • id
    string

    ID of the lead

Request

PATCH /leads/:id
export ICLOUDREADY_API_KEY=[your api key]
curl \
-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \
https://app.icloud-ready.com/leads/:id

Response

No response

Delete undefined

Path Parameters

  • id
    string

    ID of the lead

Request

DELETE /leads/:id
export ICLOUDREADY_API_KEY=[your api key]
curl -X DELETE \
-H "Authorization: Bearer $ICLOUDREADY_API_KEY" \
https://app.icloud-ready.com/leads/:id

Response

No response

Questions?

Was this page useful?