POST api/um/v1/payment/{accountNumber}

Creates a payment against specified account.

Request Information

Parameters

NameDescriptionAdditional information
payment
Payment object containing payment details.

Define this parameter in the request body.

accountNumber
No documentation available.

Define this parameter in the request URI.

Request body formats

application/json, text/json

Sample:
{
  "AccountNumber": "00000001-001",
  "PayeeName": "sample string 2",
  "PaymentAmount": 3.0,
  "PaymentDate": "2025-05-12T02:58:56.8648955-05:00",
  "PaymentType": "sample string 5",
  "AuthorizationCode": "sample string 6",
  "TransactionCode": "sample string 7",
  "Comment": "sample string 8",
  "FeeAmount": 1.0,
  "FeeType": "sample string 9",
  "FeeAuthorizationCode": "sample string 10"
}

application/xml, text/xml

Sample:
<Payment xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NewWorld.Logos.WebApi.Models.UM.Accounts">
  <AccountNumber>00000001-001</AccountNumber>
  <AuthorizationCode>sample string 6</AuthorizationCode>
  <Comment>sample string 8</Comment>
  <FeeAmount>1</FeeAmount>
  <FeeAuthorizationCode>sample string 10</FeeAuthorizationCode>
  <FeeType>sample string 9</FeeType>
  <PayeeName>sample string 2</PayeeName>
  <PaymentAmount>3</PaymentAmount>
  <PaymentDate>2025-05-12T02:58:56.8648955-05:00</PaymentDate>
  <PaymentType>sample string 5</PaymentType>
  <TransactionCode>sample string 7</TransactionCode>
</Payment>