Last updated 6 months ago
Was this helpful?
GET /api/v1/access-bundles/{id} HTTP/1.1 Host: api.apono.io Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
OK
{ "id": "text", "name": "text", "integration_targets": [ { "integration_id": "text", "resource_type": "text", "resource_tag_includes": [ { "name": "text", "value": "text" } ], "resource_tag_excludes": [ { "name": "text", "value": "text" } ], "permissions": [ "text" ] } ] }
DELETE /api/v1/access-bundles/{id} HTTP/1.1 Host: api.apono.io Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
{ "message": "text" }
GET /api/v1/access-bundles HTTP/1.1 Host: api.apono.io Authorization: Bearer YOUR_SECRET_TOKEN Accept: */*
{ "data": [ { "id": "text", "name": "text", "integration_targets": [ { "integration_id": "text", "resource_type": "text", "resource_tag_includes": [ { "name": "text", "value": "text" } ], "resource_tag_excludes": [ { "name": "text", "value": "text" } ], "permissions": [ "text" ] } ] } ], "pagination": { "total": 1, "limit": 1, "offset": 1 } }
POST /api/v1/access-bundles HTTP/1.1 Host: api.apono.io Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 225 { "name": "text", "integration_targets": [ { "integration_id": "text", "resource_type": "text", "resource_tag_includes": [ { "name": "text", "value": "text" } ], "resource_tag_excludes": [ { "name": "text", "value": "text" } ], "permissions": [ "text" ] } ] }
PATCH /api/v1/access-bundles/{id} HTTP/1.1 Host: api.apono.io Authorization: Bearer YOUR_SECRET_TOKEN Content-Type: application/json Accept: */* Content-Length: 225 { "name": "text", "integration_targets": [ { "integration_id": "text", "resource_type": "text", "resource_tag_includes": [ { "name": "text", "value": "text" } ], "resource_tag_excludes": [ { "name": "text", "value": "text" } ], "permissions": [ "text" ] } ] }