POST api/MobileApp/sendInvoiceVoiceCommandSender

Request Information

URI Parameters

None.

Body Parameters

ExecuteWorkflowDto
NameDescriptionTypeAdditional information
SchemaName

string

None.

CompanyId

decimal number

None.

WorkflowId

string

None.

Prompt

string

None.

Request Formats

application/json, text/json

Sample:
{
  "SchemaName": "sample string 1",
  "CompanyId": 2.0,
  "WorkflowId": "sample string 3",
  "Prompt": "sample string 4"
}

application/xml, text/xml

Sample:
<ExecuteWorkflowDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.ExternalSevices.IsNet">
  <CompanyId>2</CompanyId>
  <Prompt>sample string 4</Prompt>
  <SchemaName>sample string 1</SchemaName>
  <WorkflowId>sample string 3</WorkflowId>
</ExecuteWorkflowDto>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ExecuteWorkflowDto'.

Response Information

Resource Description

SendInvoiceVoiceCommandSenderResponse
NameDescriptionTypeAdditional information
Data

string

None.

Message

string

None.

EventId

string

None.

Success

boolean

None.

StatusCode

integer

None.

Result

ResultType

None.

ErrorMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Data": "sample string 1",
  "Message": "sample string 2",
  "EventId": "sample string 3",
  "Success": true,
  "StatusCode": 5,
  "Result": 0,
  "ErrorMessage": "sample string 6"
}

application/xml, text/xml

Sample:
<SendInvoiceVoiceCommandSenderResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Business.Core.DataContracts.MobileApp">
  <_x003C_ErrorMessage_x003E_k__BackingField xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile">sample string 6</_x003C_ErrorMessage_x003E_k__BackingField>
  <_x003C_Result_x003E_k__BackingField xmlns="http://schemas.datacontract.org/2004/07/EInvoice.Service.Model.Mobile">Success</_x003C_Result_x003E_k__BackingField>
  <Data>sample string 1</Data>
  <EventId>sample string 3</EventId>
  <Message>sample string 2</Message>
  <StatusCode>5</StatusCode>
  <Success>true</Success>
</SendInvoiceVoiceCommandSenderResponse>