GetAddressList
Retrieves information about a specific address list.
Proto Definition
message QueryGetAddressListRequest {
string listId = 1; // ID of address list to retrieve
}
message QueryGetAddressListResponse {
AddressList list = 1;
}
message AddressList {
string listId = 1; // Unique identifier for the address list
repeated string addresses = 2; // List of addresses included in the list
bool whitelist = 3; // Whether list includes (true) or excludes (false) specified addresses
string uri = 4; // URI providing metadata, if applicable
string customData = 5; // Custom arbitrary data or additional information
string createdBy = 6; // The user or entity who created the address list
}Usage Example
Response Example
Last updated