> For the complete documentation index, see [llms.txt](https://api-docs.rightsline.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api-docs.rightsline.com/entities/deal/retrieve-deal-processes.md).

# Retrieve deal workflow processes

## Get deal workflow processes

<mark style="color:blue;">`GET`</mark> `https://ris.rightsline.com/v4/deal-processes`

This endpoint allows you to retrieve workflow processes for deals.

#### Headers

| Name                                             | Type   | Description             |
| ------------------------------------------------ | ------ | ----------------------- |
| x-api-key<mark style="color:red;">\*</mark>      | string | Your company's API key. |
| Authentication<mark style="color:red;">\*</mark> | string | Authentication token.   |

{% tabs %}
{% tab title="200 Deals processes retrieved successfully." %}

```javascript
{
    "processes": [
        {
            "processId": 5,
            "processName": "Deal Workflow",
            "sequenceNumber": 1,
            "description": "Deal Workflow Description"
        },
        {
            "processId": 26,
            "processName": "Production Deal Workflow",
            "sequenceNumber": 2,
            "description": "Production Deal Workflow Description"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
