List an Organisations Milestones
GET/v1/organisations/:id/milestones
List an Organisations Milestones
Request​
Path Parameters
id stringrequired
Id of the organisation
Responses​
- 200
- 401
- 403
Successfully list an Organisations milestones
- application/json
- Schema
- Example (from schema)
Schema
data
object
id string
Example:
milestone_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx
amount integer
Example:
1000
reward string
Example:
This is a reward
currencyCode string
organisationId string
object string
Example:
milestone
{
"data": {
"id": "milestone_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"amount": 1000,
"reward": "This is a reward",
"currencyCode": "string",
"organisationId": "string"
},
"object": "milestone"
}
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...