Skip to main content
PUT
/
api
/
v1
/
split-payment
cURL
curl --request PUT \
  --url https://api.novacpayment.com/api/v1/split-payment \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "split_reference_code": "31VENDOR_PAYMENTSPLIT0000130004498921",
  "bank_code": "000013",
  "account_number": "0004498921",
  "split_type": "flat",
  "split_value": 500
}
'
{
  "status": true,
  "message": "Split Settings updated successfully",
  "data": {
    "split_type": "flat",
    "split_payment_reference": "<string>",
    "processing_message": "<string>",
    "split_name": "<string>",
    "bank_code": "<string>",
    "account_number": "<string>",
    "split_value": 123
  }
}

Authorizations

Authorization
string
header
required

Input your Bearer token in this format - Bearer {your token here} to access this API

Body

split_reference_code
string
required
Example:

"31VENDOR_PAYMENTSPLIT0000130004498921"

bank_code
string
required
Example:

"000013"

account_number
string
required
Example:

"0004498921"

split_type
enum<string>
required
Available options:
flat,
percent
Example:

"flat"

split_value
number
required
Example:

500

Response

200 - application/json

OK

status
boolean
required
Example:

true

message
string
required
Example:

"Split Settings updated successfully"

data
object
required