# Create pipeline
You can create a pipeline.
POST /pipelines/
| Attributes | Type | Required | Description | 
|---|---|---|---|
| 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" -d '{
      "name": "My new pipeline"
    }' "https://<your_app_subdomain>.user.com/api/public/pipelines/"
# Response
{
  "name":"Test pipeline"
}