GEThttps://api-pilot.ebsi.eu/trusted-policies-registry/v3/users
Returns a list of users registered in the registry.
Request
Responses
- 200
- 400
- 500
Success
- application/json
- Schema
- Example (from schema)
- Success
Schema
URI to users
items object[]
Total number of items in a collection
Number of items to be returned per page
links object
{
"self": "string",
"items": [
{
"address": "string",
"href": "string"
}
],
"total": 0,
"pageSize": 0,
"links": {
"first": "string",
"prev": "string",
"next": "string",
"last": "string"
}
}
{
"self": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/users?page[after]=3&page[size]=2",
"items": [
{
"address": "0x7E918E979A5FFa5e540d8C8d6dB220E3f0704858",
"href": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/users/0x7E918E979A5FFa5e540d8C8d6dB220E3f0704858"
},
{
"address": "0x69e48d89bf5e09588E858D757323b4abBBB3f814",
"href": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/users/0x69e48d89bf5e09588E858D757323b4abBBB3f814"
}
],
"total": 124,
"pageSize": 2,
"links": {
"first": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/users?page[after]=1&page[size]=2",
"prev": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/users?page[after]=2&page[size]=2",
"next": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/users?page[after]=4&page[size]=2",
"last": "https://api-pilot.ebsi.eu/trusted-policies-registry/v3/users?page[after]=62&page[size]=2"
}
}
Bad Request
- application/problem+json
- Schema
- Example (from schema)
- Bad Request
Schema
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
A short summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
A human readable explanation specific to this occurrence of the problem.
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"type": "about:blank",
"title": "Internal Server Error",
"status": 500,
"detail": "Connection timeout",
"instance": "string"
}
{
"title": "Bad Request",
"status": 400,
"detail": "Bad request."
}
Internal Error
- application/problem+json
- Schema
- Example (from schema)
- Internal Server Error
Schema
Default value: about:blank
An absolute URI that identifies the problem type. When dereferenced, it SHOULD provide human-readable documentation for the problem type.
A short summary of the problem type.
Possible values: >= 400
and <= 600
The HTTP status code generated by the origin server for this occurrence of the problem.
A human readable explanation specific to this occurrence of the problem.
An absolute URI that identifies the specific occurrence of the problem. It may or may not yield further information if dereferenced.
{
"type": "about:blank",
"title": "Internal Server Error",
"status": 500,
"detail": "Connection timeout",
"instance": "string"
}
{
"title": "Internal Server Error",
"status": 500,
"detail": "The server encountered an internal error and was unable to process your request."
}
- curl
- nodejs
- python
- go
- php
- java
- CURL
curl -L 'https://api-pilot.ebsi.eu/trusted-policies-registry/v3/users' \
-H 'Accept: application/json'