POST api/vspinteraction/create

Request Information

URI Parameters

None.

Body Parameters

CreateVspInteraction
NameDescriptionTypeAdditional 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": "3d04362f-7820-439c-97a6-df2a4b653e57",
  "ContactId": "47ed2aab-2b34-42d4-bd0a-4ed04e9194d4",
  "TenantKey": "2bb2db91-9ec5-4274-8183-c58184cc05a0",
  "GroupKey": "79a8dcfd-5bfe-4065-8e7a-3810f14c3730"
}

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>3d04362f-7820-439c-97a6-df2a4b653e57</AccountId>
  <AppAccessKey>sample string 1</AppAccessKey>
  <ContactId>47ed2aab-2b34-42d4-bd0a-4ed04e9194d4</ContactId>
  <GroupKey>79a8dcfd-5bfe-4065-8e7a-3810f14c3730</GroupKey>
  <InteractionIdentity>sample string 2</InteractionIdentity>
  <InteractionName>sample string 3</InteractionName>
  <TenantKey>2bb2db91-9ec5-4274-8183-c58184cc05a0</TenantKey>
</CreateVspInteraction>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

VspInteraction
NameDescriptionTypeAdditional 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>