Retrieve a Registry
GET/v1/registries/:id
Retrieve a Registry
Request​
Path Parameters
id stringrequired
Id of the registry
Responses​
- 200
- 401
- 403
- 404
Successfully retrieved a Registry
- application/json
- Schema
- Example (from schema)
Schema
data
object
idstring
Example:
registry_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
namestring
Example:
Charity Registry
englishNamestring
Example:
Charity Registry
codestring
Example:
CR
objectstring
Example:
Registry
{
"data": {
"id": "registry_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"name": "Charity Registry",
"englishName": "Charity Registry",
"code": "CR"
},
"object": "Registry"
}
Unauthorized
Forbidden (scope)
- application/json
- Schema
- Example (from schema)
Schema
error
object
codestring
Example:
forbidden
titlestring
Example:
Forbidden
messagestring
Example:
Access is denied due to missing scope permissions
{
"error": {
"code": "forbidden",
"title": "Forbidden",
"message": "Access is denied due to missing scope permissions"
}
}
The specified resource was not found
- application/json
- Schema
- Example (from schema)
Schema
error
object
codestring
Example:
not_found
titlestring
Example:
Resource not found
messagestring
Example:
This endpoint is unavailable or can not be found
{
"error": {
"code": "not_found",
"title": "Resource not found",
"message": "This endpoint is unavailable or can not be found"
}
}