FillInPhrases.GetAll
Try it in Swagger
Endpoint
- Method:
GET
- Route:
FillInPhrases/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. |
Query Parameters
| Field |
Type |
Required |
Notes |
appliesToField |
int? |
No |
Query string value. |
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<FillInPhraseDto>
| Field |
Type |
Max Length |
Notes |
code |
int |
|
|
phrase |
string |
|
|
appliesToField |
int |
|
|
Response Sample
[
{
"code": 123,
"phrase": "Please call before attempting service.",
"appliesToField": 123
}
]