Court.GetAll
Try it in Swagger
Endpoint
- Method:
GET
- Route:
Court/GetAll
- Authentication:
Authorize
Request Schema
| Header |
Required |
Notes |
X-Api-Key |
Required when tenant is not resolved by subdomain |
Resolves the tenant/customer database. |
Authorization: Bearer {token} |
Required for authorized endpoints |
Get a token from Auth/Token or Session/Create. |
This endpoint does not accept a JSON request body.
Expected Response Schema
Status Codes
| Status |
Notes |
200 OK |
Returned by the controller for this operation. |
Success Body
Response type: IReadOnlyList<CourtDto>
| Field |
Type |
Max Length |
Notes |
code |
string |
12 |
Court code to use in order request courtCode fields. |
name |
string |
|
Court display name. Do not send this value as an order courtCode. |
county |
string |
|
|
title |
string |
|
|
street |
string |
|
|
city |
string |
|
|
state |
string |
|
|
zip |
string |
|
|
Response Sample
[
{
"code": "LASC",
"name": "Los Angeles Superior Court",
"county": "Los Angeles",
"title": "Los Angeles Superior Court",
"street": "123 Main St",
"city": "Los Angeles",
"state": "CA",
"zip": "90012"
}
]