GET
/
partner
/
v1
/
users
curl --request GET \
  --url https://api.paywise.de/partner/v1/users/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100",
  "results": [
    {
      "href": "https://api.paywise.de/partner/v1/users/ab5fc850-7bb3-4c33-9741-d1305dfa41d9/",
      "id": "ab5fc850-7bb3-4c33-9741-d1305dfa41d9",
      "email": "[email protected]",
      "first_name": "Max",
      "last_name": "Mustermann",
      "company": "6196ba03-83f2-46ea-83e1-a087bd0c5acc",
      "email_verified": true,
      "notification_channels": [
        {
          "channel_type": "EMAIL",
          "value": "[email protected]",
          "notification_types": [
            "REQUESTS_TO_CLIENT",
            "STATUS_UPDATE",
            "STATEMENTS"
          ]
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

company
string

Filter by company UUID

email
string

Filter by email address

first_name
string

Filter by first name

id
string

Filter by user UUID

last_name
string

Filter by last name

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

Response

200 - application/json
count
integer
Example:

123

next
string | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"

results
object[]