# Deal-Pipelines

## Alle Pipelines lesen

<mark style="color:blue;">`GET`</mark> `https://api.propstack.de/v1/deal_pipelines`

{% tabs %}
{% tab title="200 " %}

```javascript
{
    "data": [
        {
            "id": 1,
            "name": "Sales-Pipeline",
            "broker_ids": [
                101,
                102,
                103
            ],
            "deal_stages": [
                {
                    "id": 1,
                    "name": "Besichtigt",
                    "position": 0,
                    "color": "#38b9d9",
                    "chance": 0.2
                },
                {
                    "id": 2,
                    "name": "Reserviert",
                    "position": 4,
                    "color": "#f55753",
                    "chance": 0.7
                },
                {
                    "id": 3,
                    "name": "Notartermin",
                    "position": 3,
                    "color": "#f8d053",
                    "chance": 0.9
                },
                {
                    "id": 4,
                    "name": "Gekauft",
                    "position": 5,
                    "color": "#10cfbd",
                    "chance": 1
                }
            ]
        }
    ]
}
```

{% endtab %}
{% endtabs %}

## Pipeline lesen

<mark style="color:blue;">`GET`</mark> `https://api.propstack.de/v1/deal_pipelines/:id`

{% tabs %}
{% tab title="200 " %}

```javascript
{
    "id": 1,
    "name": "Sales-Pipeline",
    "broker_ids": [
        51,
        45,
        48
    ],
    "deal_stages": [
        {
            "id": 71,
            "name": "Besichtigt",
            "position": 0,
            "color": "#38b9d9",
            "chance": 0.2
        },
        {
            "id": 34,
            "name": "Reserviert",
            "position": 4,
            "color": "#f55753",
            "chance": 0.7
        },
        {
            "id": 33,
            "name": "Notartermin",
            "position": 3,
            "color": "#f8d053",
            "chance": 0.9
        },
        {
            "id": 35,
            "name": "Gekauft",
            "position": 5,
            "color": "#10cfbd",
            "chance": 1
        }
    ]
}
```

{% endtab %}
{% endtabs %}
