POST syncprofile
Request Information
URI Parameters
None.
Body Parameters
MauticPost| Name | Description | Type | Additional information |
|---|---|---|---|
| artistID | integer |
None. |
|
| string |
None. |
Request Formats
application/json, text/json
Sample:
{
"artistID": 1,
"email": "sample string 2"
}
text/html
Sample:
{"artistID":1,"email":"sample string 2"}
application/xml, text/xml
Sample:
<MauticPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KyckerWS.Models"> <artistID>1</artistID> <email>sample string 2</email> </MauticPost>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
WSMessageResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
|
| errorCode | integer |
None. |
|
| errorMessage | string |
None. |
|
| newInsertID | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"errorCode": 2,
"errorMessage": "sample string 3",
"newInsertID": 4
}
text/html
Sample:
{"success":true,"errorCode":2,"errorMessage":"sample string 3","newInsertID":4}
application/xml, text/xml
Sample:
<WSMessageResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/KyckerWS.Models"> <errorCode>2</errorCode> <errorMessage>sample string 3</errorMessage> <newInsertID>4</newInsertID> <success>true</success> </WSMessageResponse>