Via the Fastly API you can perform any of the operations that are possible within the management console, including creating services, domains, and backends, configuring rules or uploading your own application code, as well as account operations such as user administration and billing reports. The API is organized into collections of endpoints that allow manipulation of objects related to Fastly services and accounts. For the most accurate and up-to-date API reference content, visit our [Developer Hub](https://www.fastly.com/documentation/reference/api/)
# @param string $filter[customer_id] Limit the results returned to a specific customer. (optional)
# @param string $filter[event_type] Limit the returned events to a specific `event_type`. (optional)
# @param string $filter[service_id] Limit the results returned to a specific service. (optional)
# @param string $filter[user_id] Limit the results returned to a specific user. (optional)
# @param string $filter[token_id] Limit the returned events to a specific token. (optional)
# @param string $filter[created_at] Limit the returned events to a specific time frame. Accepts sub-parameters: lt, lte, gt, gte (e.g., filter[created_at][gt]=2022-01-12). (optional)
# @param string $filter[created_at][lte] Return events on and before a date and time in ISO 8601 format. (optional)
# @param string $filter[created_at][lt] Return events before a date and time in ISO 8601 format. (optional)
# @param string $filter[created_at][gte] Return events on and after a date and time in ISO 8601 format. (optional)
# @param string $filter[created_at][gt] Return events after a date and time in ISO 8601 format. (optional)
# @param int $page[number] Current page. (optional)
# @param int $page[size] Number of records per page. (optional, default to 20)
# @param string $sort The order in which to list the results by creation date. (optional, default to 'created_at')
{
my$params= {
'filter[customer_id]'=> {
data_type=> 'string',
description=> 'Limit the results returned to a specific customer.',
required=> '0',
},
'filter[event_type]'=> {
data_type=> 'string',
description=> 'Limit the returned events to a specific `event_type`.',
required=> '0',
},
'filter[service_id]'=> {
data_type=> 'string',
description=> 'Limit the results returned to a specific service.',
required=> '0',
},
'filter[user_id]'=> {
data_type=> 'string',
description=> 'Limit the results returned to a specific user.',
required=> '0',
},
'filter[token_id]'=> {
data_type=> 'string',
description=> 'Limit the returned events to a specific token.',
required=> '0',
},
'filter[created_at]'=> {
data_type=> 'string',
description=> 'Limit the returned events to a specific time frame. Accepts sub-parameters: lt, lte, gt, gte (e.g., filter[created_at][gt]=2022-01-12). ',
required=> '0',
},
'filter[created_at][lte]'=> {
data_type=> 'string',
description=> 'Return events on and before a date and time in ISO 8601 format. ',
required=> '0',
},
'filter[created_at][lt]'=> {
data_type=> 'string',
description=> 'Return events before a date and time in ISO 8601 format. ',
required=> '0',
},
'filter[created_at][gte]'=> {
data_type=> 'string',
description=> 'Return events on and after a date and time in ISO 8601 format. ',
required=> '0',
},
'filter[created_at][gt]'=> {
data_type=> 'string',
description=> 'Return events after a date and time in ISO 8601 format. ',
required=> '0',
},
'page[number]'=> {
data_type=> 'int',
description=> 'Current page.',
required=> '0',
},
'page[size]'=> {
data_type=> 'int',
description=> 'Number of records per page.',
required=> '0',
},
'sort'=> {
data_type=> 'string',
description=> 'The order in which to list the results by creation date.',