API Docs - For Review
/
No Results Found

Quick Enrollment Meta

Meta APIs for Identity Protection Quick Enrollment

Download Quick Enrollment Meta OpenAPI Document
End Points

Get Quick Enrollment Bulk CSV Meta

The Get Quick Enrollment Bulk CSV Meta API can be used to get the metadata for the quick enrollment bulk CSV.
OAuth Scope : id360.meta.READ

Request Example

Click to copy
headers_data = Map(); headers_data.put("Accept", "application/json"); headers_data.put("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f"); response = invokeUrl [ url: "https://id360.manageengine.com/api/v1/meta/protection/quick-enrollment/bulk-csv-meta" type: GET headers: headers_data connection: <connection_name> ]; info response;
OkHttpClient client = new OkHttpClient(); Request request = new Request.Builder() .url("https://id360.manageengine.com/api/v1/meta/protection/quick-enrollment/bulk-csv-meta") .get() .addHeader("Accept", "application/json") .addHeader("Authorization", "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f") .build(); Response response = client.newCall(request).execute();
const options = { method: 'GET', headers: { Accept: 'application/json', Authorization: 'Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f' } }; fetch('https://id360.manageengine.com/api/v1/meta/protection/quick-enrollment/bulk-csv-meta', options) .then(response => response.json()) .then(response => console.log(response)) .catch(err => console.error(err));
import http.client conn = http.client.HTTPSConnection("id360.manageengine.com") headers = { 'Accept': "application/json", 'Authorization': "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f" } conn.request("GET", "/api/v1/meta/protection/quick-enrollment/bulk-csv-meta", headers=headers) res = conn.getresponse() data = res.read() print(data.decode("utf-8"))
const http = require("https"); const options = { "method": "GET", "hostname": "id360.manageengine.com", "port": null, "path": "/api/v1/meta/protection/quick-enrollment/bulk-csv-meta", "headers": { "Accept": "application/json", "Authorization": "Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f" } }; const req = http.request(options, function (res) { const chunks = []; res.on("data", function (chunk) { chunks.push(chunk); }); res.on("end", function () { const body = Buffer.concat(chunks); console.log(body.toString()); }); }); req.end();
curl --request GET \ --url https://id360.manageengine.com/api/v1/meta/protection/quick-enrollment/bulk-csv-meta \ --header 'Accept: application/json' \ --header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'

Response Example

{ "data": { "auth_factor": { "import_via_csv": [ { "factor_config_id": 2000000293042, "factor_display_name": "Security Question & Answer", "is_configured": true }, { "factor_config_id": 2000000293043, "factor_display_name": "Email Authenticator", "is_configured": true }, { "factor_config_id": 2000000293044, "factor_display_name": "Microsoft Authenticator", "is_configured": true } ], "import_via_certificate": [ { "factor_config_id": 2000000293045, "factor_display_name": "Smartcard Authentication", "is_configured": true } ] }, "csv_file_encoding": [ "Big5", "EUC-JP", "EUC-KR", "GB2312", "ISO-2022-JP", "ISO-8859-1", "KOI8-R", "Shift_JIS", "US-ASCII", "UTF-8", "WINDOWS-1251", "X-WINDOWS-ISO2022JP" ], "certificate_filename_pattern": [ "Primary Email", "Employee ID", "Mobile Number" ] } }
{ "error": { "code": "00000101", "title": "Unauthorized", "detail": "The OAuth token is invalid." } }
{ "error": { "code": "00000000", "title": "Internal Server Error", "detail": "An unexpected internal error has occurred on the server. Please try again later." } }