GET member_services/UDF/{code}

This method will return user defined fields corresponding to the requested member as they are defined in the database.

Requires: HTTPS, Basic Auth.

Return Codes:

OK - Request satisfied, data included in body.

Not Found - Member with supplied code could not be found

Request Information

Parameters

NameDescriptionAdditional information
code
Code of the required member

Define this parameter in the request URI.

Response Information

Response body formats

application/json, text/json

Sample:
[
  {
    "FieldName": "sample string 1",
    "FieldType": "sample string 2",
    "Value": {}
  },
  {
    "FieldName": "sample string 1",
    "FieldType": "sample string 2",
    "Value": {}
  },
  {
    "FieldName": "sample string 1",
    "FieldType": "sample string 2",
    "Value": {}
  }
]