- Mutual Fund 1.0.0
- APIs
- MF Customer Details 1.0.0
- MF Account Details 1.0.0
- Operations
- POST /getAcctDetails
- Definitions
- request
- response
- errorResponse
- MF Balance Check 1.0.0
0
No votes yet
This API is used to get the eligible accounts used for Mutual fund via Fedmobile.
production
development
https://devgateway.federalbank.co.in/fedbnkdev/dev
Paths
/getAcctDetails
post /getAcctDetails
appSecret
X-IBM-Client-Secret
(apiKey located in header)
appId
X-IBM-Client-Id
(apiKey located in header)
request
Required in body
object
request
Content-Type
Optional in header
string
application/json
Accept
Optional in header
string
application/json
Example Request
Example Response
POST https://devgateway.federalbank.co.in/fedbnkdev/dev/mutualFund/v1.0.0/getAcctDetails
Definitions
{
"type": "object",
"properties": {
"customerId": {
"type": "string",
"minimum": 1,
"maximum": 9
}
},
"required": [
"customerId"
]
}
{
"type": "object",
"properties": {
"status": {
"type": "string"
},
"statusDesc": {
"type": "string"
},
"accDetail": {
"type": "object",
"properties": {
"CUST_ID": {
"type": "string"
},
"ACCTYPE": {
"type": "string",
"description": "First 2 letters denote the type of account. SB for Saving Account,CA for Current Account"
},
"ACCOUNTNUMBER": {
"type": "string"
},
"ACCTBRANCH": {
"type": "string",
"description": "Branch Solid"
},
"IFSC": {
"type": "string"
},
"ACCTCATEGORY": {
"type": "string",
"description": "ACCTCATEGORY possible values R(Resident),NR(Non Resident),OR (NRO user)"
}
}
}
}
}
error Response Structure
{
"type": "object",
"properties": {
"errorResponse": {
"type": "object",
"properties": {
"tranTimeStamp": {
"type": "string",
"description": "Server Timestamp of the transaction"
},
"statuscode": {
"type": "string",
"description": "HTTP Status Code of the Transaction"
},
"statusreason": {
"type": "string",
"description": "HTTP status reasonphrase of the transaction"
},
"customcode": {
"type": "string",
"description": "custom reference code of the status of the transaction."
},
"customreason": {
"type": "string",
"description": "short description of the result of the transaction"
},
"tranId": {
"type": "string",
"description": "Server Transaction Id"
},
"description": {
"type": "string",
"description": "description of the error"
},
"additionalDetails": {
"type": "object",
"description": "further details related to the transaction"
}
}
}
}
}
- Log in or register to post comments