Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Status
colourGreen
titlePOST

Service URLmember.asmx

 

 

Member web servisini kullanarak, üye listesine yeni üye ekleme, varolan üyeleri güncelleme, üyeleri sorgulama, üyenin dahil olduğu listeleri çekme gibi işlemler uygulayabilirsiniz.

Member web servisine ait aşağıda ki metodlar bulunmaktadır.

 

MethodDescription
AddToAllListsAdds the member defined by Key and Value pairs to all Interest Lists.
AddToSendListsAdds the member defined by Key and Value pairs to Interest Lists.
InsertMemberDemographyInsert/Update the member’s demographic information. The member is defined by Key and Value pair.
QueryCampaignsBetweenDatesFetches the campaigns and results for the specified member between specific dates.
QueryMemberDemographyQueries the member’s demographic information. The member is defined by Key and Value pair.
QueryMemberIDQueries 32-char ID of a member based on Key and Value pair.
QuerySendListsQueries the member’s send lists. The member is defined by Key and Value pair.
RemoveFromSendListsRemoves the member from Interest Lists. The member is defined by Key and Value pair.
SendOngoingEMailInserts/Updates the member’s demographic information and Sends and Ongoing Email template to the client. The member is defined by Key and Value pair.
SendOngoingSmsInserts/Updates the member’s demographic information and Sends and Ongoing SMS template to the Client. The member is defined by Key and Value pair.
UpdateMemberDemographyInserts/Updates the member’s demographic information. The member is defined by Key and Value pair.

 

 

Warning

Geliştiricinin her hangi bir web servis ile etkileşime geçebilmesi için, öncelikle Login metodunu kullanarak bir 

Status
subtletrue
colourRed
title Service Ticket
 alması gerekir. Diğer web servis ve metodlarına yaratmış olduğu bu değer ile istekte bulunabilir.

 


AddToAllLists 
Anchor
addtoalllists
addtoalllists

<AddToAllLists>
Belli bir kullanıcıyı tüm listelere ekler.

Parametreler

 

ParametreDeğer 
ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket

Status
colourGreen
titlezorunlu

KeyEMAIL, MEMBER_ID veya Related Marketing Cloud yönetim panelinde tanımlanmış, dilediğiniz her hangi bir alan adı.

Status
colourGreen
titlezorunlu

ValueKey alanında belirtilen alan adının değeri.

Status
colourGreen
titlezorunlu

Code Block
languagexml
titleORNEK REQUEST
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <AddToAllLists xmlns="http://ws.euromsg.com/member">
            <ServiceTicket>string</ServiceTicket>
            <Key>string</Key>
            <Value>string</Value>
        </AddToAllLists>
    </soap:Body>
</soap:Envelope> 
Code Block
languagexml
titleORNEK RESPONSE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
        <AddToAllListsResponse xmlns="http://ws.euromsg.com/member">
            <AddToAllListsResult>
                <Code>00</Code>
                <Message />
                <DetailedMessage />
            </AddToAllListsResult>
        </AddToAllListsResponse>
    </soap:Body>
</soap:Envelope> 
Tip
Başarılı istek durumunda 
Status
subtletrue
colourRed
title<Code>
 parametresi
Status
subtletrue
colourRed
title00
olarak cevap döner.

Hata Parametreleri

 

CodeMessageDetailedMessageAçıklama
9998No session. Please try re-logon. Login metodu çalıştırılmamış. Aktif oturum yok.
99No such member! Kullanıcı sistemde bulunmuyor.

 


AddToSendLists 
Anchor
addtosendlist
addtosendlist

<AddToSendLists>
Belli bir kullanıcıyı belirtilen listelere ekler.

Parametreler

 

ParametreDeğer 
ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket

Status
colourGreen
titlezorunlu

KeyEMAIL, MEMBER_ID veya Related Marketing Cloud yönetim panelinde tanımlanmış, dilediğiniz her hangi bir alan adı.

Status
colourGreen
titlezorunlu

ValueKey alanında belirtilen alan adının değeri.

Status
colourGreen
titlezorunlu

SendListsEmSendList dizisi ile birden fazla liste belirtilebilir.

Status
colourGreen
titlezorunlu

Movetrue gönderilmesi durumunda, SendLists dizisinde yer almayan listelerden çıkarır.

Status
colourGreen
titlezorunlu

Code Block
languagexml
titleORNEK REQUEST
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <AddToSendLists xmlns="http://ws.euromsg.com/member">
            <ServiceTicket>string</ServiceTicket>
            <Key>string</Key>
            <Value>string</Value>
            <SendLists>
                <EmSendList>
                    <ListName>string</ListName>
                    <GroupName>string</GroupName>
                </EmSendList>
                <EmSendList>
                    <ListName>string</ListName>
                    <GroupName>string</GroupName>
                </EmSendList>
            </SendLists>
            <Move>boolean</Move>
        </AddToSendLists>
    </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleORNEK RESPONSE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
        <AddToSendListsResponse xmlns="http://ws.euromsg.com/member">
            <AddToSendListsResult>
                <Code>00</Code>
                <Message />
                <DetailedMessage />
            </AddToSendListsResult>
        </AddToSendListsResponse>
    </soap:Body>
</soap:Envelope>
Tip
Başarılı istek durumunda 
Status
subtletrue
colourRed
title<Code>
 parametresi
Status
subtletrue
colourRed
title00
olarak cevap döner.

Hata Parametreleri

 

CodeMessageDetailedMessageAçıklama
9998No session. Please try re-logon. Login metodu çalıştırılmamış. Aktif oturum yok.
99The list or lists you provided are not valid! Belirtilen liste bulunamadı.

 


InsertMemberDemography 
Anchor
insertmember
insertmember

 

<InsertMemberDemography>
Yeni üyeyi, demografik bilgileri ile ekler.

Parametreler

 

ParametreDeğer 
ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket

Status
colourGreen
titlezorunlu

KeyEMAIL, MEMBER_ID veya Related Marketing Cloud yönetim panelinde tanımlanmış, dilediğiniz her hangi bir alan adı.

Status
colourGreen
titlezorunlu

ValueKey alanında belirtilen alan adının değeri.

Status
colourGreen
titlezorunlu

DemograficDataEmKeyValue dizisi ile üyeye ait alanlar belirlenir.

Status
colourGreen
titlezorunlu

ForceUpdateÜye sistemde var ise, true değeri gönderilmesi durumunda, varolan üye güncellenir.

Status
colourGreen
titlezorunlu

Note
Ad, Soyad gibi alanlar Related Marketing Cloud platformu üzerinden ayarlanır.

Statik Alanlar

 

Field NameDescription
EMAILEmail address
STATUSMember Status. A: Active, P: Passive
EMAIL_PERMITEmail opt-in. Y: Yes, N: No
GSM_PERMITSMS opt-in. Y: Yes, N: No
FAX_PERMITFAX opt-in. Y: Yes, N: No
CALL_PERMITCall Center opt-in. Y: Yes, N: No
PRINT_PERMITPrint opt-in. Y: Yes, N: No
REFERRALReferral Address
REFERRAL_DOMAINReferral Domain
Code Block
languagexml
titleORNEK REQUEST
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <InsertMemberDemography xmlns="http://ws.euromsg.com/member">
            <ServiceTicket>string</ServiceTicket>
            <Key>string</Key>
            <Value>string</Value>
            <DemograficData>
                <EmKeyValue>
                    <Key>string</Key>
                    <Value>string</Value>
                </EmKeyValue>
                <EmKeyValue>
                    <Key>string</Key>
                    <Value>string</Value>
                </EmKeyValue>
            </DemograficData>
            <ForceUpdate>boolean</ForceUpdate>
        </InsertMemberDemography>
    </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleORNEK RESPONSE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
        <InsertMemberDemographyResponse xmlns="http://ws.euromsg.com/member">
            <InsertMemberDemographyResult>
                <Code>00</Code>
                <Message />
                <DetailedMessage />
            </InsertMemberDemographyResult>
            <MemberID>B04314B832A549A3B92A11153D1F7BA9</MemberID>
        </InsertMemberDemographyResponse>
    </soap:Body>
</soap:Envelope>
Tip
Başarılı istek durumunda 
Status
subtletrue
colourRed
title<Code>
 parametresi
Status
subtletrue
colourRed
title00
olarak cevap döner. Buna ek olarak yeni eklenen veya güncellenen üyenin 
Status
subtletrue
colourRed
titleMemberID
 alanı döner.

Hata Parametreleri

 

CodeMessageDetailedMessageAçıklama
9998No session. Please try re-logon. Login metodu çalıştırılmamış. Aktif oturum yok.
99Member already exists. No insertion will be done! ForceUpdate false ise ve kullanıcı sistemde yer alıyorsa alınan hatadır.

 


QueryCampaignsBetweenDates 
Anchor
querycampaigndates
querycampaigndates

<QueryCampaignsBetweenDates>
Üyenin belirtilen tarih aralığında aldığı kampanya bilgilerini gösterir.

Parametreler

 

ParametreDeğer 
ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket

Status
colourGreen
titlezorunlu

KeyEMAIL, MEMBER_ID veya Related Marketing Cloud yönetim panelinde tanımlanmış, dilediğiniz her hangi bir alan adı.

Status
colourGreen
titlezorunlu

ValueKey alanında belirtilen alan adının değeri.

Status
colourGreen
titlezorunlu

BeginDateBaşlangıç Tarihi. yyyy-MM-dd HH:mm:ss veya yyyyMMdd HH:mm:ss

Status
colourGreen
titlezorunlu

EndDateBitiş Tarihi. yyyy-MM-dd HH:mm:ss veya yyyyMMdd HH:mm:ss

Status
colourGreen
titlezorunlu

Code Block
languagexml
titleORNEK REQUEST
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <QueryCampaignsBetweenDates xmlns="http://ws.euromsg.com/member">
            <ServiceTicket>string</ServiceTicket>
            <Key>string</Key>
            <Value>string</Value>
            <BeginDate>string</BeginDate>
            <EndDate>string</EndDate>
        </QueryCampaignsBetweenDates>
    </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleORNEK RESPONSE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <QueryCampaignsBetweenDatesResponse
            xmlns="http://ws.euromsg.com/member">
            <QueryCampaignsBetweenDatesResult>
                <Code>00</Code>
                <Message />
                <DetailedMessage />
            </QueryCampaignsBetweenDatesResult>
            <CampaignResults>
                <EmCampaignResult>
                    <CampaignId>string</CampaignId>
                    <CampaignName>string</CampaignName>
                    <DeliveryStatus>string</DeliveryStatus>
                    <DeliveryDate>string</DeliveryDate>
                    <ChannelAddress>string</ChannelAddress>
                    <ChannelType>string</ChannelType>
                    <SentTime>string</SentTime>
                    <Subject>string</Subject>
                    <CampaignMessage>string</CampaignMessage>
                </EmCampaignResult>
                <EmCampaignResult>
                    <CampaignId>string</CampaignId>
                    <CampaignName>string</CampaignName>
                    <DeliveryStatus>string</DeliveryStatus>
                    <DeliveryDate>string</DeliveryDate>
                    <ChannelAddress>string</ChannelAddress>
                    <ChannelType>string</ChannelType>
                    <SentTime>string</SentTime>
                    <Subject>string</Subject>
                    <CampaignMessage>string</CampaignMessage>
                </EmCampaignResult>
            </CampaignResults>
        </QueryCampaignsBetweenDatesResponse>
    </soap:Body>
</soap:Envelope>
Tip
Başarılı istek durumunda 
Status
subtletrue
colourRed
title<code>
 parametresi
Status
subtletrue
colourRed
title00
olarak cevap döner.
Delivery StatusRD : Read, HU : hard-undelivered, SU : Soft Undelivered

Status
colourGreen
titleemail

Delivery StatusRelayed To Operator, Relayed To Gsm, Delivered, Error_Message, Unexpected Error

Status
colourGreen
titleSMS

 

Hata Parametreleri

 

CodeMessageDetailedMessageAçıklama
9998No session. Please try re-logon. Login metodu çalıştırılmamış. Aktif oturum yok.
99Not a valid Date! Belirtilen tarih formatı geçersiz.

 


QueryMemberId 
Anchor
memberid
memberid

<QueryMemberID>
Belli bir üyeye ait 32 karakterlik ID’yi döndürür.

Parametreler

 

ParametreDeğer 
ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket

Status
colourGreen
titlezorunlu

KeyEMAIL, MEMBER_ID veya Related Marketing Cloud yönetim panelinde tanımlanmış, dilediğiniz her hangi bir alan adı.

Status
colourGreen
titlezorunlu

ValueKey alanında belirtilen alan adının değeri.

Status
colourGreen
titlezorunlu

Code Block
languagexml
titleORNEK REQUEST
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <QueryMemberID xmlns="http://ws.euromsg.com/member">
            <ServiceTicket>string</ServiceTicket>
            <Key>string</Key>
            <Value>string</Value>
        </QueryMemberID>
    </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleORNEK RESPONSE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
        <QueryMemberIDResponse xmlns="http://ws.euromsg.com/member">
            <QueryMemberIDResult>
                <Code>00</Code>
                <Message />
                <DetailedMessage />
            </QueryMemberIDResult>
            <MemberID>D67C7F1655E34F3B8B1DA9BD55C8F4C8</MemberID>
        </QueryMemberIDResponse>
    </soap:Body>
</soap:Envelope>
Tip
Başarılı istek durumunda 
Status
subtletrue
colourRed
title<Code>
 parametresi
Status
subtletrue
colourRed
title00
olarak cevap döner. Buna ek olarak yeni eklenen veya güncellenen üyenin 
Status
subtletrue
colourRed
titleMemberID
 alanı döner.

Hata Parametreleri

 

CodeMessageDetailedMessageAçıklama
9998No session. Please try re-logon. Login metodu çalıştırılmamış. Aktif oturum yok.
99No such member! Key parametresinde gönderilen değere göre bir kayıt mevcut değil.

 

QuerySendLists 

QuerySendLists 
Anchor
querysendlists
querysendlists

<QuerySendLists>
Belli bir üyenin bulunduğu listeleri gösterir.

Parametreler

 

ParametreDeğer 
ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket

Status
colourGreen
titlezorunlu

KeyEMAIL, MEMBER_ID veya Related Marketing Cloud yönetim panelinde tanımlanmış, dilediğiniz her hangi bir alan adı.

Status
colourGreen
titlezorunlu

ValueKey alanında belirtilen alan adının değeri.

Status
colourGreen
titlezorunlu

Code Block
languagexml
titleORNEK REQUEST
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <QuerySendLists xmlns="http://ws.euromsg.com/member">
            <ServiceTicket>string</ServiceTicket>
            <Key>string</Key>
            <Value>string</Value>
        </QuerySendLists>
    </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleORNEK RESPONSE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
        <QuerySendListsResponse
            xmlns="http://ws.euromsg.com/member">
            <QuerySendListsResult>
                <Code>00</Code>
                <Message />
                <DetailedMessage />
            </QuerySendListsResult>
            <Lists>
                <EmSendList>
                    <ListName>E-Bülten</ListName>
                    <GroupName>Genel</GroupName>
                </EmSendList>
                <EmSendList>
                    <ListName>Test Grubu</ListName>
                    <GroupName>Genel</GroupName>
                </EmSendList>
                <EmSendList>
                    <ListName>HelloList</ListName>
                    <GroupName>Genel</GroupName>
                </EmSendList>
            </Lists>
        </QuerySendListsResponse>
    </soap:Body>
</soap:Envelope>
Tip
Başarılı istek durumunda 
Status
subtletrue
colourRed
title<code>
 parametresi
Status
subtletrue
colourRed
title00
olarak cevap döner.

Hata Parametreleri

 

CodeMessageDetailedMessageAçıklama
9998No session. Please try re-logon. Login metodu çalıştırılmamış. Aktif oturum yok.
99No such member! Belirtilen tarih formatı geçersiz.

 


RemoveFromSendLists 
Anchor
removefrom
removefrom

<RemoveFromSendLists>
Belli bir üyeyi belli bir listeden çıkartır.

Parametreler

 

ParametreDeğer 
ServiceTicketLogin aksiyonu ile elde edilen ServiceTicket

Status
colourGreen
titlezorunlu

KeyEMAIL, MEMBER_ID veya Related Marketing Cloud yönetim panelinde tanımlanmış, dilediğiniz her hangi bir alan adı.

Status
colourGreen
titlezorunlu

ValueKey alanında belirtilen alan adının değeri.

Status
colourGreen
titlezorunlu

SendListsÜyenin çıkarılacağı liste adları.

Status
colourGreen
titlezorunlu

DeleteIfInNoList
Warning
true gönderildiği taktirde, üyeyi belirtilen listeden çıkardıktan sonra, üye her hangi bir listede bulunmuyorsa, tamamen veritabanından silinir.!

 

Status
colourGreen
titlezorunlu

Code Block
languagexml
titleORNEK REQUEST
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
    <soap:Body>
        <RemoveFromSendLists xmlns="http://ws.euromsg.com/member">
            <ServiceTicket>string</ServiceTicket>
            <Key>string</Key>
            <Value>string</Value>
            <SendLists>
                <EmSendList>
                    <ListName>string</ListName>
                    <GroupName>string</GroupName>
                </EmSendList>
                <EmSendList>
                    <ListName>string</ListName>
                    <GroupName>string</GroupName>
                </EmSendList>
            </SendLists>
            <DeleteIfInNoList>boolean</DeleteIfInNoList>
        </RemoveFromSendLists>
    </soap:Body>
</soap:Envelope>
Code Block
languagexml
titleORNEK RESPONSE
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope
    xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
        <RemoveFromSendListsResponse
            xmlns="http://ws.euromsg.com/member">
            <RemoveFromSendListsResult>
                <Code>00</Code>
                <Message />
                <DetailedMessage />
            </RemoveFromSendListsResult>
        </RemoveFromSendListsResponse>
    </soap:Body>
</soap:Envelope>
Tip
Başarılı istek durumunda 
Status
subtletrue
colourRed
title<code>
 parametresi
Status
subtletrue
colourRed
title00
olarak cevap döner.

Hata Parametreleri

 

CodeMessageDetailedMessageAçıklama
9998No session. Please try re-logon. Login metodu çalıştırılmamış. Aktif oturum yok.
99No such member! Belirtilen tarih formatı geçersiz.
99The list or lists you provided are not valid! Geçersiz liste adı.

 


SendOngoingEmail

<SendOngoingEMail>
Üye’nin demografik bilgilerini günceller, sistemde yer almıyorsa ekler ve sonunda bir email kampanyası tetikler.

Parametreler

 

ParametreDeğer 
ServiceTicketLogin aksiyonu ile elde edilen ServiceTicketZORUNLU
KeyEMAIL, MEMBER_ID veya Related Marketing Cloud yönetim panelinde tanımlanmış, dilediğiniz her hangi bir alan adı.ZORUNLU
ValueKey alanında belirtilen alan adının değeri.ZORUNLU
DemograficDataEmKeyValue dizisi ile üyeye ait alanlar belirlenir.ZORUNLU
ForceUpdateÜye sistemde var ise, true değeri gönderilmesi durumunda, varolan üye güncellenir.ZORUNLU
OngoingCampaignIdÜyeye gönderilecek olan kampanya ID’si.ZORUNLU
Note
Ad, Soyad gibi alanlar Related Marketing Cloud platformu üzerinden ayarlanır.

Statik Alanlar

 

Alan AdıAçıklama
EMAILEmail adresi
STATUSÜye durumu. A : Aktif, P : Pasif
EMAIL_PERMITEmail izin durumu. Y : Evet, N : Hayır
GSM_PERMITSMS izin durumu. Y : Evet, N : Hayır
FAX_PERMITFAX izin durumu. Y : Evet, N : Hayır
CALL_PERMITCall Center izin durumu. Y : Evet, N : Hayır
PRINT_PERMITPrint izin durumu. Y : Evet, N : Hayır
REFERRALReferans adresi
REFERRAL_DOMAINReferans domain