Skip to main content
POST
/
networks
/
channels
Create Channel
curl --request POST \
  --url https://api.eflow.team/v1/networks/channels \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "name": "Display Ads",
  "status": "active"
}
'
{
  "network_channel_id": 123,
  "network_id": 123,
  "name": "<string>",
  "status": "<string>",
  "time_created": 123,
  "time_saved": 123
}

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
name
string
required

Channel name.

status
enum<string>
required

Channel status.

Available options:
active,
inactive

Response

200 - application/json

OK

network_channel_id
integer

The newly created channel ID.

network_id
integer
name
string
status
string
time_created
integer
time_saved
integer