/membervariablevalues/{id}
Returns a single Member Variable Value item based on the unique identifier for the item.
Resource URL
/v1/applications/{communityApiKeyName}/membervariablevalues/{id}
Note:
Use the appropriate regional endpoint to ensure that you comply with your organization's privacy policy, and applicable laws and regulations. For details about the available regional endpoints, and how to identify your organization's region, see API Access.
Available Methods
Method | Description |
---|---|
GET | Get a specific Member Variable Value. |
PUT | Modify an existing Member Variable Value. The PUT body must contain the entire entity in the request. |
PATCH | Modifies an existing Member Variable Value.
Only the fields that are being modified should be sent to the resource. The
PATCH syntax follows
RFC 6902.
Supported operations:
|
Field Descriptions
Field | Description |
---|---|
constraints
|
Specifies a set of behaviors that the
system will implement for a given Member Variable Value. Possible values are:
|
createDate
|
The date and timestamp the member value was created. |
createdBy
|
GUID of the user who created the value. |
description
|
A text description of the Member Variable Value where a richer description is necessary. |
href
|
The link to the member variable value. |
id
|
The system generated GUID of the Member Variable Value. |
key
|
The lower-cased, text representation of the value. |
lastUpdateDate
|
Date and timestamp (UTC) of when the value was last modified. |
lastUpdatedBy
|
GUID of the user who last updated the value. |
links
|
This field will always be empty. |
memberVariableId
|
GUID of the Member Variable that this Member Variable Value belongs to. |
order
|
An integer value that can be used to set and control explicit ordering of Member Variable Values. |
sequenceId
|
The system generated integer identifier for the Member Variable Value which is provided as an alternative to the GUID identifier. |
value
|
The case-preserved value. The value's type will depend on the datatype of the Member Variable that this Member Variable Value belongs to. |
GET Response Format |
---|
|
PUT requests
The following table describes the properties you can use to modify a Member Variable Value.
Property | Description |
---|---|
constraints
|
Specifies a set of behaviors that the
system will implement for a given Member Variable Value. For the most part,
these need not be adjusted from their defaults. For each supported constraint
in the collection, a boolean value is recorded.
|
description
|
A text description of the Member Variable Value where a richer description is necessary. |
id
|
The GUID identifier for a Member Variable
Value. This will be generated by the system upon creation and cannot be set or
modified.
Note: This field cannot be patched.
|
key
|
The lower-cased, text representation of the
value .
Tip: When patching the
key field, patch the
value field at the same time.
|
memberVariableId
|
Specifies the Member Variable that this
Member Variable Value belongs to.
Note: This field cannot be patched.
|
order
|
An integer value that can be used to set and control explicit ordering of Member Variable Values. |
sequenceId
|
The integer identifier for the Member
Variable Value which is provided as an alternative to the GUID identifier. It
will be unique only for Member Variables (not globally). This is generated by
the system upon creation and cannot be set nor modified.
Note: This field cannot be patched.
|
value
|
The case-preserved value. The value's type
will depend on the
datatype of the Member Variable that this
Member Variable Value belongs to.
|
Example: PUT /membervariablevalues/{id} |
---|
|
PATCH requests
The following table describes the properties you can use to modify a Member Variable Value.
Property | Description |
---|---|
constraints
|
Specifies a set of behaviors that the
system will implement for a given Member Variable Value. For the most part,
these need not be adjusted from their defaults. For each supported constraint
in the collection, a boolean value is recorded.
|
description
|
A text description of the Member Variable Value where a richer description is necessary. |
key
|
The lower-cased, text representation of the
value .
Tip: When patching the
key field, patch the
value field at the same time.
|
order
|
An integer value that can be used to set and control explicit ordering of Member Variable Values. |
value
|
The case-preserved value. The value's type
will depend on the
datatype of the Member Variable that this
Member Variable Value belongs to.
|
Example: PATCH /membervariablevalues/{id} |
---|
|