Profile

To get characters you need to make a POST call to the following url : https://amapi.algomojo.com/v1/Profile

QUERY PARAMETERS

Request ParameterDescriptionMandatory

broker

Broker Code

Yes

# Here is a curl example
-X POST https://amapi.algomojo.com/v1/Profile

Request example :
{
"api_key":"your_api_key",
"api_secret":"your_api_secret",
"data":
{
 "broker":"tc"
}
}

Response Example:
{
"status": "success",
"data": {
 "client_id": "RLXXXX",
 "name": "",
 "email": "",
 "phone": "",
 "exarr": [
     "MF",
     "NSE",
     "BFO",
     "CDS",
     "NFO",
     "BSE"
 ],
 "prarr": [
     "CNC",
     "NRML",
     "MIS",
     "BO",
     "CO"
 ]
}
}

Last updated