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
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"
}
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"
}
}
The specified resource was not found
- application/json
- Schema
- Example (from schema)
Schema
error
object
code string
Example:
not_found
title string
Example:
Resource not found
message string
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"
}
}
Loading...