Skip to main content
GET
/
networks
Get Network Info
curl --request GET \
  --url https://api.eflow.team/v1/networks \
  --header 'X-Eflow-Api-Key: <api-key>'
{
  "network_id": 123,
  "customer_id": 123,
  "name": "<string>",
  "identifier": "<string>",
  "account_status": "<string>",
  "displayed_name": "<string>",
  "is_show_name": true,
  "timezone_id": 123,
  "language_id": 123,
  "currency_id": "<string>",
  "logo_image_url": "<string>",
  "favicon_image_url": "<string>",
  "support_email": "<string>",
  "time_created": 1734455015,
  "time_saved": 1734455015
}
Returns the current network’s configuration including name, settings, default currency, timezone, and feature flags. This is one of the most frequently called endpoints, used to retrieve the baseline configuration for the authenticated network.

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Response

200 - application/json
network_id
integer

Unique network ID.

customer_id
integer

Customer account ID.

name
string

Network name.

identifier
string

Network identifier string.

account_status
string

Current account status.

displayed_name
string

The display name for the network.

is_show_name
boolean

Whether to show the network name.

timezone_id
integer

Primary timezone ID for the network.

language_id
integer

Default language ID.

currency_id
string

Default currency code.

logo_image_url
string
favicon_image_url
string
support_email
string
time_created
integer

Unix timestamp of creation.

Example:

1734455015

time_saved
integer

Unix timestamp of last update.

Example:

1734455015