Skip to main content

get_account_info

Returns information about the current network account and the authenticated user. Call this first in any session to confirm the default currency and timezone before running reports. Parameters: None. Response fields:
FieldTypeDescription
network.network_idnumberNumeric network ID
network.namestringNetwork name
network.account_statusstringAccount status
network.currencystringDefault currency code
network.support_emailstringNetwork support email
network.time_createddatetimeAccount creation date
network.timezonestringDefault timezone (IANA)
current_user.employee_idnumberAuthenticated employee ID
current_user.namestringFull name
current_user.titlestringJob title
current_user.is_adminbooleanAdmin access
current_user.is_affiliate_managerbooleanHas affiliate management scope
current_user.is_limited_affiliate_scopebooleanScoped to specific affiliates only
current_user.is_advertiser_managerbooleanHas advertiser management scope
current_user.timezonestringUser’s timezone (IANA)
current_user.currencystringUser’s default currency
tracking.primary_domainstringPrimary tracking domain URL

Generic entity tools

Use these three tools for entity types not covered by the dedicated tools above — advertisers, creatives, invoices, pixels, and more. Call get_entity_schema with no arguments first to see every supported type and its available filters.

get_entity_schema

Returns the available filters, include options, and field descriptions for any entity type. Parameters:
ParameterTypeRequiredDescription
typestringNoEntity type. Leave empty to list all supported types. — max 64 chars
Supported entity types: offer, affiliate, affiliate_user, advertiser, advertiser_user, tracking_domain, click, conversion, creative, custom_creative, custom_payout_revenue, invoice, offer_group, campaign, pixel, coupon_code, application, click_error_code, conversion_error_code

get_entity

Retrieves a single entity by its primary ID. Parameters:
ParameterTypeRequiredDescription
typestringYesEntity type (from get_entity_schema) — max 64 chars
idstringYesPrimary ID of the entity — max 64 chars
includestringNoComma-separated relationship names (from get_entity_schema) — max 1,024 chars
parametersstringNoJSON object of additional query parameters — max 4,096 chars
Passing an unrecognized type returns INVALID_ARGUMENT: Unknown entity type '…'. Call get_entity_schema with no arguments to see every supported type.

list_entities

Lists entities of a given type with filters and pagination. Parameters:
ParameterTypeRequiredDescription
typestringYesEntity type (from get_entity_schema) — max 64 chars
filtersstringNoJSON object of filter key-value pairs (use get_entity_schema to see available filters) — max 4,096 chars
page_sizenumberNoRows per page (1–200, default 25)
cursorstringNoPagination cursor from a prior response — max 1,024 chars
Passing an unrecognized type returns INVALID_ARGUMENT: Unknown entity type '…'. Call get_entity_schema with no arguments to see every supported type.
Response envelope:
FieldTypeDescription
has_morebooleantrue if additional pages exist
next_cursorstringPass as cursor to retrieve the next page
rows_returnednumberNumber of records in this page
total_matchingnumberTotal records matching the query

search_documentation

Searches Everflow’s help center and API documentation. Use this to look up feature details, setup instructions, or API endpoint specifics. Parameters:
ParameterTypeRequiredDescription
querystringYesSearch query — max 512 chars
sourcestringNoall (default), help_center, or api_docs — max 64 chars