💻
Payouts Integration
  • Introduction
  • Functional overview
  • Onboarding
  • Postman Collection
  • Authentication
  • Authentication Token
    • API to Generate Token using username/password
    • API to Generate Token using private client id
  • Refresh Tokens
    • Refresh Token API
  • IP Check
  • API Integration
  • Testing Credentials
  • API Flow Diagram
  • Beneficiary Management
    • View Beneficiary Detail
    • Beneficiary Creation / Registration
  • Core Payouts API
    • Get Account Details API
    • Cancel Transfer API
    • Check Transfer Status API
    • Initiate/Schedule Transfer API
  • Verification
    • Verify Account / Penny Test
    • Validate Vpa
    • IFSC Details
  • smart send
    • Feature
    • Smart Send API
      • Cancel Smart Send
      • Smart Send Status
    • Smart Send V2 API
      • Create Smart Send Link
      • Smart Send Status
      • Cancel Smart Send
      • Extend Expiry Date
    • Bulk Smart Send
      • Bulk File Upload
      • Bulk Process File
    • Smart Send Error Codes
    • Fetch masked Vpas
  • Webhooks
    • What are Webhooks?
    • Default Webhooks
    • Creating Webhooks
    • Set Webhook API
    • Types of webhooks
  • Settings
    • Disable queued Payout
  • FAQ
Powered by GitBook
On this page
  • Request Header Params
  • Request Params
  • Example

Was this helpful?

  1. Verification

IFSC Details

PreviousValidate VpaNextFeature

Last updated 4 years ago

Was this helpful?

Request Header Params

Key

Description

Data type

Mandatory

possible Values

Authorization

Access token

String

Yes

Bearer {access_token}

payoutMerchantId

This is the merchant id provided while on-boarding

String

Yes

Request Params

Key

Description

Data type

Mandatory

possible Values

ifsc

String

Yes

IFSC code

Example

Sample Request :

curl --location --request GET 'https://test.payumoney.com/payout/merchant/getIfscDetails?ifsc=HDFC0004392' \
--header 'Authorization: Bearer bdbdf325a3bfd9217e7cbc93d0dbe7b40b096bb9ad3aa585d0eab9ac4d30bc3e' \
--header 'payoutMerchantId: 1111270'

Response :

{
    "status": 0,
    "msg": null,
    "code": null,
    "data": {
        "city": "GAUTAM BUDDHA NAGAR, NOIDA",
        "office": "SEC LXII GALAXY IT PARK",
        "district": "GAUTAM BUDDHA NAGAR",
        "ifsc": "HDFC0004392",
        "micr": "110240445",
        "state": "UTTAR PRADESH",
        "contact": "9935903333",
        "branch": "SEC LXII GALAXY IT PARK",
        "address": "HDFC BANK LTD GALAXI IT PARK GROUND FLOOR RETAIL 02 TOWER B PLOT 44 45 GALAXI IT PARK NOIDA GAUTAM BUDH NAGAR UTTAR PRADESH201301",
        "bank": "HDFC BANK"
    }
}
{
    "status": 1,
    "msg": "IFSC is invalid",
    "code": null,
    "data": null
}

https://www.payumoney.com/payout/merchant/getIfscDetails
https://test.payumoney.com/payout/merchant/getIfscDetails