List postgres users

List all postgres users for a given project. If more than limit users exist, a cursor for pagination will be returned with the response.

Securityoidc-token or oauth2-client-credentials or oauth2-open-industrial-data or oauth2-auth-code
Request
Request Body schema: application/json
required
limit
integer <int32> [ 1 .. 10 ]
cursor
string (Cursor)

Cursor for pagination

Responses
200

List of users paginated

400

The response for a bad request.

422

Validation Error

post/postgresgateway/users/list
Request samples
application/json
{
  • "limit": 1,
  • "cursor": "string"
}
Response samples
application/json
{
  • "items": [
    • {
      }
    ],
  • "nextCursor": "string"
}