Get a custom field value

get

/learn.rest/v1/memberships/{membershipId}/customerFieldValues/{customFieldValueId}

Request

Path Parameters
Security
Back to Top

Response

Supported Media Types

200 Response

Custom field fetched.
Body ()
Root Schema : CustomFieldValueResponse
Type: object
Response object for the custom field.
Show Source
Example:
{
    "application/json":{
        "id":"1",
        "customFieldId":"456",
        "customField":{
            "links":[
                {
                    "rel":"canonical",
                    "href":"{url}/learn.rest/v1/learnCenters/123/userCustomFields/456"
                }
            ]
        },
        "value":"User Custom Field Value",
        "links":[
            {
                "rel":"canonical",
                "href":"{url}/learn.rest/v1/learnCenters/456/userCustomFields/1"
            }
        ]
    }
}
Nested Schema : customField
Type: object
Custom Field object comprising the links to Custom field values.
Show Source
Nested Schema : CustomFieldValueLinkItems
Type: object
Custom Field Value Link Object. This object comprises links to the custom field values.
Show Source

401 Response

Authentication refused for provided credentials or the token is invalid.
Headers

404 Response

Resource not found.

500 Response

Internal server error.
Back to Top