Skip to main content
POST
/
api
/
v1
/
split-payment
cURL
curl --request POST \
  --url https://api.novacpayment.com/api/v1/split-payment \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
[
  {
    "split_name": "vendor_payment",
    "bank_code": "000013",
    "account_number": "0004498921",
    "split_type": "flat",
    "split_value": 200
  }
]
'
{
  "status": true,
  "message": "Split Settings",
  "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_name
string
required
Example:

"vendor_payment"

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:

200

Response

200 - application/json

OK

status
boolean
required
Example:

true

message
string
required
Example:

"Split Settings"

data
object[]
required