Retrieve an Organisation profile info
GET/v1/organisations/:id/profile
Retrieve an Organisation profile info
Request​
Path Parameters
id stringrequired
Id of the organisation
Responses​
- 200
- 404
Retrieve a nonprofit Organisation profile
- application/json
- Schema
- Example (from schema)
Schema
data
object
namestring
Example:
Lemon rescue nonprofit
displayNamestringnullable
Example:
Lemon Team
descriptionstringnullable
Example:
Lemon Team
logostringnullable
Example:
https://logo-url.com/the-logo.png
objectstring
Example:
organisation_profile
{
"data": {
"name": "Lemon rescue nonprofit",
"displayName": "Lemon Team",
"description": "Lemon Team",
"logo": "https://logo-url.com/the-logo.png"
},
"object": "organisation_profile"
}
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"
}
}