List Registries
GET/v1/registries
List Registries
Request​
Query Parameters
countryCode stringrequired
3 letter ISO-3166 alpha 3 identifier of the country
Responses​
- 200
- 400
- 401
- 403
Successfully retrieved Registries for a Country
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
id string
Example:
registry_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
name string
Example:
Charity Registry
englishName string
Example:
Charity Registry
code string
Example:
CR
object string
Example:
Registry
{
"data": [
{
"id": "registry_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"name": "Charity Registry",
"englishName": "Charity Registry",
"code": "CR"
}
],
"object": "Registry"
}
Error validating inputs
- application/json
- Schema
- Example (from schema)
Schema
error
object
code string
Example:
bad_request
title string
Example:
Bad request
message string
Example:
One or more of the inputs were invalid
reasons string[]
{
"error": {
"code": "bad_request",
"title": "Bad request",
"message": "One or more of the inputs were invalid",
"reasons": [
"pageSize must be greater than or equal to 0"
]
}
}
Unauthorized
Forbidden (scope)
- application/json
- Schema
- Example (from schema)
Schema
error
object
code string
Example:
forbidden
title string
Example:
Forbidden
message string
Example:
Access is denied due to missing scope permissions
{
"error": {
"code": "forbidden",
"title": "Forbidden",
"message": "Access is denied due to missing scope permissions"
}
}
Loading...