Skip to main content
PUT
/
networks
/
employees
/
{employeeId}
Update Employee
curl --request PUT \
  --url https://api.eflow.team/v1/networks/employees/{employeeId} \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "account_status": "active",
  "first_name": "Sarah",
  "last_name": "Johnson",
  "full_name": "Sarah Johnson",
  "is_admin": false,
  "is_affiliate_manager": true,
  "is_limited_affiliate_scope": false,
  "is_advertiser_manager": false,
  "work_phone": "555-0200",
  "cell_phone": "555-0201",
  "title": "Senior Account Manager",
  "network_role_id": 1,
  "instant_messaging_id": 0,
  "instant_messaging_identifier": "",
  "language_id": 1,
  "timezone_id": 90,
  "currency_id": "USD",
  "picture_url": "",
  "is_using_email_notification": true,
  "is_receiving_newsletter": false,
  "internal_notes": "",
  "network_business_unit_id": 1,
  "city": "",
  "country_id": 0,
  "country_code": "",
  "region_code": ""
}
'
{
  "network_employee_id": 123,
  "network_id": 123,
  "network_business_unit_id": 123,
  "first_name": "<string>",
  "last_name": "<string>",
  "full_name": "<string>",
  "email": "<string>",
  "is_admin": true,
  "is_affiliate_manager": true,
  "is_limited_affiliate_scope": true,
  "is_advertiser_manager": true,
  "work_phone": "<string>",
  "cell_phone": "<string>",
  "title": "<string>",
  "network_role_id": 123,
  "instant_messaging_id": 123,
  "instant_messaging_identifier": "<string>",
  "language_id": 123,
  "timezone_id": 123,
  "currency_id": "<string>",
  "picture_url": "<string>",
  "is_using_email_notification": true,
  "is_receiving_newsletter": true,
  "internal_notes": "<string>",
  "city": "<string>",
  "country_id": 123,
  "country_code": "<string>",
  "region_code": "<string>",
  "time_created": 1734455015,
  "time_saved": 1734455015,
  "relationship": {}
}

Documentation Index

Fetch the complete documentation index at: https://developers.everflow.io/llms.txt

Use this file to discover all available pages before exploring further.

Update an existing network employee. This is a full object replacement; all fields must be provided in the request body.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Path Parameters

employeeId
integer
required

The unique employee ID to update.

Body

application/json
first_name
string
required

Employee's first name.

last_name
string
required

Employee's last name.

network_role_id
integer
required

Network role ID assigned to this employee.

language_id
integer
required

Language ID for the employee.

timezone_id
integer
required

Timezone ID for the employee.

currency_id
string
required

ISO currency code (e.g. "USD").

account_status
enum<string>
required

Employee account status.

Available options:
active,
inactive
network_business_unit_id
integer

Business unit ID for this employee.

full_name
string

Employee's full name.

is_admin
boolean

Whether the employee has administrator privileges.

is_affiliate_manager
boolean

Whether the employee is an affiliate manager.

is_limited_affiliate_scope
boolean

Whether the employee has limited affiliate scope.

is_advertiser_manager
boolean

Whether the employee is an advertiser manager.

work_phone
string

Employee's work phone number.

cell_phone
string

Employee's cell phone number.

title
string

Employee's job title.

instant_messaging_id
integer

Instant messaging platform ID.

instant_messaging_identifier
string

Instant messaging username or identifier.

picture_url
string

URL of the employee's profile picture.

is_using_email_notification
boolean

Whether the employee receives email notifications.

is_receiving_newsletter
boolean

Whether the employee receives newsletters.

internal_notes
string

Internal notes about the employee.

city
string

Employee's city.

country_id
integer

Country ID for the employee.

country_code
string

Country code for the employee.

region_code
string

Region code for the employee.

Response

network_employee_id
integer
read-only

Unique employee ID.

network_id
integer
read-only

Network ID this employee belongs to.

network_business_unit_id
integer

Business unit ID for this employee.

first_name
string

Employee's first name.

last_name
string

Employee's last name.

full_name
string

Employee's full name.

email
string

Employee's email address.

is_admin
boolean

Whether the employee has administrator privileges.

is_affiliate_manager
boolean

Whether the employee is an affiliate manager.

is_limited_affiliate_scope
boolean

Whether the employee has limited affiliate scope.

is_advertiser_manager
boolean

Whether the employee is an advertiser manager.

work_phone
string

Employee's work phone number.

cell_phone
string

Employee's cell phone number.

title
string

Employee's job title.

network_role_id
integer

Network role ID assigned to this employee.

instant_messaging_id
integer

Instant messaging platform ID.

instant_messaging_identifier
string

Instant messaging username or identifier.

language_id
integer

Language ID for the employee.

timezone_id
integer

Timezone ID for the employee.

currency_id
string

ISO currency code (e.g. "USD").

account_status
enum<string>

Employee account status.

Available options:
active,
inactive
picture_url
string

URL of the employee's profile picture.

is_using_email_notification
boolean

Whether the employee receives email notifications.

is_receiving_newsletter
boolean

Whether the employee receives newsletters.

internal_notes
string

Internal notes about the employee.

city
string

Employee's city.

country_id
integer

Country ID for the employee.

country_code
string

Country code for the employee.

region_code
string

Region code for the employee.

time_created
integer
read-only

Unix timestamp of creation.

Example:

1734455015

time_saved
integer
read-only

Unix timestamp of last update.

Example:

1734455015

relationship
object
read-only

Related data objects.