POST api/MusterCheck/CheckListEntry

Returns details for specified muster check entry

Request Information

URI Parameters

None.

Body Parameters

CheckListEntryLookupModel
NameDescriptionTypeAdditional information
marinaCode

Code of marina where check list is for

string

None.

musterCheckBerthId

Unique id of muster check entry

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "marinaCode": "HM",
  "musterCheckBerthId": 97138
}

multipart/form-data

Sample:
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="marinaCode"

sample string 1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="musterCheckBerthId"

2
--MultipartDataMediaFormatterBoundary1q2w3e--

Response Information

Resource Description

CheckListEntryModel
NameDescriptionTypeAdditional information
musterCheckBerthId

Unique id of muster check entry

integer

None.

berthNo

Unique code of berth

string

None.

boatNo

Unique ID of boat currently on berth

integer

None.

boatRegistrationNo

Registration number of boat

string

None.

boatLength

Length of boat

decimal number

None.

ownerCode

Owner code of boat

string

None.

boatName

Name of boat currently on berth

string

None.

customerName

Name of customer

string

None.

status

Status of boat - R - resident/contract holder, V - visitor/transient

string

None.

customerTypeCode

Charging rate/type code of customer

string

None.

customerType

Charging rate/type description of customer

string

None.

departureDate

Date boat due to depart

date

None.

residentBoatNo

Unique ID of berth holder's boat

integer

None.

residentBoatName

Name of berth holder's boat

string

None.

residentTypeCode

Charging rate/type code of berth holder

string

None.

residentType

Charging rate/type description of berth holder

string

None.

contractEndDate

Contract end date of berth holder

date

None.

residentDueBackDate

Date berth holder due back on berth

date

None.

actualBoatNo

Unique ID of boat actually on berth recorded as part of muster check

integer

None.

actualBoatName

Name of boat actuall on berth recorded as part of muster check

string

None.

berthChecked

Flag to indicate if berth has been checked

boolean

None.

walkOrder

Berth walk order sequence number

integer

None.

processed

Indicates that the change in boat has been processed

boolean

None.

emergencyEmail

Email address to use in an emergency

string

None.

emergencyMobile

Mobile number to use in an emergency

string

None.

emergencyLandlinePhone

Landline phone number to use in an emergency

string

None.

Response Formats

application/json, text/json

Sample:
{
  "musterCheckBerthId": 1,
  "berthNo": "sample string 2",
  "boatNo": 1,
  "boatRegistrationNo": "sample string 3",
  "boatLength": 4.0,
  "ownerCode": "sample string 5",
  "boatName": "sample string 6",
  "customerName": "sample string 7",
  "status": "sample string 8",
  "customerTypeCode": "sample string 9",
  "customerType": "sample string 10",
  "departureDate": "2026-03-30T15:03:31.9628339+01:00",
  "residentBoatNo": 1,
  "residentBoatName": "sample string 11",
  "residentTypeCode": "sample string 12",
  "residentType": "sample string 13",
  "contractEndDate": "2026-03-30T15:03:31.9628339+01:00",
  "residentDueBackDate": "2026-03-30T15:03:31.9628339+01:00",
  "actualBoatNo": 1,
  "actualBoatName": "sample string 14",
  "berthChecked": true,
  "walkOrder": 1,
  "processed": true,
  "emergencyEmail": "sample string 17",
  "emergencyMobile": "sample string 18",
  "emergencyLandlinePhone": "sample string 19"
}

multipart/form-data

Sample:
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="musterCheckBerthId"

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="berthNo"

sample string 2
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="boatNo"

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="boatRegistrationNo"

sample string 3
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="boatLength"

4
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="ownerCode"

sample string 5
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="boatName"

sample string 6
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="customerName"

sample string 7
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="status"

sample string 8
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="customerTypeCode"

sample string 9
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="customerType"

sample string 10
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="departureDate"

2026-03-30T15:03:31.9628339+01:00
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="residentBoatNo"

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="residentBoatName"

sample string 11
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="residentTypeCode"

sample string 12
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="residentType"

sample string 13
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="contractEndDate"

2026-03-30T15:03:31.9628339+01:00
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="residentDueBackDate"

2026-03-30T15:03:31.9628339+01:00
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="actualBoatNo"

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="actualBoatName"

sample string 14
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="berthChecked"

True
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="walkOrder"

1
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="processed"

True
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="emergencyEmail"

sample string 17
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="emergencyMobile"

sample string 18
--MultipartDataMediaFormatterBoundary1q2w3e
Content-Disposition: form-data; name="emergencyLandlinePhone"

sample string 19
--MultipartDataMediaFormatterBoundary1q2w3e--