put
https://test-accounts.payu.in/api/v1/merchants//signatory_details
The Add/Update UBO API submits Ultimate Beneficial Owner details (Step 12 of 16).
Prerequisite:
Step 11 (VKYC), as applicable.
Entity applicability:
Required for Private Limited, Public Limited, Partnership, Trust, LLP, and Society. Not required for Individual, Sole Proprietorship, or One Person Company.
Use array indexing (ubo[0], ubo[1], …) for multiple UBOs.
HTTP Method: PUT
Environment
| URL | |
|---|---|
| Test Environment | https://test-partner.payu.in/api/v1/merchants/{uuid}/signatory_details |
| Production Environment | https://partner.payu.in/api/v1/merchants/{uuid}/signatory_details |
Sample request
Sample request
curl --location --request PUT 'https://test-partner.payu.in/api/v1/merchants/{{uuid}}/signatory_details' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'ubo[0][name]=UBO Name' \
--data-urlencode 'ubo[0][pancard_number]=ABCDE1234F' \
--data-urlencode 'ubo[0][ownership_percentage]=30'Sample response
Success scenario
Success scenario
{
"merchant": {
"mid": 12345678,
"status": "account_created"
}
}Failure scenario
Failure scenario
- 401 Unauthorized — Token invalid or expired; call Step 00 again
{
"error": "unauthorized",
"message": "Invalid or expired token"
}- 422 Validation Failed — Request parameters failed validation
{
"error": "validation_failed",
"message": "Check the error details in the response body"
}Response parameters
Response parameters
| Parameter | Description | Example |
|---|---|---|
| merchant.mid | integer — Merchant ID | 12345678 |
| merchant.status | string — Current onboarding status | account_created |
Additional request parameters info
Header parameters
Header parameters
| Header | Description | Example |
|---|---|---|
Authorizationmandatory | string — Bearer token from Step 00 (GetToken) | Bearer {{access_token}} |
Content-Typemandatory | string — Must be application/x-www-form-urlencoded | application/x-www-form-urlencoded |
Path parameters
Path parameters
| Parameter | Description | Example |
|---|---|---|
uuidmandatory | string — Merchant UUID from Step 01 (CreateMerchant) | 11ef-d968-6b042d6c-9b94-02975f21d323 |
Body parameters
Body parameters
| Parameter | Description | Example |
|---|---|---|
ubo[0][name]mandatory | string — UBO full name | UBO Name |
ubo[0][pancard_number]mandatory | string — UBO PAN | ABCDE1234F |
ubo[0][ownership_percentage]mandatory | string — Ownership percentage (typically 25%+) | 30 |
400Bad Request
401Unauthorized - Invalid or expired token
403Forbidden - No access to this resource
404Not Found
422Validation Failed
500Internal Server Error
