GET /api/partners


Filtering


Parameter

Values

type

"is_supply" "is_demand"


Sample Request


curl -X GET \ 
https://api.cedato.com/api/partners?type=is_demand \
-H 'accept: application/json' \
-H 'api-version: 1' \
-H 'authorization: Bearer '



Sample Response


{
   "status": "OK",
   "data": [
       {
           "partnerId": "78677",
           "name": "MyPartner1"
       },
       {
            "partnerId": "78807",
            "name": "MyPartner2"
       }
    ]
}