Saaslogic
  1. vendor bills payout
Saaslogic
  • Introduction
  • Authentication
  • Enum Reference
  • Authentication
    • saaslogic token
      • Get the saaslogic access token
    • login Url
      • Gives the login URL
    • logout Url
      • Gives the logout URL
  • Countries
    • Get list of countries
  • Plans
    • List all plans for a product
  • Subscriptions
    • Create a product subscription
    • Retrieve a subscription
    • Create Customer and Subscription
    • Subscription with details permissions, menus and features
    • The Saaslogic URL for creating subscription
  • Usage Reporting
    • Report the resource usages in subscription for invoicing
    • Retrieves the resource usages of a subscription in the current billing cycle
  • Customers
    • addresses
      • Create an address
      • List all addresses
      • Update an address
      • Retrieve an address
      • Delete an address
    • contacts
      • Create a contact
      • List all contacts
      • Update a contact
      • Retrieve a contact
      • Delete a contact
    • Create a customer
    • List all customers
    • Update a customer
    • Retrieve a customer
    • Delete a customer
  • Vendors
    • vendor addresses
      • Create a vendor address.
      • List all vendor addresses.
      • Update a vendor address.
      • Retrieve a vendor address..
      • Delete a vendor address.
    • vendor contacts
      • Create a vendor contact.
      • List all vendor contacts.
      • Update a vendor contact.
      • Retrieve a vendor contact.
      • Delete a vendor contact.
    • vendor bills
      • Create a vendor bill
      • Cancel a vendor bill.
    • vendor bills payout
      • Update payment details to vendor bills.
        POST
    • Create a vendor
      POST
    • Update a vendor.
      PUT
    • Activate a vendor.
      PUT
    • Dectivate a vendor.
      PUT
  • Attributes
    • Create a organization attribute and set the value
    • Retrieve a organization attribute
    • Create a user attribute
    • Update a user attribute
    • Get a user attribute
  • Invoices
    • subscriptions
      • Get the invoices
      • Get the invoices by subscription
    • payments
      • Mark the invoice payment status
    • Get the invoice details .
    • cancel the invoices
    • Send invoice as pdf with payment link.
    • Create an on-demand invoice
  1. vendor bills payout

Update payment details to vendor bills.

POST
/vendor-bills/payouts
To mark as paid the vendor bills.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api-sandbox.saaslogic.io/v1/vendor-bills/payouts' \
--header 'Authorization;' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
    "payoutRefNo": "PAY-20250123-12345",
    "paymentMode": "Bank Transfer",
    "bills": [
        {
            "billId": "d90cc3a8-7cb3-11ef-a252-325096b39f47",
            "amount": 450
        }
    ],
    "payoutDt": "2024-10-01T00:00:00",
    "remarks": "Monthly vendor payment for October"
}'
Response Response Example
{
  "message": "UN_AUTHORIZED"
}

Request

Header Params
Authorization
string 
required
Saaslogic authorization token
Default:
Bearer {{bearerToken}}
Content-Type
string 
optional
Default:
application/json
Accept
string 
optional
Default:
application/json
Body Params application/json
payoutRefNo
string 
required
paymentMode
string 
required
bills
array [object {2}] 
required
billId
string 
required
amount
integer 
required
payoutDt
string 
required
remarks
string 
required
Examples

Responses

🟢200Updated Succesfully!
text/plain
Body
object {0}
🔴500ErrorResponse
Previous
Cancel a vendor bill.
Next
Create a vendor
Built with