This method returns a comma-separated list of the valid values for a given field in the constituent record, if a list of valid values is defined. For fields which do not have a range of predefined values, this method returns an empty result set. For Date attributes, this method returns a list of valid Years.
Client Servlet | Server Servlet | HTTP Methods Supported | Requires Authentication |
---|---|---|---|
CRConsAPI | SRConsAPI | GET, POST | Server. |
See topic Common Parameters.
Required. Specifies the name of the constituent field for which to return the possible values.
Type xsd:string.
See topic Common Parameters.
Required. Specifies the name of the constituent field for which to return the possible values.
Type xsd:string.
See topic HTTP Status Codes.
XML response<?xml version="1.0" encoding="UTF-8"?> <listConsFieldChoicesResponse xsi:schemaLocation="http://convio.com/crm/v1.0 http://service.convio.net/xmlschema/crm.public.v1.xsd" xmlns="http://convio.com/crm/v1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <choice>Mr.</choice> <choice>Ms.</choice> <choice>Mrs.</choice> <choice>Miss</choice> <choice>Dr.</choice> </listConsFieldChoicesResponse>JSON response
{"listConsFieldChoicesResponse":{"choice":["Mr.","Ms.","Mrs.","Miss","Dr."]}}