Release Notes
February 17, 2026
February 17, 2026 Karbon API release introduces the ability to return Karbon for Clients access details for Contacts
API Changes
Retrieve Client Access Details for a Contact
You can now retrieve a list of clients a Contact has access to in Karbon for Clients along with the access level that has been granted.
Note that ClientAccess is a read-only property and access to Karbon for Clients cannot be created or removed via the API.
To use this feature, include the querystring parameter
JSONCopied!
=ClientAccessJSONCopied!
GETJSONCopied!
/v3/Contacts/{ContactKey}For example, a request to
JSONCopied!
/v3/Contacts/X2C4ffW1Fqv?$expand=ClientAccessJSONCopied!
ClientAccessJSONCopied!"ClientAccess": [
{
"ClientKey": "26L7dsVZ5DzR",
"ClientType": "Contact",
"AccessLevel": "Limited"
},
{
"ClientKey": "4FVM9lWhb4mp",
"ClientType": "Organization",
"AccessLevel": "FullAccess"
}
]
Based on this response, you can see that the contact
JSONCopied!
X2C4ffW1FqvJSONCopied!
26L7dsVZ5DzRJSONCopied!
4FVM9lWhb4mpThe
JSONCopied!
AccessLevelJSONCopied!
LimitedJSONCopied!
FullAccess