POST api/profileinteraction/create
Request Information
URI Parameters
None.
Body Parameters
CreateProfileInteraction| Name | 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": "12fe1bec-c462-411c-82d3-a4551166ae0b",
"ContactId": "d0a68344-7282-4b95-b5ad-d8d53e2a84cf"
}
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>12fe1bec-c462-411c-82d3-a4551166ae0b</AccountId> <AppAccessKey>sample string 1</AppAccessKey> <ContactId>d0a68344-7282-4b95-b5ad-d8d53e2a84cf</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
ProfileInteraction| Name | 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>