POST api/SendCustomerServiceIssue
Submits a Tessitura Customer Service Issue (CSI) to the account associated with the logged in session.
Request Information
URI Parameters
None.
Body Parameters
CSIRequestName | Description | Type | Additional information |
---|---|---|---|
SessionKey | string |
Required |
|
ContactMethod | integer |
Required |
|
Category | integer |
Required |
|
ActivityType | integer |
Required |
|
Origin | integer |
Required |
|
Notes | string | ||
Urgent | boolean |
Request Formats
application/json, text/json
Sample:
{ "SessionKey": "sample string 1", "ContactMethod": 2, "Category": 3, "ActivityType": 4, "Origin": 5, "Notes": "sample string 6", "Urgent": true }
application/xml, text/xml
Sample:
<CSIRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SFMOMA.Data.Entities.Account"> <ActivityType>4</ActivityType> <Category>3</Category> <ContactMethod>2</ContactMethod> <Notes>sample string 6</Notes> <Origin>5</Origin> <SessionKey>sample string 1</SessionKey> <Urgent>true</Urgent> </CSIRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
bool
ApiSuccessOfBooleanName | Description | Type | Additional information |
---|---|---|---|
Success | boolean | ||
Data | boolean |
Response Formats
application/json, text/json
Sample:
{ "Success": true, "Data": true }
application/xml, text/xml
Sample:
<ApiSuccessOfboolean xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SFMOMA.Data.Api"> <Data>true</Data> </ApiSuccessOfboolean>