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
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
Show Source
Nested Schema : CustomFieldValueLinkItems
Type: object
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