# Get deals by stage
You can return deals connected to a specific stage.
GET
/deals/?stage=:stage_id
Attribute | Type | Required | Description |
---|---|---|---|
stage_id | integer | yes | A unique identifier for the stage which is given by User.com automatically. |
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X GET -H "Authorization: Token <your_64_char_api_key> " "https://<your_app_subdomain>.user.com/api/public/deals/?stage=:stage_id"
Copied!
# Response
{ "count": 3, "next": null, "previous": null, "results": [ { "id": 3300, "name": "Deal 1", "value": "525.00", "currency": "USD", "custom_id": null, "stage": 25898, "pipeline": 4338, "assigned_to": null, "restricted_to": null, "agent": 5567, "company": null, "person": 22266722, "status": "1", "scope": "2", "created_by": 5567, "created_at": "2017-06-27T14:51:04.331287Z", "updated_at": "2017-07-04T16:54:47.907574Z", "attributes": [ { "value": "attr value", "name_std": "deal_attr", "name": "deal attr", "description": "attribute description", "id": 22 }, { "value": "attr value", "name_std": "deal_attr_2", "name": "deal attr 2", "description": " attribute description", "id": 23 } ], "tags": [ { "id": 31, "name": "My tag", } ], "activities_status": "3", "activities_status_updated_at": "2017-07-04T16:54:47.907238Z", "expected_close_date": null }, { "id": 3299, "name": "Deal 2", "value": "1000.00", "currency": "USD", "custom_id": null, "stage": 25898, "pipeline": 4338, "assigned_to": null, "restricted_to": null, "agent": 5567, "company": null, "person": 22132488, "status": "1", "scope": "2", "created_by": 5567, "created_at": "2017-06-27T14:50:21.944576Z", "updated_at": "2017-06-27T14:50:21.944596Z", "attributes": [ { "value": "attr value", "name_std": "deal_attr", "name": "deal attr", "description": "attribute description", "id": 22 }, { "value": "attr value", "name_std": "deal_attr_2", "name": "deal attr 2", "description": " attribute description", "id": 23 } ], "tags": [ { "id": 31, "name": "My tag", } ], "activities_status": "0", "activities_status_updated_at": "2017-06-27T14:50:21.944174Z", "expected_close_date": null } ] }
Copied!