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": "05f108e1-867e-4e31-86c5-de40748fe7d9",
"ContactId": "cce9c99c-27e3-4b47-90f5-d724ad36c509"
}
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>05f108e1-867e-4e31-86c5-de40748fe7d9</AccountId> <AppAccessKey>sample string 1</AppAccessKey> <ContactId>cce9c99c-27e3-4b47-90f5-d724ad36c509</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>