You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to integrate a marketplace application, and I need to send the billing usage for each client using it. I tried searching for documents and references, but there were none. I'm finding it very difficult to integrate this billing usage implementation. I've got only the endpoint but I don't have any idea what to send in the body. I know it's not the preferable place to ask, but any sample payload and postman collection on this would be very much appreciated. Thank you.
{
"account": {
"accountIdentifier": "OrganizationID"
},
"items": [
{
"unit": "EMPLOYEE",
"quantity": "No. of worker belongs to the client"
}
]
}
But unfortunately, when I send this data, I get an error like this:
{
"status": 400,
"code": "Bad Request",
"message": "One or more mandatory fields are missing, null or empty in the API request. Please update the request and submit again."
}
The text was updated successfully, but these errors were encountered:
Hello,
I'm trying to integrate a marketplace application, and I need to send the billing usage for each client using it. I tried searching for documents and references, but there were none. I'm finding it very difficult to integrate this billing usage implementation. I've got only the endpoint but I don't have any idea what to send in the body. I know it's not the preferable place to ask, but any sample payload and postman collection on this would be very much appreciated. Thank you.
Currently, the only information I have is:
API URL:
And in the body I'm sending the following data
But unfortunately, when I send this data, I get an error like this:
The text was updated successfully, but these errors were encountered: