# Update pipeline

You can update a specific pipeline.

PUT /pipelines/:id/

Attributes Type Required Description
id integer yes A unique identifier for the pipeline which is given by User.com automatically.
name string yes A pipeline name.

# Request

  • CURL
  • JavaScript
  • PHP
  • Python
curl -X POST -H "Authorization: Token <your_64_char_api_key>" -H "Content-Type: application/json" 
       -H "Accept: */*; version=2" -d '{
      "name": "Updated name"
    }' "https://<your_app_subdomain>.user.com/api/public/pipelines/:id/"

# Response

{
    "id": 6178,
    "name": "Pipeline updated"
}