POST api/ApplyPayment

POST implementation of ApplyPayment

Request Information

URI Parameters

None.

Body Parameters

ApplyPaymentRequest
NameDescriptionTypeAdditional information
APIKey

An active API Key for the APT.MobileAPI service

string

None.

FacilityNo

The facility number of the target carpark

integer

None.

TicketNo

The complete parking ticket number

string

None.

TicketType

The type of parking ticket. 0=Standard Ticket, 4=License Plate, 5=External Card System

unsigned integer

None.

Amount

The amount that has been paid

decimal number

None.

AuthorisationCode

The authorisation code

string

None.

PaymentTime

The time payment was made

date

None.

CustomerID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "APIKey": "sample string 1",
  "FacilityNo": 2,
  "TicketNo": "sample string 3",
  "TicketType": 4,
  "Amount": 5.1,
  "AuthorisationCode": "sample string 6",
  "PaymentTime": "2025-08-31T06:25:25.1072856+00:00",
  "CustomerID": 8
}

Response Information

Resource Description

ApplyPaymentResponse
NameDescriptionTypeAdditional information
FacilityNo

The facility number of the target carpark

integer

None.

CarparkNo

The carpark number of the target carpark

integer

None.

TicketNo

The complete parking ticket number

string

None.

TicketType

The type of parking ticket. 0=Standard Ticket, 4=License Plate, 5=External Card System

unsigned integer

None.

Amount

The amount that has been paid

decimal number

None.

AuthorisationCode

The authorisation code

string

None.

PaymentTime

The time payment was made

date

None.

PaidUntil

The time this transaction has been paid until. The customer must leave the carpark before this time to avoid additional charges

date

None.

Response Formats

application/json, text/json

Sample:
{
  "FacilityNo": 1,
  "CarparkNo": 2,
  "TicketNo": "sample string 3",
  "TicketType": 4,
  "Amount": 5.1,
  "AuthorisationCode": "sample string 6",
  "PaymentTime": "2025-08-31T06:25:25.1072856+00:00",
  "PaidUntil": "2025-08-31T06:25:25.1072856+00:00"
}