Fund Sub-Limits This API will give all sub level limits of the user Note Request body not required for this API Header Body: Name Description Authorization Access token obtained in after successful login user-Id Client id of the user Sample Response 1 Sample Response 2 Sample Response 3 POST/client-handler-api/v1/funds/sublimits cURL cURLCopied! curl --location --request POST 'https://orca-uatapi.enrichmoney.in/client-handler-api/v1/funds/sublimits' \ --header 'Authorization: {{jwt_token}}' \ --header 'Content-Type: application/json' \ --header 'user-id: {{userid}}' python / requestsCopied! import requests url = "https://orca-uatapi.enrichmoney.in/client-handler-api/v1/funds/sublimits" payload={} headers = { 'Authorization': '{{jwt_token}}', 'Content-Type': 'application/json', 'user-id': '{{userid}}' } response = requests.request("POST", url, headers=headers, data=payload) print(response.text) java / unirestCopied! Unirest.setTimeouts(0, 0); HttpResponse response = Unirest.post("https://orca-uatapi.enrichmoney.in/client-handler-api/v1/funds/sublimits") .header("Authorization", "{{jwt_token}}") .header("Content-Type": "application/json") .header("user-id", "{{userid}}") .asString(); nodejs / axiosCopied! var axios = require('axios'); var config = { method: 'post', maxBodyLength: Infinity, url: 'https://orca-uatapi.enrichmoney.in/client-handler-api/v1/funds/sublimits', headers: { 'Authorization': '{{jwt_token}}', 'Content-Type': 'application/json', 'user-id': '{{userid}}' } }; axios(config) .then(function (response) { console.log(JSON.stringify(response.data)); }) .catch(function (error) { console.log(error); });