The Get Recipient Info Local (GetRecipientInfoLocal) Data Block is an interface-type API call designed to retrieve recipient metadata from the Assette-hosted local database. It is commonly used to supply recipient-level information to the Recipient Master Data Block.
This block is configured as a read-only public block and returns data in a tabular (Data Table) format. It supports filtered queries based on recipient attributes, making it a flexible source of structured contact and demographic information. This block is typically used to:
- Filter recipient data by organization, account, or individual identifiers
- Retrieve structured recipient metadata from Assette’s internal data services
- Support other data blocks that require recipient context (e.g.,
RecipientMaster
)
Field | Value |
---|---|
Block Name | GetRecipientInfoLocal |
Block Category | Interface |
Block Type | API Call |
Output Type | Data Table |
Public Block | Yes |
Editable | No |
Dependencies #
None
Example Request #
{}
Example Response #
This example response has been truncated for brevity
{
"data": [
{
"RecipientCode": "Jonny Test",
"Country": null,
"Organization": null,
"OrganizationCode": null,
"AccountCode": "ASTGVEMODEL",
"FirstName": "Jonny",
"LastName": "Test",
"MiddleName": null,
"Email": "jonny.test@assette.com",
"Suffix": null,
"Designation": null,
"Telephone": "+123456789",
"EnvelopSalutation": null,
"LetterSalutation": null,
"Title": "Mr.",
"Address1": null,
"Address2": null,
"City": Boston,
"State": MA,
"Company": Assette,
"Zip": 12345
}
],
"errors": [],
"success": true,
"logs": [],
"sources": []
}