Subscriber Persona
Last Modified on 11/22/2016 4:19 pm EST
Element List
Data Element |
Type |
Length |
Conditional? |
Description |
subscriber_email |
String |
-1 |
True |
Subscriber Email Address |
subscriber_id |
Int |
|
True |
Unique Subscriber ID |
remote_id |
String |
50 |
True |
Subscriber ID for the remote system |
type_id |
int |
|
True |
Unique Score Type ID |
type_name |
string |
255 |
True |
Score type name |
description |
string |
2000 |
True |
Score name |
score_id |
int |
|
True |
Score description |
Request
<GridRequest xmlns="http://partner.informz.net/aapi/2009/08/"> <Password>password</Password>
<Brand id="9999">Test Brand</Brand>
<User></User>
<Grids>
<Grid type="subscriber_persona">
<Conditions>
<Condition>
<Single>
<DataElement>subscriber_id</DataElement>
<DataValue>500970706</DataValue>
<Comparator>EQ</Comparator>
</Single>
</Condition>
</Conditions>
<ReturnFields>
<DataElement>subscriber_email</DataElement>
<DataElement>subscriber_id</DataElement>
<DataElement>remote_id</DataElement>
<DataElement>type_id</DataElement>
<DataElement>type_name</DataElement>
<DataElement>description</DataElement>
<DataElement>score_id</DataElement>
</ReturnFields>
</Grid>
</Grids>
</GridRequest>
Response
<?xml version="1.0" encoding="utf-8"?>
<GridResponse xmlns="http://partner.informz.net/aapi/2009/08/">
<Brand id="9999">Test Brand</Brand>
<User></User>
<Grids>
<Grid type="subscriber_persona">
<Record row="1">
<Fields>
<Field element="subscriber_email">crazyladydeb@juno.com</Field>
<Field element="subscriber_id">500970706</Field>
<Field element="remote_id" />
<Field element="type_id">2</Field>
<Field element="type_name">Persona</Field>
<Field element="description">Subscribers who do not match another Persona Type</Field>
<Field element="score_id">12241</Field>
</Fields>
</Record>
</Grid>
</Grids>
</GridResponse>