How to get Providers list?

To get the list of providers available for a particular access, use the GET method:

https://dmpapi.admixer.net/DmpProviders/GetProvidersList

Nothing more is needed to add as parameters, just an active token that’s created on your login and password.

In response, you get JSON

Expand an example of the JSON response
{
    "data": [
        {
            "id": 1111,
            "name": "Data Provider 1",
            "currency": "UAH",
            "description": null,
            "binKey": 1234,
            "oId": "9e222b11-cfd7-4ddf-bd26-eafc624e404d",
            "subscriptionOId": "fb01f811-8bf5-463e-aa12-3fdaf0763f27",
            "state": 1,
            "segments": 1,
            "segmentGroups": 1,
            "logo": null,
            "datacenterKey": null,
            "type": 0,
            "providerSubscriptionType": 0
        },
        {
            "id": 2222,
            "name": "Data Provider 2",
            "currency": "UAH",
            "description": null,
            "binKey": 12345,
            "oId": "aee522c11-8a53-47aa-8cec-acfe38ffdab2",
            "subscriptionOId": "fb01f811-8bf5-463e-aa12-3fdaf0763f27",
            "state": 1,
            "segments": 1,
            "segmentGroups": 1,
            "logo": null,
            "datacenterKey": null,
            "type": 1,
            "providerSubscriptionType": 17
        }
    ],
    "totals": {
        "provider": {
            "segments": 2,
            "segmentGroups": 2,
            "name": "",
            "currency": ""
        }
    },
    "filters": {},
    "columns": null,
    "isOK": true,
    "message": null,
    "errors": null,
    "status": 200,
    "statusCode": 200,
    "isOk": true,
    "refEntities": {},
    "metaData": null
}
Updated on October 11, 2023