{ "opencollection": "1.0.0", "info": { "name": "AFM Access Profiles Rate Limit Profiles API", "version": "0.1.0" }, "items": [ { "info": { "name": "Rate Limit Profiles", "type": "folder" }, "items": [ { "info": { "name": "Get All Rate Limit Profiles", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/app/v1/rate_limit_profiles", "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get all rate limit profiles" }, { "info": { "name": "Create Rate Limit Profile", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/app/v1/rate_limit_profiles", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new rate limit profile" }, { "info": { "name": "Get Rate Limit Profile", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/app/v1/rate_limit_profiles/:profile_id", "params": [ { "name": "profile_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get a rate limit profile by ID" }, { "info": { "name": "Update Rate Limit Profile", "type": "http" }, "http": { "method": "PATCH", "url": "{{baseUrl}}/app/v1/rate_limit_profiles/:profile_id", "params": [ { "name": "profile_id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update a rate limit profile" }, { "info": { "name": "Delete Rate Limit Profile", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/app/v1/rate_limit_profiles/:profile_id", "params": [ { "name": "profile_id", "value": "", "type": "path" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete a rate limit profile" } ] } ], "bundled": true }