-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Concession pricing not returned with billable items #201
Comments
We have a table that's the concession prices of billable items. I think the only thing here would be to figure out how we want to expose that info on the API. I'll have to check with some folks that are more familiar with this area. |
Brilliant! Halfway there ;) {
"id": 1,
"item_code": "0001",
"item_type": "Service",
"name": "Initial Consultation",
"price": 80,
"tax": {
"links": {"self": "https://api.cliniko.com/v1/taxes/1"}
},
"concession_prices": [
{
"price": 70,
"name": "Student",
"links": {
"self": "https://api.cliniko.com/v1/concession_types/221"
}
},
{
"price": 60,
"name": "Senior",
"links": {
"self": "https://api.cliniko.com/v1/concession_types/227"
}
},
{
"price": null,
"name": "Other",
"links": {
"self": "https://api.cliniko.com/v1/concession_types/228"
}
}
],
"created_at": "2014-03-04T19:11:30Z",
"updated_at": "2014-03-04T19:11:30Z",
"links": {"self": "https://api.cliniko.com/v1/billable_items/1"}
} |
👌 We were thinking something similar without the name. |
So Monday then?!?! ;)
|
sure, we can make it a Monday 😏 |
Nice
|
Can concession prices for a
billable_item
be returned with thebillable_item
? This information cannot be sourced via. the API other than after being applied to aninvoice_item
.The text was updated successfully, but these errors were encountered: