Skip to main content

Profile

To get characters you need to make a GET call to the following url :

RESPONSE ATTRIBUTES

AttributeDatatypeDescription
client_idstringClient Id
namestringName of the Client
emailstringE-mail address of the user
exarrarrayArray of Exchanges
prarrarrayArray of Products
orarrarrayArray of Order types
curl / cURL
curl --location --request GET 'https://api.gwcindia.in/v1/profile' \
--header 'x-api-key: 2e4c1f0ac084dd6b30fd808e016be3f0' \
--header 'Authorization: Bearer 05b8167eed78367034cb5ed4a8c15930'
Success Response Body
{
"status": "success",
"data": {
"client_id": "GZXXXXX",
"name": "ESWARAN",
"email": "username@GMAIL.COM",
"exarr": [
"NSE",
"NFO",
"CDS",
"BSEFO",
"MCX",
"ICEX",
"MCXSX",
"BFO"
],
"prarr": [
{
"prd": "I",
"s_prdt_ali": "MIS",
"exch": [
"NSE",
"NFO",
"BFO",
"CDS",
"MCX"
]
}
],
"orarr": [
"MKT",
"LMT",
"SL-LMT",
"SL-MKT"
],
"exchdetail": [
"NSE",
"NFO",
"CDS",
"BSEFO",
"MCX",
"ICEX",
"MCXSX",
"BFO"
]
}
}