VB6 / Anypoint Platform APIs / Get all permissions for an environment
Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New ChilkatHttp
Dim success As Long
Dim queryParams As New ChilkatJsonObject
success = queryParams.UpdateString("environmentId","{{environment_id}}")
' Adds the "Authorization: Bearer {{token}}" header.
http.AuthToken = "{{token}}"
Dim resp As ChilkatHttpResponse
Set resp = http.QuickRequestParams("GET","https://domain.com/apimanager/xapi/v1/organizations/{{organization_id}}/permissions",queryParams)
If (http.LastMethodSuccess = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Debug.Print resp.StatusCode
Debug.Print resp.BodyStr
Curl Command
curl -G -d "environmentId=%7B%7Benvironment_id%7D%7D"
-H "Authorization: Bearer {{token}}"
https://domain.com/apimanager/xapi/v1/organizations/{{organization_id}}/permissions
Postman Collection Item JSON
{
"name": "Get all permissions for an environment",
"request": {
"method": "GET",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
}
],
"url": {
"raw": "{{url}}/apimanager/xapi/v1/organizations/{{organization_id}}/permissions?environmentId={{environment_id}}",
"host": [
"{{url}}"
],
"path": [
"apimanager",
"xapi",
"v1",
"organizations",
"{{organization_id}}",
"permissions"
],
"query": [
{
"key": "environmentId",
"value": "{{environment_id}}"
}
]
}
},
"response": [
]
}