Click or drag to resize

GetCustomFieldInDataAction Property

A simple query abstraction layer used to provide a mechanism by which methods can make simple query calls to various models.
* Required Property

Namespace: AppOne.Services.V2.Contracts
Assembly: AppOne.Web.Service (in AppOne.Web.Service.dll) Version: 1.0.141
Syntax
public DataAction DataAction { get; set; }

Property Value

DataAction
Remarks
The DataAction property is required to get results from GetCustomField(GetCustomFieldIn) method. Below is a list of the available DataAction name values that can used to return a dynamic results set

DataAction Names

NameDescriptionValues Example
SELECT-ALLReturns all custom fields in system regardless of any state.[ignored]
Example
JSON Request
{
    "AuthToken":"...",
    "DataAction":{
        "Name":"SELECT-ALL",
        "Values":[""]
    }
}
JSON Response
{
   "Report":    {
      "APIVersion": "2.0",
      "ProcessTime": "0.0698508",
      "RequestTime": "/Date(1489099438736-0700)/",
      "ResponseTime": "/Date(1489099438806-0700)/",
      "Results": 2
   },
   "Results":    [
            {
         "IsLL": false,
         "IsRequired": true,
         "Name": "Mobile Phone Provider",
         "Type": 0,
         "Value": ""
      },
            {
         "IsLL": false,
         "IsRequired": false,
         "Name": "License Type",
         "Type": 0,
         "Value": ""
      }
}
See Also