SendRegning

Get recipients

Verison: 1.0 (read more)

Recipients assigned to label

Fetch a list of recipients assigned to a label.

In addition to the recipient name and number, you’ll get the balance for the recipient.

If label doesn’t exist, the API will return HTTP status code 404 Not Found.

1
GET /recipients/labels/{number}/members

Response

HTTP/1.1 200 OK

1
2
3
4
5
6
7
8
9
10
{
    "items": [
        {
            "recipientNumber": 42,
            "name": "Darth Vader",
            "balance": 1088.12
        }
    ],
    "total": 1
}