Viewing Available E-Ticket / EMD Quota¶
Endpoint: /api/Order/quota-summary
General Information¶
This functionality allows viewing the available quota of electronic tickets (ET) and EMDs allocated by the carrier to the agent. The request is used to obtain information on the available ET/EMD quota, both in an agent session and in a carrier session. Additionally, deposit information may be returned if the company uses it.
Request Structure¶
To retrieve available quota information, use the following structure:
- Mixvel_GetQuotaSummaryRQ/Request/QuotaRequest
| Element | Description |
|---|---|
| …/QuotaRequest | Request for ET and EMD quota |
| …/QuotaRequest/EMDQuotaRequest | Request for EMD quota |
| …/QuotaRequest/TicketQuotaRequest | Request for electronic ticket (ET) quota |
Example of a Mixvel_GetQuotaSummaryRQ request (requesting both ET and EMD quota):
Show response example
<MixEnv:Envelope xmlns:MixEnv="https://www.mixvel.com/API/XSD/mixvel_envelope/1_06">
<Header/>
<Body id="ID1">
<MessageInfo MessageId="703423d1-595c-49f5-98c2-5dcabe950276" TimeSent="2021-03-17T18:37:48Z"/>
<AppData>
<o:Mixvel_GetQuotaSummaryRQ xmlns:o="https://www.mixvel.com/API/XSD/Mixvel_GetQuotaSummaryRQ/1_00">
<Request>
<QuotaRequest>
<EMDQuotaRequest>true</EMDQuotaRequest>
<TicketQuotaRequest>true</TicketQuotaRequest>
</QuotaRequest>
</Request>
</o:Mixvel_GetQuotaSummaryRQ>
</AppData>
</Body>
</MixEnv:Envelope>
Response Structure¶
The response message contains information about the quota and available deposits:
- Mixvel_GetQuotaSummaryRS/Response/QuotaInfo
| Element | Description |
|---|---|
| …/QuotaInfo | Block containing quota information |
| …/QuotaInfo/EMDQuota | Information about the EMD quota |
| …/QuotaInfo/EMDQuota/DepositAmount | Available deposit amount for EMD |
| …/QuotaInfo/TicketQuota | Information about the ET quota |
| …/QuotaInfo/TicketQuota/Quota | Available ET quota amount |
| …/QuotaInfo/TicketQuota/DepositAmount | Available deposit amount for ET |
Example of a Mixvel_GetQuotaSummaryRS response:
Show request example
<MixEnv:Envelope xmlns:MixEnv="https://www.mixvel.com/API/XSD/mixvel_envelope/1_06">
<Header/>
<Body>
<MessageInfo MessageId="3dfe2f79-11a0-4241-aae4-7cdbab2a470c" ReplyTo="703423d1-595c-49f5-98c2-5dcabe950276" TimeSent="2025-10-13T15:03:35.7637433Z"/>
<AppData>
<Mixvel_GetQuotaSummaryRS xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="https://www.mixvel.com/API/XSD/Mixvel_GetQuotaSummaryRS/1_00">
<Response xmlns="">
<QuotaInfo>
<EMDQuota>
<Quota>12792660</Quota>
<DepositAmount CurCode="RUB">0</DepositAmount>
</EMDQuota>
<TicketQuota>
<Quota>11874764</Quota>
<DepositAmount CurCode="RUB">0</DepositAmount>
</TicketQuota>
</QuotaInfo>
</Response>
</Mixvel_GetQuotaSummaryRS>
</AppData>
</Body>
</MixEnv:Envelope>