Read service admission configuration
import requests
url = "https://platform.ankra.app/api/v1/org/service-admission/consumers/{consumer_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://platform.ankra.app/api/v1/org/service-admission/consumers/{consumer_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://platform.ankra.app/api/v1/org/service-admission/consumers/{consumer_id} \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"application_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"organisation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"cluster_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"namespace": "<string>",
"region": "<string>",
"data_boundary": "<string>",
"policy_revision": 2,
"binding_revision": 2,
"binding_kind": "planned",
"installation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"local_only": true
}Services
Read service admission configuration
Requires the applications rollout flag and live membership intersected with token scopes. Cluster policy reads require clusters.read and writes clusters.write. Consumer reads require applications.read and clusters.read; binding requires applications.deploy, clusters.operate and clusters.read. Locations are organisation declarations, not independently verified. No service deployment is executed. Updates require the current revision; zero creates only. Browser mutations require CSRF.
GET
/
api
/
v1
/
org
/
service-admission
/
consumers
/
{consumer_id}
Read service admission configuration
import requests
url = "https://platform.ankra.app/api/v1/org/service-admission/consumers/{consumer_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://platform.ankra.app/api/v1/org/service-admission/consumers/{consumer_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl --request GET \
--url https://platform.ankra.app/api/v1/org/service-admission/consumers/{consumer_id} \
--header 'Authorization: Bearer <token>'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"application_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"organisation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"cluster_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"namespace": "<string>",
"region": "<string>",
"data_boundary": "<string>",
"policy_revision": 2,
"binding_revision": 2,
"binding_kind": "planned",
"installation_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"local_only": true
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Success
Required string length:
1 - 63Pattern:
^[a-z][a-z0-9]*(-[a-z0-9]+)*$Required string length:
1 - 63Pattern:
^[a-z][a-z0-9]*(-[a-z0-9]+)*$Required range:
x >= 1Required range:
x >= 1Available options:
planned, installation Nil UUID for a planned binding. An installation identity does not imply readiness.