POST api/variables/select
Retrieves a list of variables that match the given criteria.
Request Information
URI Parameters
None.
Body Parameters
The criteria model to retrieve variables for.
VariablesFilterCriteriaDto| Name | Description | Type | Additional information |
|---|---|---|---|
| TemplateId | globally unique identifier |
None. |
|
| StepId | globally unique identifier |
None. |
|
| TenantId | globally unique identifier |
None. |
|
| ProfileField | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"TemplateId": "f5981f9a-20e0-407a-ad26-ceee078f64c0",
"StepId": "578dc364-619e-423d-a61e-473ee2b1fa88",
"TenantId": "4337e3f1-3022-4aaf-be9a-ceb6406bfef1",
"ProfileField": "sample string 1"
}
application/xml, text/xml
Sample:
<VariablesFilterCriteriaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Aardvark.Template.Models.FilterCriteria"> <ProfileField>sample string 1</ProfileField> <StepId>578dc364-619e-423d-a61e-473ee2b1fa88</StepId> <TemplateId>f5981f9a-20e0-407a-ad26-ceee078f64c0</TemplateId> <TenantId>4337e3f1-3022-4aaf-be9a-ceb6406bfef1</TenantId> </VariablesFilterCriteriaDto>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.