Retrieve a trade list

Retrieve a specific trade list with its UUID.

GET /aos/v1/trades/list/{listId}

Query params

Parameter Type Mandatory
listId string (uuid) yes

Response

Status: 200 OK
{
    "list": {
        "id": "97740902-8ab6-43ec-8911-92853f7387b7",
        "name": "Grande Distribution",
        "organization_id": "97740905-d059-454e-a0b6-91d097642710",
        "trades": [
            {
                "id": "97740905-d059-454e-a0b6-91d097642710",
                "name": "ELECTRICITE"
            },
            {
                "id": "97740906-78cf-4210-8ebe-896623f3d6af",
                "name": "Désenfumage"
            },
            // Other trades..
        ]
    }
}