Retrieve a contact field

get

/api/REST/1.0/assets/contact/field/{id}

Retrieves the contact field specified by the id parameter.

Request

Supported Media Types
Path Parameters
Query Parameters
  • Level of detail returned by the request. Eloqua APIs can retrieve entities at three different levels of depth: minimal, partial, and complete. Any other values passed are reset to complete by default. For more information, see Request depth.
Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : ContactField
Type: object
Title: ContactField
Show Source

400 Response

Bad request. See Status Codes for information about other possible HTTP status codes.

401 Response

Unauthorized. See Status Codes for information about other possible HTTP status codes.

403 Response

Forbidden. See Status Codes for information about other possible HTTP status codes.

404 Response

The requested resource was not found. See Status Codes for information about other possible HTTP status codes.

500 Response

The service has encountered an error. See Status Codes for information about other possible HTTP status codes.
Back to Top

Examples

Retrieve the contact field asset with Id #100001:


GET /api/REST/1.0/assets/contact/field/100001?depth=complete
			

Response:


{
  "type": "ContactField",
  "id": "100001",
  "createdAt": "1547226540",
  "createdBy": "9",
  "depth": "complete",
  "name": "Shoe Size",
  "updatedAt": "1547226540",
  "updatedBy": "9",
  "dataType": "text",
  "displayType": "text",
  "internalName": "C_Shoe_Size1",
  "isReadOnly": "false",
  "isRequired": "false",
  "isStandard": "false",
  "isPopulatedInOutlookPlugin": "true",
  "showTrustedVisitorsOnly": "true",
  "updateType": "always"
}
			
Back to Top