POST api/vspinteraction/create
Request Information
URI Parameters
None.
Body Parameters
CreateVspInteraction| Name | Description | Type | Additional information |
|---|---|---|---|
| AppAccessKey | string |
Required |
|
| InteractionIdentity | string |
Required |
|
| InteractionName | string |
Required |
|
| AccountId | globally unique identifier |
Required |
|
| ContactId | globally unique identifier |
Required |
|
| TenantKey | globally unique identifier |
None. |
|
| GroupKey | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"AppAccessKey": "sample string 1",
"InteractionIdentity": "sample string 2",
"InteractionName": "sample string 3",
"AccountId": "47521643-e44e-431e-9338-8ba6b603d310",
"ContactId": "8af406ab-98ae-4829-a01b-43116d58f745",
"TenantKey": "a0e6eb82-d478-4b42-b345-2b2ba31d4d8e",
"GroupKey": "450c192d-6d6d-457e-8bb3-6c5ba1769458"
}
application/xml, text/xml
Sample:
<CreateVspInteraction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SeeTheProWebAPI.Models"> <AccountId>47521643-e44e-431e-9338-8ba6b603d310</AccountId> <AppAccessKey>sample string 1</AppAccessKey> <ContactId>8af406ab-98ae-4829-a01b-43116d58f745</ContactId> <GroupKey>450c192d-6d6d-457e-8bb3-6c5ba1769458</GroupKey> <InteractionIdentity>sample string 2</InteractionIdentity> <InteractionName>sample string 3</InteractionName> <TenantKey>a0e6eb82-d478-4b42-b345-2b2ba31d4d8e</TenantKey> </CreateVspInteraction>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
VspInteraction| Name | Description | Type | Additional information |
|---|---|---|---|
| InteractionId | string |
None. |
|
| CampaignKey | string |
None. |
|
| InteractionUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"InteractionId": "sample string 1",
"CampaignKey": "sample string 2",
"InteractionUrl": "sample string 3"
}
application/xml, text/xml
Sample:
<VspInteraction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SeeTheProWebAPI.Models"> <CampaignKey>sample string 2</CampaignKey> <InteractionId>sample string 1</InteractionId> <InteractionUrl>sample string 3</InteractionUrl> </VspInteraction>