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": "6925ebd4-125d-4338-a736-99f4b5bcb3d7",
"ContactId": "3d6ab237-6e5e-4e4a-b76a-4ebe7d89b9e0",
"TenantKey": "f4528424-7736-4037-8c10-45fe6f1f5754",
"GroupKey": "fbd003c1-c221-4316-8569-b66b1a48d66c"
}
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>6925ebd4-125d-4338-a736-99f4b5bcb3d7</AccountId> <AppAccessKey>sample string 1</AppAccessKey> <ContactId>3d6ab237-6e5e-4e4a-b76a-4ebe7d89b9e0</ContactId> <GroupKey>fbd003c1-c221-4316-8569-b66b1a48d66c</GroupKey> <InteractionIdentity>sample string 2</InteractionIdentity> <InteractionName>sample string 3</InteractionName> <TenantKey>f4528424-7736-4037-8c10-45fe6f1f5754</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>