How To Request Raw Vendor Objects
February 1, 2023
💡 Return the vendor's original "raw" object when calling most of Unified's APIs
While Unified.to abstracts all of the integration's objects into common objects, you can still request that the original object.
NOTE: This "raw" parameter is only available on paid plans.
REST
Simply include a fields=raw
parameter in your request.
GET /crm/123456789/contacts?fields=raw
The result will also include a field named raw
that will contain the original vendor's object. You can add more field names in there as well (comma-delimited) and only those fields will be returned.
gRPC
Simply include fields:"raw"
in the options.
{
fields: "raw"
}
GraphQL
Coming soon...