POST api/profileinteraction/create
Request Information
URI Parameters
None.
Body Parameters
CreateProfileInteractionName | Description | Type | Additional information |
---|---|---|---|
AppAccessKey | string |
Required |
|
InteractionIdentity | string |
Required |
|
InteractionName | string |
Required |
|
AccountId | globally unique identifier |
Required |
|
ContactId | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{ "AppAccessKey": "sample string 1", "InteractionIdentity": "sample string 2", "InteractionName": "sample string 3", "AccountId": "428625b7-4247-450a-a755-39c3275930fb", "ContactId": "d9c16732-901c-40e0-82ce-58ef90918373" }
application/xml, text/xml
Sample:
<CreateProfileInteraction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SeeTheProWebAPI.Models"> <AccountId>428625b7-4247-450a-a755-39c3275930fb</AccountId> <AppAccessKey>sample string 1</AppAccessKey> <ContactId>d9c16732-901c-40e0-82ce-58ef90918373</ContactId> <InteractionIdentity>sample string 2</InteractionIdentity> <InteractionName>sample string 3</InteractionName> </CreateProfileInteraction>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ProfileInteractionName | Description | Type | Additional information |
---|---|---|---|
QRCodeUrl | string |
None. |
|
InteractionUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "QRCodeUrl": "sample string 1", "InteractionUrl": "sample string 2" }
application/xml, text/xml
Sample:
<ProfileInteraction xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SeeTheProWebAPI.Models"> <InteractionUrl>sample string 2</InteractionUrl> <QRCodeUrl>sample string 1</QRCodeUrl> </ProfileInteraction>