{ "opencollection": "1.0.0", "info": { "name": "Fastly Account ACL Service API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Fastly-Key", "value": "{{Fastly-Key}}", "placement": "header" } }, "items": [ { "info": { "name": "Service", "type": "folder" }, "items": [ { "info": { "name": "List services", "type": "http" }, "http": { "method": "GET", "url": "https://api.fastly.com/service", "params": [ { "name": "page", "value": "", "type": "query", "description": "The page number to return." }, { "name": "per_page", "value": "", "type": "query", "description": "The number of items to return per page." }, { "name": "sort", "value": "", "type": "query", "description": "The field to sort results by." }, { "name": "direction", "value": "", "type": "query", "description": "The direction to sort results in." } ] }, "docs": "Retrieves a list of all services associated with the authenticated account. Returns basic information about each service including its name, ID, and current active version." }, { "info": { "name": "Create a service", "type": "http" }, "http": { "method": "POST", "url": "https://api.fastly.com/service", "body": { "type": "form-urlencoded", "data": [ { "name": "name", "value": "" }, { "name": "comment", "value": "" }, { "name": "type", "value": "" } ] } }, "docs": "Creates a new Fastly service. A service represents the configuration for a website, application, API, or other resource to be served through Fastly's edge network." }, { "info": { "name": "Get a service", "type": "http" }, "http": { "method": "GET", "url": "https://api.fastly.com/service/:service_id", "params": [ { "name": "service_id", "value": "", "type": "path", "description": "The alphanumeric string identifying the Fastly service." } ] }, "docs": "Retrieves detailed information about a specific Fastly service identified by its service ID." }, { "info": { "name": "Update a service", "type": "http" }, "http": { "method": "PUT", "url": "https://api.fastly.com/service/:service_id", "params": [ { "name": "service_id", "value": "", "type": "path", "description": "The alphanumeric string identifying the Fastly service." } ], "body": { "type": "form-urlencoded", "data": [ { "name": "name", "value": "" }, { "name": "comment", "value": "" } ] } }, "docs": "Updates the details of a specific Fastly service, such as its name or comment." }, { "info": { "name": "Delete a service", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.fastly.com/service/:service_id", "params": [ { "name": "service_id", "value": "", "type": "path", "description": "The alphanumeric string identifying the Fastly service." } ] }, "docs": "Permanently deletes a specific Fastly service. This action cannot be undone and the service must be deactivated before deletion." }, { "info": { "name": "Get service details", "type": "http" }, "http": { "method": "GET", "url": "https://api.fastly.com/service/:service_id/details", "params": [ { "name": "service_id", "value": "", "type": "path", "description": "The alphanumeric string identifying the Fastly service." } ] }, "docs": "Retrieves detailed information about a specific service including all of its versions and their associated settings." }, { "info": { "name": "Search for a service by name", "type": "http" }, "http": { "method": "GET", "url": "https://api.fastly.com/service/search", "params": [ { "name": "name", "value": "", "type": "query", "description": "The name of the service to search for." } ] }, "docs": "Searches for a service by its name and returns the matching service details." } ] } ], "bundled": true }