GET Get Data By Email API

This API will list the document data on basis of given email id.

Request Attributes

API Content Type: JSON

Head

ATTRIBUTE DESCRIPTION
x-access-token
string
mandatory
Token generated from the authentication api.
Example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.TU5NzgyMDA1N30.9eO_xh eyJEYXRhIjp7InVzZXJpZCI6IjY3NCIsImVtYWlsIjoiYWFhYWFhYWFhYWjuunGJQ YmwuY29tIiwia2V5IjoidGVzdGluZ0tleSJ9LCJpYXQiOjE1OTc3NDA4NTpj6gc8dM csIFhY7n1mV4cUBxa2P3ICI6M2VyWq19OzuHAefeTEj

query

ATTRIBUTE DESCRIPTION
Email_Id
string
mandatory
Email address.
Example: abc@gmail.com

Response Attributes

API Content Type: JSON

body

ATTRIBUTE DESCRIPTION
array of object
This parameter gives the information about the result of the API response.
Attribute Description
full_name
string
Full Name.
Example: Govyanshi
email
string
Email address.
Example: govyanshi.upadhyay@konze.com
initial
string
Initial of the name.
Example: G
type
string
Type.
Example: Predefined
signature_image_path
string
Base64 encoded file path.
Example: L3NpZ25hdHVyZV9kaXJlY3RvcnkvMzIwMzEv ZmVmYjA5ZmEtYjA2ZC00MTZkLThhMjQtM2Y2MjkwZDQ4MzA4 LmdpZg==
signature_uid
string
Signature Unique Id.
Example: H1KCJ0BR8I4D3LUGMOSFQ5XT79YPZVA6
initial_uid
string
Initial Unique Id.
Example: H1KCJ0BR8I4D3LUGMOSFQ5XT79YPZVA6
Initial_image_path
string
Base64 encoded path of the initial.
Example: L3NpZ25hdHVyZV9kaXJlY3RvcnkvOTQwLzBkN2IwZj JlLTI1MjctNDBiMS05ZDAwLWU4ZjFkNGMzYzA2Ni5naWY=
Is_default_signature
boolean
Indicates whether signature is default one.
Example: true
Is_default_initial
boolean
Indicates whether initial is default one.
Example: true
created_on
string
Date on which document is created.
Example: 2023-04-17T11:08:22.383Z
updated_on
string
Date on which document is modified.
Example: 2023-04-17T11:08:22.383Z
message
string(100)
This parameter is the result message which contains information about the result.
Example: get data successfully.

Response Codes and Messages

statuscode status Description
200
true
Success
401
false
Your Session has expired
409
false
Conflict has occured
422
false
Invalid parameter
500
false
System error
https://console.konsign.com/api/group/listgroup?user_id=YOUR_USER_ID
https://console.konsign.com/api/group/listgroup?user_id=YOUR_USER_ID
REQUEST RESPONSE
var https = require('follow-redirects').https;
											var fs = require('fs');
											
											var options = {
											  'method': 'GET',
											  'hostname': 'console.konsign.com',
											  'path': '/group/api/listgroup?user_id=YOUR_USER_ID',
											  'headers': {
												'Authorization': 'Bearer YOUR_AUTH_TOKEN'
											  },
											  'maxRedirects': 20
											};
											
											var req = https.request(options, function (res) {
											  var chunks = [];
											
											  res.on("data", function (chunk) {
												chunks.push(chunk);
											  });
											
											  res.on("end", function (chunk) {
												var body = Buffer.concat(chunks);
												console.log(body.toString());
											  });
											
											  res.on("error", function (error) {
												console.error(error);
											  });
											});
											
											req.end();
										
									
var client = new RestClient("https://console.konsign.com/group/api/listgroup?user_id=YOUR_USER_ID");
											client.Timeout = -1;
											var request = new RestRequest(Method.GET);
											request.AddHeader("Authorization", "Bearer YOUR_AUTH_TOKEN");
											IRestResponse response = client.Execute(request);
											Console.WriteLine(response.Content);
										
									
										{
											"head": {
												"responseTimestamp": "1526969112101",
												"version": "v1",
												"clientId": "C11",
												"signature": "TXBw50YPUKIgJd8gR8RpZuOMZ+csvCT7i0/YXmG//J8+BpFdY5goPBiLAkCzKlCkOvAQip/Op5aD6Vs+cNUTjFmC55JBxvp7WunZ45Ke2q0="
											},
											"body": {
												"resultInfo": {
													"resultStatus": "S",
													"resultCode": "0000",
													"resultMsg": "Success"
												},
												"txnToken": "fe795335ed3049c78a57271075f2199e1526969112097",
												"isPromoCodeValid": false,
												"authenticated": false
											}
										}