cURL
curl --request PUT \ --url https://api.eflow.team/v1/networks/categories/{categoryId} \ --header 'Content-Type: application/json' \ --header 'X-Eflow-Api-Key: <api-key>' \ --data ' { "name": "Lead Generation", "status": "active" } '
{ "network_category_id": 123, "network_id": 123, "name": "<string>", "status": "active", "time_created": 123, "time_saved": 123 }
Update an existing category. This is a full object replacement; all fields must be provided in the request body.
The Everflow API key generated from the Control Center > Security.
The unique category ID to update.
Category name.
Category status.
active
inactive
OK
Unique category ID.
Network ID this category belongs to.
Unix timestamp of creation.
Unix timestamp of last update.
Was this page helpful?