Swift3 / Anypoint Platform APIs / Get all contracts for consumer app
Back to Collection Items
func chilkatTest() {
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = CkoHttp()!
var success: Bool
// Adds the "Authorization: Bearer {{token}}" header.
http.authToken = "{{token}}"
http.setRequestHeader("Content-Type", value: "application/json")
let sbResponseBody = CkoStringBuilder()!
success = http.quickGetSb("https://domain.com/apiplatform/repository/v2/organizations/{{organization_id}}/applications/895843/contracts", sbContent: sbResponseBody)
if success == false {
print("\(http.lastErrorText!)")
return
}
print("Response status code = \(http.lastStatus.intValue)")
print("\(sbResponseBody.getAsString()!)")
}
Curl Command
curl -X GET
-H "Authorization: Bearer {{token}}"
-H "Content-Type: application/json"
https://domain.com/apiplatform/repository/v2/organizations/{{organization_id}}/applications/895843/contracts
Postman Collection Item JSON
{
"name": "Get all contracts for consumer app",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{url}}/apiplatform/repository/v2/organizations/{{organization_id}}/applications/895843/contracts",
"host": [
"{{url}}"
],
"path": [
"apiplatform",
"repository",
"v2",
"organizations",
"{{organization_id}}",
"applications",
"895843",
"contracts"
]
}
},
"response": [
]
}