Enkash Developer Portal
Home
Home
Login
  1. Vendor Management
  • Back to home
  • Accounts Payable APIs
  • Invoice Management
    • Payout Apis
      • validateInvoices
      • initiate
      • Search Payouts V1
      • bulkCreatePayout
      • Create Payout
      • Update Payouts
      • Search Payouts
      • createBulkPayoutForPartnerIntegration
      • Update Bulk Payouts
      • Update Approval Status
      • Get Invoice Data
      • Delete Payout
  • Bharat Connect 2.0 AP
    • Confirm Invoice Request
    • Payment Request
  • Vendor Management
    • Create Vendor
      POST
    • Create Bulk Vendors
      POST
    • Update Bulk Vendors
      PUT
    • Get Beneficiaries (V1)
      POST
    • Get Beneficiaries
      POST
    • Change Vendor Status
      PATCH
    • Get Beneficiary
      GET
  • Update Beneficiary
    PUT
  1. Vendor Management

Change Vendor Status

PATCH
/api/v0/beneficiary/status
Beneficiary Apis

Request

Body Params application/json
companyIds
array[string]
required
status
enum<string> 
required
Allowed values:
ACTIVEINACTIVEBLOCKEDLOCKED
Example
{
    "companyIds": [
        "string"
    ],
    "status": "ACTIVE"
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://test.your-api-server.com/api/v0/beneficiary/status' \
--header 'Content-Type: application/json' \
--data-raw '{
    "companyIds": [
        "string"
    ],
    "status": "ACTIVE"
}'

Responses

🟢200OK
application/json
Body
object {0}
Example
{}
Modified at 2025-07-07 18:41:31
Previous
Get Beneficiaries
Next
Get Beneficiary
Built with