Search found 1 match

by seanpsullivan68
Wed Nov 14, 2012 4:47 pm
Forum: Using OpenEMM
Topic: agnUID -> customer_id ?
Replies: 3
Views: 4490

Re: agnUID -> customer_id ?

the agnUID is simply a base36 encoded representation that includes the following:

Company_ID
Mailing_ID
Customer_ID
URL_ID
Signature_ID

here is a quick perl diddy to decode:

#!/usr/bin/perl

use Math::Base36 ':all';

my $agnUID = 'PLACE agnUID Here';

my ($company_id, $mailing_id, $customerID ...