GET BillingStatementsExport/{id}

Gets a statement export by it's ID, represented as BillingDocumentExportDto.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the Statement.

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

The BillingDocumentExportDto data.

BillingDocumentExportDto
NameDescriptionTypeAdditional information
Url

string

None.

InProcess

boolean

None.

Pending

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Url": "sample string 1",
  "InProcess": true,
  "Pending": true
}

application/xml, text/xml

Sample:
<BillingDocumentExportDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ationet.Model.Process">
  <InProcess>true</InProcess>
  <Pending>true</Pending>
  <Url>sample string 1</Url>
</BillingDocumentExportDto>