Terms
For authentication instructions, see API overview.
Endpoints
get
List all terms
Returns a list of terms. The terms are returned in sorted order, with the most recent appearing first.
Query parameters
limitintegerThe number of records to return
pageintegerThe page number
orderstringThe order of the records
sortBystringThe sort of the records
fieldsstringThe filter of the records
pstringpolicyFilters
qstringsearch query
Request
cURL
export ICLOUDREADY_API_KEY=[your api key]curl \ -H "Authorization: Bearer $ICLOUDREADY_API_KEY" \ https://api.icloud-ready.com/api/v2/termsResponse
No response schemapost
Create terms
Create terms. You need to pass through any required fields, and you can optionally pass through other fields.
Request body
termTypestringtermOrderstringtermNamestringtermDescstringtermTextstringtermFlaganytermDefaultValintegerappliedfromstringappliedTostringstatusstringincludestring
Request
cURL
export ICLOUDREADY_API_KEY=[your api key]curl -X POST -H 'Content-Type: application/json' \ -H "Authorization: Bearer $ICLOUDREADY_API_KEY" \ https://api.icloud-ready.com/api/v2/terms \ -d 'termType="string"' \ -d 'termOrder="string"' \ -d 'termName="string"' \ -d 'termDesc="string"' \ -d 'termText="string"' \ -d 'termFlag=""' \ -d 'termDefaultVal="integer"' \ -d 'appliedfrom="string"' \ -d 'appliedTo="string"' \ -d 'status="string"' \ -d 'include="string"'Response
No response schemaget
Retrieve terms
Returns a single term, which you can request by passing through an id in the url.
Path parameters
idstringID of the terms
Request
cURL
export ICLOUDREADY_API_KEY=[your api key]curl \ -H "Authorization: Bearer $ICLOUDREADY_API_KEY" \ https://api.icloud-ready.com/api/v2/terms/:idResponse
No response schemaput
Update terms
Path parameters
idstringID of the terms
Request body
termTypestringtermOrderstringtermNamestringtermDescstringtermTextstringtermFlaganytermDefaultValintegerappliedfromstringappliedTostringstatusstringincludestring
Request
cURL
export ICLOUDREADY_API_KEY=[your api key]curl -X PUT \ -H "Authorization: Bearer $ICLOUDREADY_API_KEY" \ https://api.icloud-ready.com/api/v2/terms/:id \ -d 'termType="string"' \ -d 'termOrder="string"' \ -d 'termName="string"' \ -d 'termDesc="string"' \ -d 'termText="string"' \ -d 'termFlag=""' \ -d 'termDefaultVal="integer"' \ -d 'appliedfrom="string"' \ -d 'appliedTo="string"' \ -d 'status="string"' \ -d 'include="string"'Response
No response schemapatch
Update terms soft
Update terms soft by setting the values of the parameters passed. Any parameters not set will be unchanged.
Path parameters
idstringID of the terms
Request
cURL
export ICLOUDREADY_API_KEY=[your api key]curl \ -H "Authorization: Bearer $ICLOUDREADY_API_KEY" \ https://api.icloud-ready.com/api/v2/terms/:idResponse
No response schemadelete
Delete terms
Path parameters
idstringID of the terms
Request
cURL
export ICLOUDREADY_API_KEY=[your api key]curl -X DELETE \ -H "Authorization: Bearer $ICLOUDREADY_API_KEY" \ https://api.icloud-ready.com/api/v2/terms/:idResponse
No response schemadelete
Delete deleted
Path parameters
idstringID of the terms
Request
cURL
export ICLOUDREADY_API_KEY=[your api key]curl -X DELETE \ -H "Authorization: Bearer $ICLOUDREADY_API_KEY" \ https://api.icloud-ready.com/api/v2/terms/deleted/:id