GET api/GetEntityValueByField?FieldName={FieldName}&ClientId={ClientId}&SnapshotStartDate={SnapshotStartDate}&SnapshotEndDate={SnapshotEndDate}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| FieldName | string |
Required |
|
| ClientId | integer |
Required |
|
| SnapshotStartDate | string |
None. |
|
| SnapshotEndDate | string |
None. |
Body Parameters
None.
Response Information
Resource Description
ApiResponseOfComonModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | Collection of ComonModel |
None. |
|
| Success | boolean |
None. |
|
| Message | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": [
{
"Value": "sample string 1",
"Text": "sample string 2"
},
{
"Value": "sample string 1",
"Text": "sample string 2"
}
],
"Success": true,
"Message": [
"sample string 1",
"sample string 2"
]
}