POST api/Email/GetAppConfigDetails
Request Information
URI Parameters
None.
Body Parameters
GetAppConfig| Name | Description | Type | Additional information |
|---|---|---|---|
| ACF_ID | integer |
None. |
|
| ACF_MODULE | string |
None. |
|
| ACF_PROGRAM_ID | string |
None. |
|
| ACF_PARAMETER | string |
None. |
|
| START | integer |
None. |
|
| LENGTH | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ACF_ID": 1,
"ACF_MODULE": "sample string 1",
"ACF_PROGRAM_ID": "sample string 2",
"ACF_PARAMETER": "sample string 3",
"START": 1,
"LENGTH": 1
}
application/xml, text/xml
Sample:
<GetAppConfig xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZealitAPI.Models"> <ACF_ID>1</ACF_ID> <ACF_MODULE>sample string 1</ACF_MODULE> <ACF_PARAMETER>sample string 3</ACF_PARAMETER> <ACF_PROGRAM_ID>sample string 2</ACF_PROGRAM_ID> <LENGTH>1</LENGTH> <START>1</START> </GetAppConfig>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of GetAppConfigDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| ACF_ID | integer |
None. |
|
| ACF_MODULE | string |
None. |
|
| ACF_PROGRAM_ID | string |
None. |
|
| ACF_PARAMETER | string |
None. |
|
| ACF_DESCRIPTION | string |
None. |
|
| ACF_VALUE | string |
None. |
|
| ACF_NOTES | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ACF_ID": 1,
"ACF_MODULE": "sample string 1",
"ACF_PROGRAM_ID": "sample string 2",
"ACF_PARAMETER": "sample string 3",
"ACF_DESCRIPTION": "sample string 4",
"ACF_VALUE": "sample string 5",
"ACF_NOTES": "sample string 6"
},
{
"ACF_ID": 1,
"ACF_MODULE": "sample string 1",
"ACF_PROGRAM_ID": "sample string 2",
"ACF_PARAMETER": "sample string 3",
"ACF_DESCRIPTION": "sample string 4",
"ACF_VALUE": "sample string 5",
"ACF_NOTES": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfGetAppConfigDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ZealitAPI.Models">
<GetAppConfigDetails>
<ACF_DESCRIPTION>sample string 4</ACF_DESCRIPTION>
<ACF_ID>1</ACF_ID>
<ACF_MODULE>sample string 1</ACF_MODULE>
<ACF_NOTES>sample string 6</ACF_NOTES>
<ACF_PARAMETER>sample string 3</ACF_PARAMETER>
<ACF_PROGRAM_ID>sample string 2</ACF_PROGRAM_ID>
<ACF_VALUE>sample string 5</ACF_VALUE>
</GetAppConfigDetails>
<GetAppConfigDetails>
<ACF_DESCRIPTION>sample string 4</ACF_DESCRIPTION>
<ACF_ID>1</ACF_ID>
<ACF_MODULE>sample string 1</ACF_MODULE>
<ACF_NOTES>sample string 6</ACF_NOTES>
<ACF_PARAMETER>sample string 3</ACF_PARAMETER>
<ACF_PROGRAM_ID>sample string 2</ACF_PROGRAM_ID>
<ACF_VALUE>sample string 5</ACF_VALUE>
</GetAppConfigDetails>
</ArrayOfGetAppConfigDetails>