GET v1/qbrs/{qbrtypeid}
Gets a list of the current QBR status for each account
Request Information
URI Parameters
Name | Description | Type | Additional Information |
---|---|---|---|
qbrTypeID |
QBR Type ID or 'all' for all types |
string |
Required. |
Body Parameters
None.
Response Information
Resource Description
List of accounts and their QBR status
IHttpActionResultNone.
Response Formats
application/json, text/json, text/html
Sample:
[ { "AccountID": "sample string 1", "Owner": { "ID": "sample string 1", "FirstName": "sample string 2", "LastName": "sample string 3", "Email": "sample string 4" }, "LastCompleted": "2025-05-24T10:36:24.0916806+00:00", "NextScheduledDate": "2025-05-24T10:36:24.0916806+00:00", "CurrentStage": "sample string 2", "LastRating": 3 }, { "AccountID": "sample string 1", "Owner": { "ID": "sample string 1", "FirstName": "sample string 2", "LastName": "sample string 3", "Email": "sample string 4" }, "LastCompleted": "2025-05-24T10:36:24.0916806+00:00", "NextScheduledDate": "2025-05-24T10:36:24.0916806+00:00", "CurrentStage": "sample string 2", "LastRating": 3 } ]
application/xml, text/xml
Sample:
<ArrayOfQbrStatusModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KAPTA.Domain.ViewModel.v1"> <QbrStatusModel> <AccountID>sample string 1</AccountID> <CurrentStage>sample string 2</CurrentStage> <LastCompleted>2025-05-24T10:36:24.0916806+00:00</LastCompleted> <LastRating>3</LastRating> <NextScheduledDate>2025-05-24T10:36:24.0916806+00:00</NextScheduledDate> <Owner> <Email>sample string 4</Email> <FirstName>sample string 2</FirstName> <ID>sample string 1</ID> <LastName>sample string 3</LastName> </Owner> </QbrStatusModel> <QbrStatusModel> <AccountID>sample string 1</AccountID> <CurrentStage>sample string 2</CurrentStage> <LastCompleted>2025-05-24T10:36:24.0916806+00:00</LastCompleted> <LastRating>3</LastRating> <NextScheduledDate>2025-05-24T10:36:24.0916806+00:00</NextScheduledDate> <Owner> <Email>sample string 4</Email> <FirstName>sample string 2</FirstName> <ID>sample string 1</ID> <LastName>sample string 3</LastName> </Owner> </QbrStatusModel> </ArrayOfQbrStatusModel>