get https://sync.bankin.com/v2/users
Return a list of your users.
Response
Return a list of your users.
xxxxxxxxxx
curl 'https://sync.bankin.com/v2/users?limit=100' \
-X GET \
-H 'Bankin-Version: 2019-02-18' \
-H 'Client-Id: MY_CLIENT_ID' \
-H 'Client-Secret: MY_CLIENT_SECRET'
xxxxxxxxxx
15{
"resources": [
{
"uuid": "d3751ede-cb1e-4d49-bd59-69917021540e",
"resource_uri": "/v2/users/d3751ede-cb1e-4d49-bd59-69917021540e",
"resource_type": "user",
"email": "john.doe@email.com"
},
// ...
],
"pagination": {
"previous_uri": null,
"next_uri": "/v2/users?after=ZDM3NTFlZGUtY2IxZS00ZDQ5LWJkNTktNjk5MTcwMjE1NDBl&limit=100"
}
}