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": "60f3a6c5-33ad-4405-9b59-a9a2a93cea8c",
"ContactId": "2efaabbd-9023-498b-973e-012706879c22"
}
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>60f3a6c5-33ad-4405-9b59-a9a2a93cea8c</AccountId> <AppAccessKey>sample string 1</AppAccessKey> <ContactId>2efaabbd-9023-498b-973e-012706879c22</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>