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": "67c3e8b6-6d4f-43f6-b611-4e548da101ca", "ContactId": "9c7baa63-0043-4d1e-b354-f039b7e0543f" }
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>67c3e8b6-6d4f-43f6-b611-4e548da101ca</AccountId> <AppAccessKey>sample string 1</AppAccessKey> <ContactId>9c7baa63-0043-4d1e-b354-f039b7e0543f</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>