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_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxnamestring
Example: 
Charity RegistryenglishNamestring
Example: 
Charity Registrycodestring
Example: 
CRobjectstring
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: 
forbiddentitlestring
Example: 
Forbiddenmessagestring
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_foundtitlestring
Example: 
Resource not foundmessagestring
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"
  }
}