View Contact Details
This API lists all the details of a user stored in Smartech
API Details
URL Schema:
US IDC:
https://api.netcoresmartech.com/apiv2
Indian IDC:
https://apiin.netcoresmartech.com/apiv2
Method:
GET
Header:
Key | Value |
---|---|
Content-Type | application/json |
Parameters:
Parameter | Decription | Data Type | Required | Parameter Type |
---|---|---|---|---|
activity | Activity refers to the action that is being performed through the API, that is, add, delete, update, and so on. Value here: getuser | String | Yes | Query Parameter |
data | Primary Key of the contact. e.g. [email protected] | String | Yes | Body Parameter |
apikey | You can obtain the API key from the Smartech panel. Log in to your Smartech panel and go to Admin. Enable the API Mode in Account Configuration under Advance details. Now, go to Sub Admin and click Edit on your user name. You can view your API key here. | String | Yes | Query Parameter |
type | It represents the module or group the API belongs to. For example, if the API 's functionality is related to Contacts, type is 'contact'. value here: contact | String | Yes | Query Parameter |
Request:
https://api.netcoresmartech.com/apiv2?type=contact&activity=getuser&apikey=xxxxxxxxxxxxxxxxxxxxxxxxxxx&[email protected]
Response: 200 OK
{
"status": "success",
"results": [
{
"ID": "4558",
"EMAIL": "[email protected]",
"MOBILE": "9999999999",
"CUSTOMER_ID": "00000132",
"FIRST_NAME": "Mike",
"LAST_NAME": "",
}
]
}
Updated almost 4 years ago