GET
List available report collections
curl --request GET \
  --url https://reporting-dev.cteleport.com/v2/odata/ \
  --header 'Authorization: Basic <encoded-value>'
{
  "@odata.context": "https://reporting.cteleport.com/v2/odata/$metadata",
  "value": [
    {
      "name": "FlightBookingDetailed",
      "kind": "EntitySet",
      "url": "FlightBookingDetailed"
    },
    {
      "name": "HotelBookingDetailed",
      "kind": "EntitySet",
      "url": "HotelBookingDetailed"
    },
    {
      "name": "InvoiceEntriesDetailed",
      "kind": "EntitySet",
      "url": "InvoiceEntriesDetailed"
    },
    {
      "name": "ExtraServiceDetailed",
      "kind": "EntitySet",
      "url": "ExtraServiceDetailed"
    },
    {
      "name": "Airports",
      "kind": "EntitySet",
      "url": "Airports"
    },
    {
      "name": "Countries",
      "kind": "EntitySet",
      "url": "Countries"
    },
    {
      "name": "Calendar",
      "kind": "EntitySet",
      "url": "Calendar"
    }
  ]
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using reporting credentials provided by C Teleport. Username and password are issued per-customer — contact api@cteleport.com to obtain yours.

Response

OData service document listing available collections.

@odata.context
string

OData metadata context URL.

value
object[]