Service


Click here for a complete list of operations.

SendInvoiceToxDoc

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /Service.asmx HTTP/1.1
Host: v1.dsconsulting.mx
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://tempuri.org/SendInvoiceToxDoc"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SendInvoiceToxDoc xmlns="http://tempuri.org/">
      <suscriptor>
        <Id>int</Id>
        <Type>string</Type>
      </suscriptor>
      <document>
        <TicketData>
          <AmountTip>decimal</AmountTip>
          <Tickets>string</Tickets>
        </TicketData>
      </document>
      <isPdf>boolean</isPdf>
    </SendInvoiceToxDoc>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <SendInvoiceToxDocResponse xmlns="http://tempuri.org/">
      <SendInvoiceToxDocResult>
        <Status>Success or Failed or Warning</Status>
        <Message>string</Message>
        <DocumentId>guid</DocumentId>
        <DocumentContent>string</DocumentContent>
        <PdfDocumentContent>string</PdfDocumentContent>
        <Totals>
          <ConversionFactor>decimal</ConversionFactor>
          <Currency>string</Currency>
          <SubTotal>decimal</SubTotal>
          <DiscountAmount>decimal</DiscountAmount>
          <TaxAmount>decimal</TaxAmount>
          <TransferredAmount>decimal</TransferredAmount>
          <WithHeldAmount>decimal</WithHeldAmount>
          <LocalTaxTransferredAmount>decimal</LocalTaxTransferredAmount>
          <LocalTaxWithHeldAmount>decimal</LocalTaxWithHeldAmount>
          <PaymenthValue>decimal</PaymenthValue>
        </Totals>
        <HasCreditNote>boolean</HasCreditNote>
        <CreditNoteDocumentId>guid</CreditNoteDocumentId>
        <CreditNoteDocumentContent>string</CreditNoteDocumentContent>
        <CreditNotePdfDocumentContent>string</CreditNotePdfDocumentContent>
      </SendInvoiceToxDocResult>
    </SendInvoiceToxDocResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /Service.asmx HTTP/1.1
Host: v1.dsconsulting.mx
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <SendInvoiceToxDoc xmlns="http://tempuri.org/">
      <suscriptor>
        <Id>int</Id>
        <Type>string</Type>
      </suscriptor>
      <document>
        <TicketData>
          <AmountTip>decimal</AmountTip>
          <Tickets>string</Tickets>
        </TicketData>
      </document>
      <isPdf>boolean</isPdf>
    </SendInvoiceToxDoc>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <SendInvoiceToxDocResponse xmlns="http://tempuri.org/">
      <SendInvoiceToxDocResult>
        <Status>Success or Failed or Warning</Status>
        <Message>string</Message>
        <DocumentId>guid</DocumentId>
        <DocumentContent>string</DocumentContent>
        <PdfDocumentContent>string</PdfDocumentContent>
        <Totals>
          <ConversionFactor>decimal</ConversionFactor>
          <Currency>string</Currency>
          <SubTotal>decimal</SubTotal>
          <DiscountAmount>decimal</DiscountAmount>
          <TaxAmount>decimal</TaxAmount>
          <TransferredAmount>decimal</TransferredAmount>
          <WithHeldAmount>decimal</WithHeldAmount>
          <LocalTaxTransferredAmount>decimal</LocalTaxTransferredAmount>
          <LocalTaxWithHeldAmount>decimal</LocalTaxWithHeldAmount>
          <PaymenthValue>decimal</PaymenthValue>
        </Totals>
        <HasCreditNote>boolean</HasCreditNote>
        <CreditNoteDocumentId>guid</CreditNoteDocumentId>
        <CreditNoteDocumentContent>string</CreditNoteDocumentContent>
        <CreditNotePdfDocumentContent>string</CreditNotePdfDocumentContent>
      </SendInvoiceToxDocResult>
    </SendInvoiceToxDocResponse>
  </soap12:Body>
</soap12:Envelope>