GET api/v2/MarinaOps/RetrieveLaunchTicket/{TicketId}

Retrieve a Launch Ticket

Request Information

URI Parameters

NameDescriptionTypeAdditional information
TicketId

The Ticket Id to retrieve

string

Required

Body Parameters

None.

Response Information

Resource Description

LaunchTicket
NameDescriptionTypeAdditional information
TicketId

string

None.

OperationType

string

None.

CustomerId

string

None.

CustomerName

string

None.

BoatId

string

None.

BoatName

string

None.

Operator

string

None.

Fuel

boolean

None.

PumpOut

boolean

None.

Status

string

None.

LocationCode

string

None.

ScheduledDate

string

None.

ScheduledTime

string

None.

Comments

string

None.

Response Formats

application/json, text/json

Sample:
{
  "TicketId": "sample string 1",
  "OperationType": "sample string 2",
  "CustomerId": "sample string 3",
  "CustomerName": "sample string 4",
  "BoatId": "sample string 5",
  "BoatName": "sample string 6",
  "Operator": "sample string 7",
  "Fuel": true,
  "PumpOut": true,
  "Status": "sample string 10",
  "LocationCode": "sample string 11",
  "ScheduledDate": "sample string 12",
  "ScheduledTime": "sample string 13",
  "Comments": "sample string 14"
}

application/xml, text/xml

Sample:
<LaunchTicket xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/com.dockmaster.lib.models">
  <BoatId>sample string 5</BoatId>
  <BoatName>sample string 6</BoatName>
  <Comments>sample string 14</Comments>
  <CustomerId>sample string 3</CustomerId>
  <CustomerName>sample string 4</CustomerName>
  <Fuel>true</Fuel>
  <LocationCode>sample string 11</LocationCode>
  <OperationType>sample string 2</OperationType>
  <Operator>sample string 7</Operator>
  <PumpOut>true</PumpOut>
  <ScheduledDate>sample string 12</ScheduledDate>
  <ScheduledTime>sample string 13</ScheduledTime>
  <Status>sample string 10</Status>
  <TicketId>sample string 1</TicketId>
</LaunchTicket>