- Mutual Fund 1.0.0
- APIs
- MF Customer Details 1.0.0
- Operations
- POST /getCustDetails
- Definitions
- request
- response
- errorResponse
- MF Account Details 1.0.0
- MF Balance Check 1.0.0
0
No votes yet
This API is used to get the customer details for onboarding to mutual fund module via Fedmobile.
production
development
https://devgateway.federalbank.co.in/fedbnkdev/dev
Paths
/getCustDetails
post /getCustDetails
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/getCustDetails
Definitions
{
"type": "object",
"properties": {
"customerId": {
"type": "string",
"minimum": 1,
"maximum": 9
}
},
"required": [
"customerId"
]
}
{
"type": "object",
"properties": {
"status": {
"type": "string"
},
"statusDesc": {
"type": "string"
},
"custDetail": {
"type": "object",
"properties": {
"CUST_ID": {
"type": "string"
},
"NATIONALITY": {
"type": "string"
},
"RESIDENCE_COUNTRY": {
"type": "string"
},
"OCCUPATION": {
"type": "string"
},
"STATE": {
"type": "string"
},
"COUNTRY": {
"type": "string"
},
"CITY": {
"type": "string"
},
"SALUTATION": {
"type": "string"
},
"MOBILENO": {
"type": "string",
"description": "Mobile number with country code"
},
"CUST_NAME": {
"type": "string"
},
"PINCODE": {
"type": "string"
},
"ADDRESS1": {
"type": "string"
},
"ADDRESS2": {
"type": "string"
},
"SOURCEOFINCOME": {
"type": "string"
},
"ANNUAL_TOTAL_INCOME": {
"type": "string",
"description": "Range like 10,000 – 50,0000 etc."
},
"MARITAL_STATUS": {
"type": "string",
"description": "MARD – Married, SING – Single"
},
"GENDER": {
"type": "string"
},
"TDS_TBL": {
"type": "string"
},
"PAN_NUMBER": {
"type": "string"
},
"DATEOFBIRTH": {
"type": "string",
"description": "yyyy-mm-dd format"
},
"FATHER_HUSBAND_NAME": {
"type": "string"
},
"MAIDENNAMEOFMOTHER": {
"type": "string"
},
"NRE": {
"type": "string",
"description": "Possible values Y/N"
},
"EMAIL": {
"type": "string"
}
}
}
}
}
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