| Name
|
Data Type | Description |
| pgsiz
|
int |
max records to return per response; use "next" or "prev" link to paginate
|
| pgnum
|
int |
considering pgsiz, returns the pgnum-th page, 1-indexed
|
| rql
|
string |
see RQL documentation
|
| sort
|
string |
see RQL documentation
|
|
Type |
Description |
| TotalResults |
int
|
|
| ResourceList |
IList<Master.Models.ThreePlSummary>
|
|
| CompanyName |
string
|
|
| GuId |
string
|
|
| ThreePlId |
int
|
|
| Status |
Common.Enum.ThreePlRecordStatus
|
|
|
- 0: NewRecord |
|
|
- 1: ConfEmailSent |
|
|
- 2: ReadyToCreateDb |
|
|
- 3: DbCreated |
|
|
- 4: Deactivated |
|
| CreationDate |
DateTime?
|
|
| Billable |
bool
|
|
| UseCognitoLogin |
bool
|
|
| SalesforceId |
string
|
|
| Links |
IList<WebApi.Hal.Link>
|
|
|
-
/rels/master/threepl
|
the full record, including settings |
| Links |
IList<WebApi.Hal.Link>
|
|
|
-
next |
|
|
-
prev |
|
Sample accept: application/hal+json
{
"totalResults": 1,
"_embedded": {
"item": [
{
"companyName": "str",
"guId": "str",
"threePlId": 3,
"status": 0,
"creationDate": "2016-12-25T23:00:00",
"billable": true,
"useCognitoLogin": true,
"salesforceId": "str"
}
]
}
}