{"info":{"_postman_id":"c41283ad-5b08-41b2-a4e9-5859cf214954","name":"CidaasV2 : Core","description":"<html><head></head><body><p>Cidaas stands for <code>Customer Identity as a Service</code> and delivers an out-of-the-box solution for standardized Access control and Identity management. Based on OAuth 2.0 and OpenID Connect Standards, the cidaas software can been seamlessly integrated into your business. The cloud-based solution is an in-house product of WidasConcepts.</p>\n<h3 id=\"cidaas-apis-are-splitted-in-to-4-main-categories\">Cidaas APIs are splitted in to 4 main categories,</h3>\n<ol>\n<li>Administration : API releated to the admin tasks, (Ex, Create Apps, Create Users, Create Groups)</li>\n<li>Authentication : API releated to the OpenId Connect, OAuth2, SAML , GraphQL, SCIM (Ex, Authz calls,  Login, Token Generations)</li>\n<li>User Self Services :  API releated to the End User Side calls, (Ex, Login, Forgot Password, etc..)</li>\n<li>Sample Authz Login URLs : Example APIs how to use cidaas in user side. (Ex, How to contruct various type of openid connect authz urls.)</li>\n</ol>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"1648082","collectionId":"c41283ad-5b08-41b2-a4e9-5859cf214954","publishedId":"SW7aY8Ht","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2019-11-21T05:56:11.000Z"},"item":[{"name":"Administration","item":[{"name":"Apps / Clients","item":[{"name":"AppSettings","item":[{"name":"List all the apps","id":"72e86451-453f-4b5c-b681-1d015c3976a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/apps-srv/clients/list","description":"<h1 id=\"description\">Description</h1>\n<p>To list all apps in the system (lite data)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>AppQuery</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class QueryEntity {\n    public lastQueryTime?: Date;\n    public fields: string = \"\";\n    public justCount: boolean = false;\n    public deleted: boolean | null = false;\n}\n\nclass AppQuery extends QueryEntity {\n    public client_id?: string;\n    public client_secret?: string;\n    public application_type?: string;\n    public client_type?: string;\n    public client_name?: string;\n    public client_ids?: string[];\n    public allowed_groups?: IAllowedGroups[];\n    public enabled?: boolean;\n}\n\ninterface IAllowedGroups {\n    id: string,\n    _id: string,\n    groupId: string;\n    roles: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessorLite[];\n}\n\ninterface IAppAccessorLite {\n    id: string;\n    _id: string;\n    client_id: string;\n    client_name: string;\n    client_display_name: string;\n    logo_uri: string;\n    deleted: boolean;\n    enabled: boolean;\n    updatedTime: Date;\n    createdTime: Date;\n    className: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","clients","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"2a60a8aa-2480-408d-b9a2-83e77d749a89","name":"Get Client List","originalRequest":{"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/clients/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"369","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 11:23:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"171-3XwlFEjx7Tu+RTarADMgY0n1iF8\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"c3613fc4-1040-49e0-814f-94746d4c0af8\",\"updatedTime\":\"2018-02-10T11:20:56.085Z\",\"createdTime\":\"2018-02-10T11:17:05.092Z\",\"className\":\"de.cidaas.core.db.AppAccessor\",\"client_id\":\"6e76bc44-1a10-46c0-b6f6-514b3c59fdd7\",\"client_type\":\"SINGLE_PAGE\",\"logo_uri\":\"https://test.com/logo.png\",\"client_name\":\"Client1\",\"deleted\":false}]}"}],"_postman_id":"72e86451-453f-4b5c-b681-1d015c3976a9"},{"name":"Get public app Info from access_token","id":"500f7300-10d4-4897-8e35-c07537274945","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/public/client/info","description":"<h1 id=\"description\">Description</h1>\n<p>To get public app info from access token </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>no request</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no body required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: PublicPageResponseEntity;\n}\nclass PublicPageResponseEntity {\n    logo_uri?: string;\n    login_providers?: string[];\n    saml_providers?: IProviderMetadData[];\n    passwordless_enabled?: boolean = true;\n    policy_uri?: string;\n    tos_uri?: string;\n    copy_right_info?: string;\n    client_name?: string;\n    client_display_name?: string;\n}\ninterface IProviderMetadData {\n    logo_url: string;\n    provider_name: string;\n    display_name: string;\n    type: string;\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","public","client","info"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"6c5526fb-c42f-4750-b889-a676d28e2718","name":"Get Client List","originalRequest":{"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/public/client/info"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"369","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 11:23:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"171-3XwlFEjx7Tu+RTarADMgY0n1iF8\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"c3613fc4-1040-49e0-814f-94746d4c0af8\",\"updatedTime\":\"2018-02-10T11:20:56.085Z\",\"createdTime\":\"2018-02-10T11:17:05.092Z\",\"className\":\"de.cidaas.core.db.AppAccessor\",\"client_id\":\"6e76bc44-1a10-46c0-b6f6-514b3c59fdd7\",\"client_type\":\"SINGLE_PAGE\",\"logo_uri\":\"https://test.com/logo.png\",\"client_name\":\"Client1\",\"deleted\":false}]}"}],"_postman_id":"500f7300-10d4-4897-8e35-c07537274945"},{"name":"Create new app","id":"54aff652-e019-43a8-a4fd-5b91f3635f82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"client_name\":\"Website Client\",\n  \"logo_uri\":\"https://widas.com/logo.png\",\n  \"client_type\":\"SINGLE_PAGE\",\n  \"allowed_scopes\":[\"openid\",\"profile\",\"email\",\"mobile\"],\n  \"login_providers\":[\"self\",\"facebook\"],\n  \"default_max_age\":86400,\n  \"initiate_login_uri\":\"https://localmanagement.cidaas.de/user-ui\",\n  \"redirect_uris\":[\"https://localhost:8080/test\"],\n  \"grant_types\":[\"implicit\",\"authorization_code\",\"client_credentials\",\"password\",\"refresh_token\"],\n  \"company_name\":\"Widas\",\n  \"company_address\":\"Germany\",\n  \"company_website\":\"https://widas.de\",\n  \"policy_uri\":\"https://widas.de/policy\",\n  \"tos_uri\":\"https://widas.de/tos\",\n  \"application_meta_data\":{\n  \t\"shopid\":\"shop1\"\n  }\n}"},"url":"{{baseurl}}/apps-srv/clients","description":"<h1 id=\"description\">Description</h1>\n<p>To create new app </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:apps_write\", \"cidaas:write\"]\n\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\"]\n                    }\n                \n          ]\n                \n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"IAppAccessor\" in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export interface IAppAccessor  {\n    id: string,\n    _id: string,\n    application_type: string,\n    client_id: string,\n    client_secret: string,\n    redirect_uris: string[], // * Its mandatory for SINGLE_PAGE &amp; REGULAR_WEB client_type\n    response_types: string[],\n    grant_types: string[],\n    client_name: string, // *\n    client_display_name: string,\n    logo_uri: string, // *\n    policy_uri: string,// *\n    tos_uri: string, // *\n    default_max_age: number,\n    token_lifetime_in_seconds: number,\n    id_token_lifetime_in_seconds: number,\n    refresh_token_lifetime_in_seconds: number,\n    initiate_login_uri: string, // *\n    contacts: string[],\n    // for standard\n    client_secret_expires_at: number,\n    client_id_issued_at: number,\n    registration_client_uri: string,\n    registration_access_token: string,\n    client_uri: string,\n    jwks_uri: string,\n    jwks: string,\n    sector_identifier_uri: string,\n    subject_type: string,\n    id_token_signed_response_alg: string, // SHA256,RSA256\n    id_token_encrypted_response_alg: string,\n    id_token_encrypted_response_enc: string,\n    userinfo_signed_response_alg: string,\n    userinfo_encrypted_response_alg: string,\n    userinfo_encrypted_response_enc: string,\n    request_object_signing_alg: string,\n    request_object_encryption_alg: string,\n    request_object_encryption_enc: string,\n    request_uris: string[],\n    token_endpoint_auth_method: string,\n    token_endpoint_auth_signing_alg: string,\n    require_auth_time: boolean,\n    default_acr_values: string[],\n    // cidaas specific\n    client_type: string, // *\n    company_address: string, // *\n    company_name: string, // *\n    company_website: string, // *\n    description: string,\n    allowed_web_origins: string[],\n    allowed_logout_urls: string[], // * Its mandatory for SINGLE_PAGE &amp; REGULAR_WEB client_type\n    allowed_origins: string[],\n    application_meta_data: {},\n    login_providers: string[],\n    custom_providers: IProviderMetadData[],\n    saml_providers: IProviderMetadData[],\n    ad_providers: IProviderMetadData[],\n    allowed_scopes: string[], // *\n    default_scopes: string[],\n    pending_scopes: string[],\n    app_owner: string,\n    jwe_enabled: boolean,\n    user_consent: boolean,\n    allowed_groups: IAllowedGroups[],\n    deleted: boolean,\n    enabled: boolean,\n    allowed_fields: string[],\n    required_fields: string[],\n    hosted_page_group: string,\n    consent_page_group: string,\n    mobile_settings: IAppMobileSettings,\n    appKey: IAppKeySettings,\n    additional_access_token_payload: string[],\n    always_ask_mfa: boolean,\n    push_config: IPushConfig,\n    auto_login_after_register: boolean;\n    allow_login_with: string[];\n    register_with_login_information: boolean;\n    fds_enabled: boolean;\n    enable_passwordless_auth: boolean;\n    enable_deduplication: boolean;\n    allow_disposable_email: boolean;\n    validate_phone_number: boolean;\n    allowed_mfa: string[],\n    password_policy_ref: string;\n    captcha_ref: string;\n    captcha_refs: string[];\n    consent_refs: string[];\n    email_verification_required: boolean;\n    mobile_number_verification_required: boolean;\n    // roles restriction\n    accept_roles_in_the_registration: boolean;\n    allowed_roles: string[],\n    default_roles: string[],\n    enable_classical_provider: boolean;\n    // just for the display\n    sub: string,\n    role: string\n    is_hybrid_app: boolean;\n    is_remember_me_selected: boolean;\n    template_group_id: string;\n    mfa_configuration: string;\n    suggest_mfa: string[];\n}\n\ninterface IProviderMetadData {\n    logo_url: string;\n    provider_name: string;\n    display_name: string;\n    type: string;\n}\n\ninterface IAllowedGroups {\n    id: string,\n    _id: string,\n    groupId: string;\n    roles: string[];\n}\n\ninterface IAppMobileSettings {\n    id: string,\n    _id: string,\n    teamId: string;\n    bundleId: string;\n    packageName: string;\n    keyHash: string;\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor;\n}\ninterface IAppAccessor {\n    id: string,\n    _id: string,\n    application_type: string,\n    client_id: string,\n    client_secret: string,\n    redirect_uris: string[],\n    response_types: string[],\n    grant_types: string[],\n    client_name: string,\n    client_display_name: string,\n    logo_uri: string,\n    policy_uri: string,\n    tos_uri: string,\n    default_max_age: number,\n    token_lifetime_in_seconds: number,\n    id_token_lifetime_in_seconds: number,\n    refresh_token_lifetime_in_seconds: number,\n    initiate_login_uri: string,\n    contacts: string[],\n    // for standard\n    client_secret_expires_at: number,\n    client_id_issued_at: number,\n    registration_client_uri: string,\n    registration_access_token: string,\n    client_uri: string,\n    jwks_uri: string,\n    jwks: string,\n    sector_identifier_uri: string,\n    subject_type: string,\n    id_token_signed_response_alg: string, // SHA256,RSA256\n    id_token_encrypted_response_alg: string,\n    id_token_encrypted_response_enc: string,\n    userinfo_signed_response_alg: string,\n    userinfo_encrypted_response_alg: string,\n    userinfo_encrypted_response_enc: string,\n    request_object_signing_alg: string,\n    request_object_encryption_alg: string,\n    request_object_encryption_enc: string,\n    request_uris: string[],\n    token_endpoint_auth_method: string,\n    token_endpoint_auth_signing_alg: string,\n    require_auth_time: boolean,\n    default_acr_values: string[],\n    // cidaas specific\n    client_type: string,\n    company_address: string,\n    company_name: string,\n    company_website: string,\n    description: string,\n    allowed_web_origins: string[],\n    allowed_logout_urls: string[],\n    allowed_origins: string[],\n    application_meta_data: {},\n    login_providers: string[],\n    custom_providers: IProviderMetadData[],\n    saml_providers: IProviderMetadData[],\n    ad_providers: IProviderMetadData[],\n    allowed_scopes: string[],\n    default_scopes: string[],\n    pending_scopes: string[],\n    app_owner: string,\n    jwe_enabled: boolean,\n    user_consent: boolean,\n    allowed_groups: IAllowedGroups[],\n    deleted: boolean,\n    enabled: boolean,\n    allowed_fields: string[],\n    required_fields: string[],\n    hosted_page_group: string,\n    consent_page_group: string,\n    mobile_settings: IAppMobileSettings,\n    appKey: IAppKeySettings,\n    additional_access_token_payload: string[],\n    always_ask_mfa: boolean,\n    push_config: IPushConfig,\n    auto_login_after_register: boolean;\n    allow_login_with: string[];\n    register_with_login_information: boolean;\n    fds_enabled: boolean;\n    enable_passwordless_auth: boolean;\n    enable_deduplication: boolean;\n    allow_disposable_email: boolean;\n    validate_phone_number: boolean;\n    allowed_mfa: string[],\n    password_policy_ref: string;\n    captcha_ref: string;\n    captcha_refs: string[];\n    consent_refs: string[];\n    email_verification_required: boolean;\n    mobile_number_verification_required: boolean;\n    // roles restriction\n    accept_roles_in_the_registration: boolean;\n    allowed_roles: string[],\n    default_roles: string[],\n    enable_classical_provider: boolean;\n    // just for the display\n    sub: string,\n    role: string\n    is_hybrid_app: boolean;\n    is_remember_me_selected: boolean;\n\n}\n\ninterface IProviderMetadData {\n    logo_url: string;\n    provider_name: string;\n    display_name: string;\n    type: string;\n}\n\ninterface IAllowedGroups {\n    id: string,\n    _id: string,\n    groupId: string;\n    roles: string[];\n}\n\ninterface IAppMobileSettings {\n    id: string,\n    _id: string,\n    teamId: string;\n    bundleId: string;\n    packageName: string;\n    keyHash: string;\n}\n\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","clients"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"43de6205-9f39-491d-ba26-cc898c1929c4","name":"http://localmanagement.cidaas.de/apps-srv/clients","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_name\":\"Client2\",\n\t\"logo_uri\":\"https://test.com/logo.png\",\n\t\"client_type\":\"SINGLE_PAGE\",\n\t\"allowed_scopes\":[\"openid\",\"profile\",\"email\",\"mobile\"],\n\t\"login_providers\":[\"self\",\"facebook\"],\n\t\"default_max_age\":86400,\n\t\"initiate_login_uri\":\"https://localmanagement.cidaas.de/user-ui\",\n\t\"redirect_uris\":[\"https://localhost:8080/test\"],\n\t\"grant_types\":[\"implicit\",\"authorization_code\",\"client_credentials\",\"password\",\"refresh_token\"],\n\t\"company_name\":\"Widas\",\n\t\"company_address\":\"Germany\",\n\t\"company_website\":\"https://widas.de\",\n\t\"policy_uri\":\"https://widas.de/policy\",\n\t\"tos_uri\":\"https://widas.de/tos\"\n}"},"url":"{{baseurl}}/apps-srv/clients"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2870","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 22:14:49 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"b36-7MCZij+Dfd5zs8PAJyk1By+PQf4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"__v\":0,\"updatedTime\":\"2018-02-10T22:14:48.250Z\",\"createdTime\":\"2018-02-10T22:14:48.250Z\",\"className\":\"de.cidaas.core.db.AppAccessor\",\"_id\":\"83947b96-2237-488c-8bcd-395d01f7dff2\",\"client_secret\":\"81929659-bf3b-411b-b9cf-8a1aadb8f251\",\"client_id\":\"7df30287-c4ae-4116-8cec-d1b22f0f64da\",\"application_type\":\"WEB\",\"app_owner\":\"CLIENT\",\"tos_uri\":\"https://widas.de/tos\",\"policy_uri\":\"https://widas.de/policy\",\"company_website\":\"https://widas.de\",\"company_address\":\"Germany\",\"company_name\":\"Widas\",\"initiate_login_uri\":\"https://localmanagement.cidaas.de/user-ui\",\"default_max_age\":86400,\"client_type\":\"SINGLE_PAGE\",\"logo_uri\":\"https://test.com/logo.png\",\"client_name\":\"Client2\",\"appKey\":{\"updatedTime\":\"2018-02-10T22:14:48.249Z\",\"createdTime\":\"2018-02-10T22:14:48.249Z\",\"className\":\"de.cidaas.core.db.AppKeySettings\",\"_id\":\"b15354f1-28fa-4ff4-8772-419a760da2d5\",\"keyType\":\"APP\",\"publicKey\":\"-----BEGIN PUBLIC KEY-----\\r\\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKdMjhfdVl6BjuhJrM1HRShAy3NAgD/f\\r\\nfAeLVIazqHJjlvxYwPwwlSli2QRzV4W7uonDEkXb09MJjsNbBqpS7z0CAwEAAQ==\\r\\n-----END PUBLIC KEY-----\\r\\n\",\"publicKeyJWK\":{\"n\":\"p0yOF91WXoGO6EmszUdFKEDLc0CAP998B4tUhrOocmOW_FjA_DCVKWLZBHNXhbu6icMSRdvT0wmOw1sGqlLvPQ\",\"e\":\"AQAB\",\"kid\":\"9c9945f6-2296-4bcb-b7b1-1681cc311c2c\",\"kty\":\"RSA\"},\"privateKey\":\"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIIBOwIBAAJBAKdMjhfdVl6BjuhJrM1HRShAy3NAgD/ffAeLVIazqHJjlvxYwPww\\r\\nlSli2QRzV4W7uonDEkXb09MJjsNbBqpS7z0CAwEAAQJAAo4nyXOHAzCFZ0Tgz83b\\r\\n346FzP/aNZ+LPG5DXz9VPlICwzjATZQtrEEC260yUX/xpht2QH4o8ENDHng+isf+\\r\\noQIhANi78ph5u8HYNa/U7MVEPm2yf+SNyxm3pnvhJQm0uRjJAiEAxZvS+Jncl9+0\\r\\n7rM4UJtxwO+HoE3TfmkU+WC2HOu+0NUCIDihQ04b4LdRqxV6aTNSFY3MKiap9fuO\\r\\nRO3xciALHKIhAiEAqPR8Q3Y6N9hbuKOfiLv/XLjwO02PgMuT1UytKLkf4ykCIQCe\\r\\nuq10yz34UVzaBSgsn70sKdalohFxv60ZUQfLhnmoAw==\\r\\n-----END RSA PRIVATE KEY-----\\r\\n\",\"privateKeyJWK\":{\"qi\":\"nrqtdMs9-FFc2gUoLJ-9LCnWpaIRcb-tGVEHy4Z5qAM\",\"dq\":\"qPR8Q3Y6N9hbuKOfiLv_XLjwO02PgMuT1UytKLkf4yk\",\"dp\":\"OKFDThvgt1GrFXppM1IVjcwqJqn1-45E7fFyIAscoiE\",\"q\":\"xZvS-Jncl9-07rM4UJtxwO-HoE3TfmkU-WC2HOu-0NU\",\"p\":\"2LvymHm7wdg1r9TsxUQ-bbJ_5I3LGbeme-ElCbS5GMk\",\"d\":\"Ao4nyXOHAzCFZ0Tgz83b346FzP_aNZ-LPG5DXz9VPlICwzjATZQtrEEC260yUX_xpht2QH4o8ENDHng-isf-oQ\",\"n\":\"p0yOF91WXoGO6EmszUdFKEDLc0CAP998B4tUhrOocmOW_FjA_DCVKWLZBHNXhbu6icMSRdvT0wmOw1sGqlLvPQ\",\"e\":\"AQAB\",\"kid\":\"9c9945f6-2296-4bcb-b7b1-1681cc311c2c\",\"kty\":\"RSA\"}},\"required_fields\":[],\"deleted\":false,\"allowed_groups\":[],\"user_consent\":false,\"jwe_enabled\":false,\"pending_scopes\":[],\"default_scopes\":[],\"allowed_scopes\":[\"openid\",\"profile\",\"email\",\"mobile\"],\"login_providers\":[\"self\",\"facebook\"],\"allowed_origins\":[],\"allowed_logout_urls\":[],\"allowed_web_origins\":[],\"request_uris\":[],\"default_acr_values\":[],\"require_auth_time\":false,\"client_secret_expires_at\":0,\"contacts\":[],\"grant_types\":[\"implicit\"],\"response_types\":[],\"redirect_uris\":[\"https://localhost:8080/test\"]}}"}],"_postman_id":"54aff652-e019-43a8-a4fd-5b91f3635f82"},{"name":"Update app","id":"d012d4b7-99f0-4775-abd0-dd2a11bb1e5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \n        \"client_id\": \"1b2ffaa9-a0ea-4d98-9354-4224a9f49c1f\",\n        \"app_owner\": \"CLIENT\",\n        \"tos_uri\": \"https://widas.de/tos\",\n        \"policy_uri\": \"https://widas.de/policy\",\n        \"company_website\": \"https://widas.de\",\n        \"company_address\": \"Germany\",\n        \"company_name\": \"Widas\",\n        \"initiate_login_uri\":\"https://localmanagement.cidaas.de/user-ui\",\n        \"client_type\": \"SINGLE_PAGE\",\n        \"logo_uri\": \"https://test.com/logo.png\",\n        \"client_name\": \"Website Client Updated\",\n        \"grant_types\":[\"implicit\"],\n         \"redirect_uris\": [\n            \"https://localhost:8080/test\"\n        ]\n        \n    }"},"url":"{{baseurl}}/apps-srv/clients","description":"<h1 id=\"description\">Description</h1>\n<p>To update the app </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:apps_write\", \"cidaas:write\"]\n\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\"]\n                    }\n                \n          ]\n                \n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAppAccessor</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\"> export interface IAppAccessor  {\n    id: string, \n    _id: string, // *\n    application_type: string,\n    client_id: string,\n    client_secret: string,\n    redirect_uris: string[], // * Its mandatory for SINGLE_PAGE &amp; REGULAR_WEB client_type\n    response_types: string[],\n    grant_types: string[],\n    client_name: string, // *\n    client_display_name: string,\n    logo_uri: string, // *\n    policy_uri: string,// *\n    tos_uri: string, // *\n    default_max_age: number,\n    token_lifetime_in_seconds: number,\n    id_token_lifetime_in_seconds: number,\n    refresh_token_lifetime_in_seconds: number,\n    initiate_login_uri: string, // *\n    contacts: string[],\n    // for standard\n    client_secret_expires_at: number,\n    client_id_issued_at: number,\n    registration_client_uri: string,\n    registration_access_token: string,\n    client_uri: string,\n    jwks_uri: string,\n    jwks: string,\n    sector_identifier_uri: string,\n    subject_type: string,\n    id_token_signed_response_alg: string, // SHA256,RSA256\n    id_token_encrypted_response_alg: string,\n    id_token_encrypted_response_enc: string,\n    userinfo_signed_response_alg: string,\n    userinfo_encrypted_response_alg: string,\n    userinfo_encrypted_response_enc: string,\n    request_object_signing_alg: string,\n    request_object_encryption_alg: string,\n    request_object_encryption_enc: string,\n    request_uris: string[],\n    token_endpoint_auth_method: string,\n    token_endpoint_auth_signing_alg: string,\n    require_auth_time: boolean,\n    default_acr_values: string[],\n    // cidaas specific\n    client_type: string, // *\n    company_address: string, // *\n    company_name: string, // *\n    company_website: string, // *\n    description: string,\n    allowed_web_origins: string[],\n    allowed_logout_urls: string[], // * Its mandatory for SINGLE_PAGE &amp; REGULAR_WEB client_type\n    allowed_origins: string[],\n    application_meta_data: {},\n    login_providers: string[],\n    custom_providers: IProviderMetadData[],\n    saml_providers: IProviderMetadData[],\n    ad_providers: IProviderMetadData[],\n    allowed_scopes: string[], // *\n    default_scopes: string[],\n    pending_scopes: string[],\n    app_owner: string,\n    jwe_enabled: boolean,\n    user_consent: boolean,\n    allowed_groups: IAllowedGroups[],\n    deleted: boolean,\n    enabled: boolean,\n    allowed_fields: string[],\n    required_fields: string[],\n    hosted_page_group: string,\n    consent_page_group: string,\n    mobile_settings: IAppMobileSettings,\n    appKey: IAppKeySettings,\n    additional_access_token_payload: string[],\n    always_ask_mfa: boolean,\n    push_config: IPushConfig,\n    auto_login_after_register: boolean;\n    allow_login_with: string[];\n    register_with_login_information: boolean;\n    fds_enabled: boolean;\n    enable_passwordless_auth: boolean;\n    enable_deduplication: boolean;\n    allow_disposable_email: boolean;\n    validate_phone_number: boolean;\n    allowed_mfa: string[],\n    password_policy_ref: string;\n    captcha_ref: string;\n    captcha_refs: string[];\n    consent_refs: string[];\n    email_verification_required: boolean;\n    mobile_number_verification_required: boolean;\n    // roles restriction\n    accept_roles_in_the_registration: boolean;\n    allowed_roles: string[],\n    default_roles: string[],\n    enable_classical_provider: boolean;\n    // just for the display\n    sub: string,\n    role: string;\n    is_hybrid_app: boolean;\n    is_remember_me_selected: boolean;\n    template_group_id: string;\n    mfa_configuration: string;\n    suggest_mfa: string[];\n\n}\ninterface IProviderMetadData {\n    logo_url: string;\n    provider_name: string;\n    display_name: string;\n    type: string;\n}\n\ninterface IAllowedGroups {\n    id: string,\n    _id: string,\n    groupId: string;\n    roles: string[];\n}\n\ninterface IAppMobileSettings {\n    id: string,\n    _id: string,\n    teamId: string;\n    bundleId: string;\n    packageName: string;\n    keyHash: string;\n}\n\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">  interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor;\n  }\n  interface IAppAccessor {\n    id: string,\n    _id: string,\n    application_type: string,\n    client_id: string,\n    client_secret: string,\n    redirect_uris: string[],\n    response_types: string[],\n    grant_types: string[],\n    client_name: string,\n    client_display_name: string,\n    logo_uri: string,\n    policy_uri: string,\n    tos_uri: string,\n    default_max_age: number,\n    token_lifetime_in_seconds: number,\n    id_token_lifetime_in_seconds: number,\n    refresh_token_lifetime_in_seconds: number,\n    initiate_login_uri: string,\n    contacts: string[],\n    // for standard\n    client_secret_expires_at: number,\n    client_id_issued_at: number,\n    registration_client_uri: string,\n    registration_access_token: string,\n    client_uri: string,\n    jwks_uri: string,\n    jwks: string,\n    sector_identifier_uri: string,\n    subject_type: string,\n    id_token_signed_response_alg: string, // SHA256,RSA256\n    id_token_encrypted_response_alg: string,\n    id_token_encrypted_response_enc: string,\n    userinfo_signed_response_alg: string,\n    userinfo_encrypted_response_alg: string,\n    userinfo_encrypted_response_enc: string,\n    request_object_signing_alg: string,\n    request_object_encryption_alg: string,\n    request_object_encryption_enc: string,\n    request_uris: string[],\n    token_endpoint_auth_method: string,\n    token_endpoint_auth_signing_alg: string,\n    require_auth_time: boolean,\n    default_acr_values: string[],\n    // cidaas specific\n    client_type: string,\n    company_address: string,\n    company_name: string,\n    company_website: string,\n    description: string,\n    allowed_web_origins: string[],\n    allowed_logout_urls: string[],\n    allowed_origins: string[],\n    application_meta_data: {},\n    login_providers: string[],\n    custom_providers: IProviderMetadData[],\n    saml_providers: IProviderMetadData[],\n    ad_providers: IProviderMetadData[],\n    allowed_scopes: string[],\n    default_scopes: string[],\n    pending_scopes: string[],\n    app_owner: string,\n    jwe_enabled: boolean,\n    user_consent: boolean,\n    allowed_groups: IAllowedGroups[],\n    deleted: boolean,\n    enabled: boolean,\n    allowed_fields: string[],\n    required_fields: string[],\n    hosted_page_group: string,\n    consent_page_group: string,\n    mobile_settings: IAppMobileSettings,\n    appKey: IAppKeySettings,\n    additional_access_token_payload: string[],\n    always_ask_mfa: boolean,\n    push_config: IPushConfig,\n    auto_login_after_register: boolean;\n    allow_login_with: string[];\n    register_with_login_information: boolean;\n    fds_enabled: boolean;\n    enable_passwordless_auth: boolean;\n    enable_deduplication: boolean;\n    allow_disposable_email: boolean;\n    validate_phone_number: boolean;\n    allowed_mfa: string[],\n    password_policy_ref: string;\n    captcha_ref: string;\n    captcha_refs: string[];\n    consent_refs: string[];\n    email_verification_required: boolean;\n    mobile_number_verification_required: boolean;\n    // roles restriction\n    accept_roles_in_the_registration: boolean;\n    allowed_roles: string[],\n    default_roles: string[],\n    enable_classical_provider: boolean;\n    // just for the display\n    sub: string,\n    role: string\n    is_hybrid_app: boolean;\n    is_remember_me_selected: boolean;\n\n}\n\ninterface IProviderMetadData {\n    logo_url: string;\n    provider_name: string;\n    display_name: string;\n    type: string;\n}\n\ninterface IAllowedGroups {\n    id: string,\n    _id: string,\n    groupId: string;\n    roles: string[];\n}\n\ninterface IAppMobileSettings {\n    id: string,\n    _id: string,\n    teamId: string;\n    bundleId: string;\n    packageName: string;\n    keyHash: string;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST </p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","clients"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"cd6b7fdc-9929-4df2-84ba-11e1edd9bb91","name":"http://localmanagement.cidaas.de/apps-srv/clients","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \n        \"client_id\": \"1b2ffaa9-a0ea-4d98-9354-4224a9f49c1f\",\n        \"app_owner\": \"CLIENT\",\n        \"tos_uri\": \"https://widas.de/tos\",\n        \"policy_uri\": \"https://widas.de/policy\",\n        \"company_website\": \"https://widas.de\",\n        \"company_address\": \"Germany\",\n        \"company_name\": \"Widas\",\n        \"initiate_login_uri\":\"https://localmanagement.cidaas.de/user-ui\",\n        \"client_type\": \"SINGLE_PAGE\",\n        \"logo_uri\": \"https://test.com/logo.png\",\n        \"client_name\": \"Client1\",\n        \"grant_types\":[\"implicit\"],\n         \"redirect_uris\": [\n            \"https://localhost:8080/test\"\n        ]\n        \n    }"},"url":"http://localmanagement.cidaas.de/apps-srv/clients"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2870","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 22:12:12 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"b36-bqzVMM8rB3sxIDxUKudR7CGngvI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"initiate_login_uri\":\"https://localmanagement.cidaas.de/user-ui\",\"_id\":\"8d39c415-9965-4878-8d32-dcc71af2e807\",\"updatedTime\":\"2018-02-10T22:12:11.528Z\",\"createdTime\":\"2018-02-10T11:28:31.301Z\",\"className\":\"de.cidaas.core.db.AppAccessor\",\"client_secret\":\"2fbd3346-a3ce-439b-8e76-ef8138387538\",\"client_id\":\"1b2ffaa9-a0ea-4d98-9354-4224a9f49c1f\",\"application_type\":\"WEB\",\"app_owner\":\"CLIENT\",\"tos_uri\":\"https://widas.de/tos\",\"policy_uri\":\"https://widas.de/policy\",\"company_website\":\"https://widas.de\",\"company_address\":\"Germany\",\"company_name\":\"Widas\",\"default_max_age\":86400,\"client_type\":\"SINGLE_PAGE\",\"logo_uri\":\"https://test.com/logo.png\",\"client_name\":\"Client1\",\"appKey\":{\"updatedTime\":\"2018-02-10T22:12:11.528Z\",\"createdTime\":\"2018-02-10T11:28:31.301Z\",\"className\":\"de.cidaas.core.db.AppKeySettings\",\"_id\":\"66378a6f-60d4-468e-89f1-b49712b55fe4\",\"keyType\":\"APP\",\"publicKey\":\"-----BEGIN PUBLIC KEY-----\\r\\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAJBEIuM5hXMXBYxb16fMj328finXebF/\\r\\nFiqGrNmUNzcyTvgB9vyJDbh5RsE9eeYcrjmzvfvZeYkGQNxetZYmsKsCAwEAAQ==\\r\\n-----END PUBLIC KEY-----\\r\\n\",\"publicKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"9850b8e9-abff-4685-908e-9e1ff190e468\",\"e\":\"AQAB\",\"n\":\"kEQi4zmFcxcFjFvXp8yPfbx-Kdd5sX8WKoas2ZQ3NzJO-AH2_IkNuHlGwT155hyuObO9-9l5iQZA3F61liawqw\"},\"privateKey\":\"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIIBOwIBAAJBAJBEIuM5hXMXBYxb16fMj328finXebF/FiqGrNmUNzcyTvgB9vyJ\\r\\nDbh5RsE9eeYcrjmzvfvZeYkGQNxetZYmsKsCAwEAAQJAH6MRk4r1vPt7eABcFqxB\\r\\ne21urXZXdZlNHx5RoZVjVnMZODr3CpngSZfcxW4hdzRrmrQWMvRfUbmk/cfH9rSN\\r\\noQIhANOaTND4FPplUdr0aeEifuhvum5ilDyypVbSb9ZRZJznAiEArokGLB3xx5iM\\r\\naTZLrAyK12c6NArL7iPzyFkT5BG78Z0CICfsa+Pdeq/HoAsMpFFq3cDjG6yqAsf0\\r\\n+McJyzoHf1EvAiEAggM6YNSxjYA6YAl9Fx2Es26G8ct1G+EWMREB+yumuBUCIQCo\\r\\nDsXbFCeDNX9kwkuzkSR5qptzOlNOJl4vxRrTIe8Jxg==\\r\\n-----END RSA PRIVATE KEY-----\\r\\n\",\"privateKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"9850b8e9-abff-4685-908e-9e1ff190e468\",\"e\":\"AQAB\",\"n\":\"kEQi4zmFcxcFjFvXp8yPfbx-Kdd5sX8WKoas2ZQ3NzJO-AH2_IkNuHlGwT155hyuObO9-9l5iQZA3F61liawqw\",\"d\":\"H6MRk4r1vPt7eABcFqxBe21urXZXdZlNHx5RoZVjVnMZODr3CpngSZfcxW4hdzRrmrQWMvRfUbmk_cfH9rSNoQ\",\"p\":\"05pM0PgU-mVR2vRp4SJ-6G-6bmKUPLKlVtJv1lFknOc\",\"q\":\"rokGLB3xx5iMaTZLrAyK12c6NArL7iPzyFkT5BG78Z0\",\"dp\":\"J-xr4916r8egCwykUWrdwOMbrKoCx_T4xwnLOgd_US8\",\"dq\":\"ggM6YNSxjYA6YAl9Fx2Es26G8ct1G-EWMREB-yumuBU\",\"qi\":\"qA7F2xQngzV_ZMJLs5EkeaqbczpTTiZeL8Ua0yHvCcY\"}},\"__v\":1,\"required_fields\":[],\"deleted\":false,\"allowed_groups\":[],\"user_consent\":false,\"jwe_enabled\":false,\"pending_scopes\":[],\"default_scopes\":[],\"allowed_scopes\":[\"openid\",\"profile\",\"email\",\"mobile\"],\"login_providers\":[\"self\",\"facebook\"],\"allowed_origins\":[],\"allowed_logout_urls\":[],\"allowed_web_origins\":[],\"request_uris\":[],\"default_acr_values\":[],\"require_auth_time\":false,\"client_secret_expires_at\":0,\"contacts\":[],\"grant_types\":[\"implicit\"],\"response_types\":[],\"redirect_uris\":[\"https://localhost:8080/test\"]}}"}],"_postman_id":"d012d4b7-99f0-4775-abd0-dd2a11bb1e5b"},{"name":"Get app information by app id","id":"f6bff713-ee06-4a0d-83c8-5a8da76515f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/clients/:client_id","description":"<h1 id=\"description\">Description</h1>\n<p>To get the app information by app id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:apps_write\",\"cidaas:apps_read, \"cidaas:read\", \"cidaas:write\"]\n\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\"]\n                    }\n                \n          ]\n                \n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>client_id</code> in Query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>client_id:string\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor;\n}\n interface IAppAccessor {\n    id: string,\n    _id: string,\n    application_type: string,\n    client_id: string,\n    client_secret: string,\n    redirect_uris: string[],\n    response_types: string[],\n    grant_types: string[],\n    client_name: string,\n    client_display_name: string,\n    logo_uri: string,\n    policy_uri: string,\n    tos_uri: string,\n    default_max_age: number,\n    token_lifetime_in_seconds: number,\n    id_token_lifetime_in_seconds: number,\n    refresh_token_lifetime_in_seconds: number,\n    initiate_login_uri: string,\n    contacts: string[],\n    // for standard\n    client_secret_expires_at: number,\n    client_id_issued_at: number,\n    registration_client_uri: string,\n    registration_access_token: string,\n    client_uri: string,\n    jwks_uri: string,\n    jwks: string,\n    sector_identifier_uri: string,\n    subject_type: string,\n    id_token_signed_response_alg: string, // SHA256,RSA256\n    id_token_encrypted_response_alg: string,\n    id_token_encrypted_response_enc: string,\n    userinfo_signed_response_alg: string,\n    userinfo_encrypted_response_alg: string,\n    userinfo_encrypted_response_enc: string,\n    request_object_signing_alg: string,\n    request_object_encryption_alg: string,\n    request_object_encryption_enc: string,\n    request_uris: string[],\n    token_endpoint_auth_method: string,\n    token_endpoint_auth_signing_alg: string,\n    require_auth_time: boolean,\n    default_acr_values: string[],\n    // cidaas specific\n    client_type: string,\n    company_address: string,\n    company_name: string,\n    company_website: string,\n    description: string,\n    allowed_web_origins: string[],\n    allowed_logout_urls: string[],\n    allowed_origins: string[],\n    application_meta_data: {},\n    login_providers: string[],\n    custom_providers: IProviderMetadData[],\n    saml_providers: IProviderMetadData[],\n    ad_providers: IProviderMetadData[],\n    allowed_scopes: string[],\n    default_scopes: string[],\n    pending_scopes: string[],\n    app_owner: string,\n    jwe_enabled: boolean,\n    user_consent: boolean,\n    allowed_groups: IAllowedGroups[],\n    deleted: boolean,\n    enabled: boolean,\n    allowed_fields: string[],\n    required_fields: string[],\n    hosted_page_group: string,\n    consent_page_group: string,\n    mobile_settings: IAppMobileSettings,\n    appKey: IAppKeySettings,\n    additional_access_token_payload: string[],\n    always_ask_mfa: boolean,\n    push_config: IPushConfig,\n    auto_login_after_register: boolean;\n    allow_login_with: string[];\n    register_with_login_information: boolean;\n    fds_enabled: boolean;\n    enable_passwordless_auth: boolean;\n    enable_deduplication: boolean;\n    allow_disposable_email: boolean;\n    validate_phone_number: boolean;\n    allowed_mfa: string[],\n    password_policy_ref: string;\n    captcha_ref: string;\n    captcha_refs: string[];\n    consent_refs: string[];\n    email_verification_required: boolean;\n    mobile_number_verification_required: boolean;\n    // roles restriction\n    accept_roles_in_the_registration: boolean;\n    allowed_roles: string[],\n    default_roles: string[],\n    enable_classical_provider: boolean;\n    // just for the display\n    sub: string,\n    role: string\n    is_hybrid_app: boolean;\n    is_remember_me_selected: boolean;\n}\n\ninterface IProviderMetadData {\n    logo_url: string;\n    provider_name: string;\n    display_name: string;\n    type: string;\n}\n\ninterface IAllowedGroups {\n    id: string,\n    _id: string,\n    groupId: string;\n    roles: string[];\n}\n\ninterface IAppMobileSettings {\n    id: string,\n    _id: string,\n    teamId: string;\n    bundleId: string;\n    packageName: string;\n    keyHash: string;\n}\n\ninterface IAppKeySettings {\n    id: string,\n    _id: string,\n    keyType: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n}\n\ninterface IPushConfig {\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n}\n\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 :BAD_REQUEST </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","clients",":client_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"2f56c846-8f3a-4715-842b-139c42d32b2f","type":"string","value":"sadfasdf-adsdfdasdf-asdfasdfd-asdfasdf","key":"client_id"}]}},"response":[{"id":"71a0cf9c-523c-4158-82ad-038bd6a4a12d","name":"Get Client By Id","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/apps-srv/clients/6e76bc44-1a10-46c0-b6f6-514b3c59fdd7"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"2780","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 10 Feb 2018 11:21:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"adc-lWyXQAClyvmKUylJkWEy0xKu19M\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"c3613fc4-1040-49e0-814f-94746d4c0af8\",\"updatedTime\":\"2018-02-10T11:20:56.085Z\",\"createdTime\":\"2018-02-10T11:17:05.092Z\",\"className\":\"de.cidaas.core.db.AppAccessor\",\"client_secret\":\"28652241-2924-4eec-b0bc-b915a5ec6d84\",\"client_id\":\"6e76bc44-1a10-46c0-b6f6-514b3c59fdd7\",\"application_type\":\"WEB\",\"app_owner\":\"CLIENT\",\"tos_uri\":\"https://widas.de/tos\",\"policy_uri\":\"https://widas.de/policy\",\"company_website\":\"https://widas.de\",\"company_address\":\"Germany\",\"company_name\":\"Widas\",\"default_max_age\":86400,\"client_type\":\"SINGLE_PAGE\",\"logo_uri\":\"https://test.com/logo.png\",\"client_name\":\"Client1\",\"appKey\":{\"updatedTime\":\"2018-02-10T11:20:56.085Z\",\"createdTime\":\"2018-02-10T11:17:05.091Z\",\"className\":\"de.cidaas.core.db.AppKeySettings\",\"_id\":\"e01f8956-c520-45c8-b3e0-43a40d8a26ae\",\"keyType\":\"APP\",\"publicKey\":\"-----BEGIN PUBLIC KEY-----\\r\\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKptUi4GlDgk/yhlybynhfgMKiv1gXpR\\r\\naSi5mVTjwnChMzs5Q9Rd5ESZ4n8n1h3LjUOfy3ggxjE2+2gAXKh4CEsCAwEAAQ==\\r\\n-----END PUBLIC KEY-----\\r\\n\",\"publicKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"b4c6a00a-3e6d-43cf-917d-b472714d09d8\",\"e\":\"AQAB\",\"n\":\"qm1SLgaUOCT_KGXJvKeF-AwqK_WBelFpKLmZVOPCcKEzOzlD1F3kRJnifyfWHcuNQ5_LeCDGMTb7aABcqHgISw\"},\"privateKey\":\"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIIBOQIBAAJBAKptUi4GlDgk/yhlybynhfgMKiv1gXpRaSi5mVTjwnChMzs5Q9Rd\\r\\n5ESZ4n8n1h3LjUOfy3ggxjE2+2gAXKh4CEsCAwEAAQJAdno5PzXjpIRTvcnFTRlI\\r\\n0P/j8Vti/53I9T7RkWokqhbBqb7+rVWZMU03FMXex/LHnnz38/oN9iPTHT+dhNPM\\r\\nAQIhAO2asfZlDrX6T5x2DKWrJv9bYhMxidVdQfwCc2hV3upBAiEAt58tIIDziFWr\\r\\n/xcxdx/Ju1ijuVlpwN0G+KXcdVqjF4sCID/2BrYXWjBuo4Ow25K1Uhgnl20nRr1j\\r\\nD2IxnrOVeh6BAiAxiS+TZTZNwU71MjyV9m1lrTP9/LEa5oXK7nPa9OiqoQIgLS+O\\r\\nZ7OECxUwnLAZel6shVvpNYFeKkzbm236/Jr7cXU=\\r\\n-----END RSA PRIVATE KEY-----\\r\\n\",\"privateKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"b4c6a00a-3e6d-43cf-917d-b472714d09d8\",\"e\":\"AQAB\",\"n\":\"qm1SLgaUOCT_KGXJvKeF-AwqK_WBelFpKLmZVOPCcKEzOzlD1F3kRJnifyfWHcuNQ5_LeCDGMTb7aABcqHgISw\",\"d\":\"dno5PzXjpIRTvcnFTRlI0P_j8Vti_53I9T7RkWokqhbBqb7-rVWZMU03FMXex_LHnnz38_oN9iPTHT-dhNPMAQ\",\"p\":\"7Zqx9mUOtfpPnHYMpasm_1tiEzGJ1V1B_AJzaFXe6kE\",\"q\":\"t58tIIDziFWr_xcxdx_Ju1ijuVlpwN0G-KXcdVqjF4s\",\"dp\":\"P_YGthdaMG6jg7DbkrVSGCeXbSdGvWMPYjGes5V6HoE\",\"dq\":\"MYkvk2U2TcFO9TI8lfZtZa0z_fyxGuaFyu5z2vToqqE\",\"qi\":\"LS-OZ7OECxUwnLAZel6shVvpNYFeKkzbm236_Jr7cXU\"}},\"__v\":1,\"required_fields\":[],\"deleted\":false,\"allowed_groups\":[],\"user_consent\":false,\"pending_scopes\":[],\"default_scopes\":[],\"allowed_scopes\":[\"openid\",\"profile\",\"email\",\"mobile\"],\"login_providers\":[\"self\",\"facebook\",\"google\"],\"allowed_origins\":[],\"allowed_logout_urls\":[],\"allowed_web_origins\":[],\"request_uris\":[],\"default_acr_values\":[],\"require_auth_time\":false,\"client_secret_expires_at\":0,\"contacts\":[],\"grant_types\":[],\"response_types\":[],\"redirect_uris\":[\"https://localhost:8080/test\"]}}"},{"id":"f6c45764-9175-413f-b4aa-f1081cd26a2b","name":"Get Client By Id","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/apps-srv/clients/6e76bc44-1a10-46c0-b6f6-514b3c59fdd7"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2780","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 11:21:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"adc-lWyXQAClyvmKUylJkWEy0xKu19M\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"c3613fc4-1040-49e0-814f-94746d4c0af8\",\"updatedTime\":\"2018-02-10T11:20:56.085Z\",\"createdTime\":\"2018-02-10T11:17:05.092Z\",\"className\":\"de.cidaas.core.db.AppAccessor\",\"client_secret\":\"28652241-2924-4eec-b0bc-b915a5ec6d84\",\"client_id\":\"6e76bc44-1a10-46c0-b6f6-514b3c59fdd7\",\"application_type\":\"WEB\",\"app_owner\":\"CLIENT\",\"tos_uri\":\"https://widas.de/tos\",\"policy_uri\":\"https://widas.de/policy\",\"company_website\":\"https://widas.de\",\"company_address\":\"Germany\",\"company_name\":\"Widas\",\"default_max_age\":86400,\"client_type\":\"SINGLE_PAGE\",\"logo_uri\":\"https://test.com/logo.png\",\"client_name\":\"Client1\",\"appKey\":{\"updatedTime\":\"2018-02-10T11:20:56.085Z\",\"createdTime\":\"2018-02-10T11:17:05.091Z\",\"className\":\"de.cidaas.core.db.AppKeySettings\",\"_id\":\"e01f8956-c520-45c8-b3e0-43a40d8a26ae\",\"keyType\":\"APP\",\"publicKey\":\"-----BEGIN PUBLIC KEY-----\\r\\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKptUi4GlDgk/yhlybynhfgMKiv1gXpR\\r\\naSi5mVTjwnChMzs5Q9Rd5ESZ4n8n1h3LjUOfy3ggxjE2+2gAXKh4CEsCAwEAAQ==\\r\\n-----END PUBLIC KEY-----\\r\\n\",\"publicKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"b4c6a00a-3e6d-43cf-917d-b472714d09d8\",\"e\":\"AQAB\",\"n\":\"qm1SLgaUOCT_KGXJvKeF-AwqK_WBelFpKLmZVOPCcKEzOzlD1F3kRJnifyfWHcuNQ5_LeCDGMTb7aABcqHgISw\"},\"privateKey\":\"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIIBOQIBAAJBAKptUi4GlDgk/yhlybynhfgMKiv1gXpRaSi5mVTjwnChMzs5Q9Rd\\r\\n5ESZ4n8n1h3LjUOfy3ggxjE2+2gAXKh4CEsCAwEAAQJAdno5PzXjpIRTvcnFTRlI\\r\\n0P/j8Vti/53I9T7RkWokqhbBqb7+rVWZMU03FMXex/LHnnz38/oN9iPTHT+dhNPM\\r\\nAQIhAO2asfZlDrX6T5x2DKWrJv9bYhMxidVdQfwCc2hV3upBAiEAt58tIIDziFWr\\r\\n/xcxdx/Ju1ijuVlpwN0G+KXcdVqjF4sCID/2BrYXWjBuo4Ow25K1Uhgnl20nRr1j\\r\\nD2IxnrOVeh6BAiAxiS+TZTZNwU71MjyV9m1lrTP9/LEa5oXK7nPa9OiqoQIgLS+O\\r\\nZ7OECxUwnLAZel6shVvpNYFeKkzbm236/Jr7cXU=\\r\\n-----END RSA PRIVATE KEY-----\\r\\n\",\"privateKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"b4c6a00a-3e6d-43cf-917d-b472714d09d8\",\"e\":\"AQAB\",\"n\":\"qm1SLgaUOCT_KGXJvKeF-AwqK_WBelFpKLmZVOPCcKEzOzlD1F3kRJnifyfWHcuNQ5_LeCDGMTb7aABcqHgISw\",\"d\":\"dno5PzXjpIRTvcnFTRlI0P_j8Vti_53I9T7RkWokqhbBqb7-rVWZMU03FMXex_LHnnz38_oN9iPTHT-dhNPMAQ\",\"p\":\"7Zqx9mUOtfpPnHYMpasm_1tiEzGJ1V1B_AJzaFXe6kE\",\"q\":\"t58tIIDziFWr_xcxdx_Ju1ijuVlpwN0G-KXcdVqjF4s\",\"dp\":\"P_YGthdaMG6jg7DbkrVSGCeXbSdGvWMPYjGes5V6HoE\",\"dq\":\"MYkvk2U2TcFO9TI8lfZtZa0z_fyxGuaFyu5z2vToqqE\",\"qi\":\"LS-OZ7OECxUwnLAZel6shVvpNYFeKkzbm236_Jr7cXU\"}},\"__v\":1,\"required_fields\":[],\"deleted\":false,\"allowed_groups\":[],\"user_consent\":false,\"pending_scopes\":[],\"default_scopes\":[],\"allowed_scopes\":[\"openid\",\"profile\",\"email\",\"mobile\"],\"login_providers\":[\"self\",\"facebook\",\"google\"],\"allowed_origins\":[],\"allowed_logout_urls\":[],\"allowed_web_origins\":[],\"request_uris\":[],\"default_acr_values\":[],\"require_auth_time\":false,\"client_secret_expires_at\":0,\"contacts\":[],\"grant_types\":[],\"response_types\":[],\"redirect_uris\":[\"https://localhost:8080/test\"]}}"}],"_postman_id":"f6bff713-ee06-4a0d-83c8-5a8da76515f3"},{"name":"Delete the app by client_id","id":"12c1cb02-785e-4f95-b68c-313c3a7414fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"url":"{{baseurl}}/apps-srv/clients/:client_id","description":"<h1 id=\"description\">Description</h1>\n<p>Delete the app by client id </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_delete\", \"cidaas:apps_delete\", \"cidaas:delete\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                    groupId: \"CIDAAS_ADMINS\",\n                    roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\"]\n                }\n]\n\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"client_id\" in the path param</p>\n<h2 id=\"path-param\">Path Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>client_id:string\n\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IResponseDeletedEntity;\n}\n\ninterface IResponseDeletedEntity {\n    deleted:boolean\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","clients",":client_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"7d64cd0d-7ddb-49c3-8c51-27aaa74c5b30","type":"string","value":"","key":"client_id"}]}},"response":[{"id":"18402ddc-34e3-4f93-ae67-6e2b443759e5","name":"Get Client By Id","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/apps-srv/clients/6e76bc44-1a10-46c0-b6f6-514b3c59fdd7"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"2780","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sat, 10 Feb 2018 11:21:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"adc-lWyXQAClyvmKUylJkWEy0xKu19M\"","name":"ETag","description":""},{"key":"Server","value":"nginx","name":"Server","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"c3613fc4-1040-49e0-814f-94746d4c0af8\",\"updatedTime\":\"2018-02-10T11:20:56.085Z\",\"createdTime\":\"2018-02-10T11:17:05.092Z\",\"className\":\"de.cidaas.core.db.AppAccessor\",\"client_secret\":\"28652241-2924-4eec-b0bc-b915a5ec6d84\",\"client_id\":\"6e76bc44-1a10-46c0-b6f6-514b3c59fdd7\",\"application_type\":\"WEB\",\"app_owner\":\"CLIENT\",\"tos_uri\":\"https://widas.de/tos\",\"policy_uri\":\"https://widas.de/policy\",\"company_website\":\"https://widas.de\",\"company_address\":\"Germany\",\"company_name\":\"Widas\",\"default_max_age\":86400,\"client_type\":\"SINGLE_PAGE\",\"logo_uri\":\"https://test.com/logo.png\",\"client_name\":\"Client1\",\"appKey\":{\"updatedTime\":\"2018-02-10T11:20:56.085Z\",\"createdTime\":\"2018-02-10T11:17:05.091Z\",\"className\":\"de.cidaas.core.db.AppKeySettings\",\"_id\":\"e01f8956-c520-45c8-b3e0-43a40d8a26ae\",\"keyType\":\"APP\",\"publicKey\":\"-----BEGIN PUBLIC KEY-----\\r\\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKptUi4GlDgk/yhlybynhfgMKiv1gXpR\\r\\naSi5mVTjwnChMzs5Q9Rd5ESZ4n8n1h3LjUOfy3ggxjE2+2gAXKh4CEsCAwEAAQ==\\r\\n-----END PUBLIC KEY-----\\r\\n\",\"publicKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"b4c6a00a-3e6d-43cf-917d-b472714d09d8\",\"e\":\"AQAB\",\"n\":\"qm1SLgaUOCT_KGXJvKeF-AwqK_WBelFpKLmZVOPCcKEzOzlD1F3kRJnifyfWHcuNQ5_LeCDGMTb7aABcqHgISw\"},\"privateKey\":\"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIIBOQIBAAJBAKptUi4GlDgk/yhlybynhfgMKiv1gXpRaSi5mVTjwnChMzs5Q9Rd\\r\\n5ESZ4n8n1h3LjUOfy3ggxjE2+2gAXKh4CEsCAwEAAQJAdno5PzXjpIRTvcnFTRlI\\r\\n0P/j8Vti/53I9T7RkWokqhbBqb7+rVWZMU03FMXex/LHnnz38/oN9iPTHT+dhNPM\\r\\nAQIhAO2asfZlDrX6T5x2DKWrJv9bYhMxidVdQfwCc2hV3upBAiEAt58tIIDziFWr\\r\\n/xcxdx/Ju1ijuVlpwN0G+KXcdVqjF4sCID/2BrYXWjBuo4Ow25K1Uhgnl20nRr1j\\r\\nD2IxnrOVeh6BAiAxiS+TZTZNwU71MjyV9m1lrTP9/LEa5oXK7nPa9OiqoQIgLS+O\\r\\nZ7OECxUwnLAZel6shVvpNYFeKkzbm236/Jr7cXU=\\r\\n-----END RSA PRIVATE KEY-----\\r\\n\",\"privateKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"b4c6a00a-3e6d-43cf-917d-b472714d09d8\",\"e\":\"AQAB\",\"n\":\"qm1SLgaUOCT_KGXJvKeF-AwqK_WBelFpKLmZVOPCcKEzOzlD1F3kRJnifyfWHcuNQ5_LeCDGMTb7aABcqHgISw\",\"d\":\"dno5PzXjpIRTvcnFTRlI0P_j8Vti_53I9T7RkWokqhbBqb7-rVWZMU03FMXex_LHnnz38_oN9iPTHT-dhNPMAQ\",\"p\":\"7Zqx9mUOtfpPnHYMpasm_1tiEzGJ1V1B_AJzaFXe6kE\",\"q\":\"t58tIIDziFWr_xcxdx_Ju1ijuVlpwN0G-KXcdVqjF4s\",\"dp\":\"P_YGthdaMG6jg7DbkrVSGCeXbSdGvWMPYjGes5V6HoE\",\"dq\":\"MYkvk2U2TcFO9TI8lfZtZa0z_fyxGuaFyu5z2vToqqE\",\"qi\":\"LS-OZ7OECxUwnLAZel6shVvpNYFeKkzbm236_Jr7cXU\"}},\"__v\":1,\"required_fields\":[],\"deleted\":false,\"allowed_groups\":[],\"user_consent\":false,\"pending_scopes\":[],\"default_scopes\":[],\"allowed_scopes\":[\"openid\",\"profile\",\"email\",\"mobile\"],\"login_providers\":[\"self\",\"facebook\",\"google\"],\"allowed_origins\":[],\"allowed_logout_urls\":[],\"allowed_web_origins\":[],\"request_uris\":[],\"default_acr_values\":[],\"require_auth_time\":false,\"client_secret_expires_at\":0,\"contacts\":[],\"grant_types\":[],\"response_types\":[],\"redirect_uris\":[\"https://localhost:8080/test\"]}}"},{"id":"e798ebe5-1454-4719-b78c-835661b18bf7","name":"Get Client By Id","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/apps-srv/clients/6e76bc44-1a10-46c0-b6f6-514b3c59fdd7"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"2780","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 11:21:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"adc-lWyXQAClyvmKUylJkWEy0xKu19M\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"c3613fc4-1040-49e0-814f-94746d4c0af8\",\"updatedTime\":\"2018-02-10T11:20:56.085Z\",\"createdTime\":\"2018-02-10T11:17:05.092Z\",\"className\":\"de.cidaas.core.db.AppAccessor\",\"client_secret\":\"28652241-2924-4eec-b0bc-b915a5ec6d84\",\"client_id\":\"6e76bc44-1a10-46c0-b6f6-514b3c59fdd7\",\"application_type\":\"WEB\",\"app_owner\":\"CLIENT\",\"tos_uri\":\"https://widas.de/tos\",\"policy_uri\":\"https://widas.de/policy\",\"company_website\":\"https://widas.de\",\"company_address\":\"Germany\",\"company_name\":\"Widas\",\"default_max_age\":86400,\"client_type\":\"SINGLE_PAGE\",\"logo_uri\":\"https://test.com/logo.png\",\"client_name\":\"Client1\",\"appKey\":{\"updatedTime\":\"2018-02-10T11:20:56.085Z\",\"createdTime\":\"2018-02-10T11:17:05.091Z\",\"className\":\"de.cidaas.core.db.AppKeySettings\",\"_id\":\"e01f8956-c520-45c8-b3e0-43a40d8a26ae\",\"keyType\":\"APP\",\"publicKey\":\"-----BEGIN PUBLIC KEY-----\\r\\nMFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKptUi4GlDgk/yhlybynhfgMKiv1gXpR\\r\\naSi5mVTjwnChMzs5Q9Rd5ESZ4n8n1h3LjUOfy3ggxjE2+2gAXKh4CEsCAwEAAQ==\\r\\n-----END PUBLIC KEY-----\\r\\n\",\"publicKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"b4c6a00a-3e6d-43cf-917d-b472714d09d8\",\"e\":\"AQAB\",\"n\":\"qm1SLgaUOCT_KGXJvKeF-AwqK_WBelFpKLmZVOPCcKEzOzlD1F3kRJnifyfWHcuNQ5_LeCDGMTb7aABcqHgISw\"},\"privateKey\":\"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIIBOQIBAAJBAKptUi4GlDgk/yhlybynhfgMKiv1gXpRaSi5mVTjwnChMzs5Q9Rd\\r\\n5ESZ4n8n1h3LjUOfy3ggxjE2+2gAXKh4CEsCAwEAAQJAdno5PzXjpIRTvcnFTRlI\\r\\n0P/j8Vti/53I9T7RkWokqhbBqb7+rVWZMU03FMXex/LHnnz38/oN9iPTHT+dhNPM\\r\\nAQIhAO2asfZlDrX6T5x2DKWrJv9bYhMxidVdQfwCc2hV3upBAiEAt58tIIDziFWr\\r\\n/xcxdx/Ju1ijuVlpwN0G+KXcdVqjF4sCID/2BrYXWjBuo4Ow25K1Uhgnl20nRr1j\\r\\nD2IxnrOVeh6BAiAxiS+TZTZNwU71MjyV9m1lrTP9/LEa5oXK7nPa9OiqoQIgLS+O\\r\\nZ7OECxUwnLAZel6shVvpNYFeKkzbm236/Jr7cXU=\\r\\n-----END RSA PRIVATE KEY-----\\r\\n\",\"privateKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"b4c6a00a-3e6d-43cf-917d-b472714d09d8\",\"e\":\"AQAB\",\"n\":\"qm1SLgaUOCT_KGXJvKeF-AwqK_WBelFpKLmZVOPCcKEzOzlD1F3kRJnifyfWHcuNQ5_LeCDGMTb7aABcqHgISw\",\"d\":\"dno5PzXjpIRTvcnFTRlI0P_j8Vti_53I9T7RkWokqhbBqb7-rVWZMU03FMXex_LHnnz38_oN9iPTHT-dhNPMAQ\",\"p\":\"7Zqx9mUOtfpPnHYMpasm_1tiEzGJ1V1B_AJzaFXe6kE\",\"q\":\"t58tIIDziFWr_xcxdx_Ju1ijuVlpwN0G-KXcdVqjF4s\",\"dp\":\"P_YGthdaMG6jg7DbkrVSGCeXbSdGvWMPYjGes5V6HoE\",\"dq\":\"MYkvk2U2TcFO9TI8lfZtZa0z_fyxGuaFyu5z2vToqqE\",\"qi\":\"LS-OZ7OECxUwnLAZel6shVvpNYFeKkzbm236_Jr7cXU\"}},\"__v\":1,\"required_fields\":[],\"deleted\":false,\"allowed_groups\":[],\"user_consent\":false,\"pending_scopes\":[],\"default_scopes\":[],\"allowed_scopes\":[\"openid\",\"profile\",\"email\",\"mobile\"],\"login_providers\":[\"self\",\"facebook\",\"google\"],\"allowed_origins\":[],\"allowed_logout_urls\":[],\"allowed_web_origins\":[],\"request_uris\":[],\"default_acr_values\":[],\"require_auth_time\":false,\"client_secret_expires_at\":0,\"contacts\":[],\"grant_types\":[],\"response_types\":[],\"redirect_uris\":[\"https://localhost:8080/test\"]}}"}],"_postman_id":"12c1cb02-785e-4f95-b68c-313c3a7414fa"}],"id":"c6c15246-6715-4849-b14b-597e46953040","_postman_id":"c6c15246-6715-4849-b14b-597e46953040","description":""},{"name":"Scope Management","item":[{"name":"Scope Groups","item":[{"name":"Get All Group Name","id":"6048ae40-8dee-4b93-b0f5-6d5951690010","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/scopes-srv/group/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get all the Group Names </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:scopes_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\" \"APP_READ\", \"APP_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>No Request</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScopeGroupSetup[];\n}\ninterface IScopeGroupSetup  {\n    _id: string;\n    id: string;\n    group_name: string;\n    customFields: any;\n    description: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["scopes-srv","group","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6048ae40-8dee-4b93-b0f5-6d5951690010"},{"name":"Add Group","id":"b31e3ba9-7125-4947-8da3-c0fa862f02e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"group_name\":\"test\",\n\t\"description\":\"test123\"\n}"},"url":"{{baseurl}}/scopes-srv/group","description":"<h1 id=\"description\">Description</h1>\n<p>To create new Group </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:scopes_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\",\"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\", \"APP_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"IScopeSetup\" in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IScopeGroupSetup {\n    _id: string;\n    id: string;\n    group_name: string; // *\n    customFields: any;\n    description: string;\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScopeGroupSetup;\n}\ninterface IScopeGroupSetup {\n    _id: string;\n    id: string;\n    group_name: string;\n    customFields: any;\n    description: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["scopes-srv","group"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b31e3ba9-7125-4947-8da3-c0fa862f02e8"},{"name":"Get Group","id":"46895e50-9726-40b3-91f9-d690f00e630a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/scopes-srv/group?group_name={{group_name}}","description":"<h1 id=\"description\">Description</h1>\n<p>to get Group info</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:scopes_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"group_name\" in the query param </p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>group_name:string\n\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScopeGroupSetup;\n}\ninterface IScopeGroupSetup {\n    _id: string;\n    id: string;\n    group_name: string;\n    customFields: any;\n    description: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["scopes-srv","group"],"host":["{{baseurl}}"],"query":[{"key":"group_name","value":"{{group_name}}"}],"variable":[]}},"response":[],"_postman_id":"46895e50-9726-40b3-91f9-d690f00e630a"},{"name":"Delete Group","id":"47c4578a-3e41-403b-9ab2-baf8b8c57737","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/scopes-srv/group/:group_name","description":"<h1 id=\"description\">Description</h1>\n<p>To delete the group info</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:scopes_delete\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"group_name\" in the Query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>group_name:string\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IDeleteGroup;\n}\n\ninterface IDeleteGroup{\n    deleted:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["scopes-srv","group",":group_name"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"4cd9ef0f-1747-4ae4-972e-d535512eed54","type":"string","value":"","key":"group_name"}]}},"response":[],"_postman_id":"47c4578a-3e41-403b-9ab2-baf8b8c57737"},{"name":"Scopes By group","id":"31ebb078-062d-4ca8-800b-5f206bec5971","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/scopes-srv/group/scopes?group_name={{group_name}}","description":"<h1 id=\"description\">Description</h1>\n<p>To get the scopes by using group </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:scopes_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"group_name\" in the query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>group_name:string;\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScopeSetup;\n}\ninterface IScopeSetup  {\n    _id: string;\n    id: string;\n    scopeKey: string;\n    localeWiseDescription: IScopeDescription[];\n    securityLevel: string;\n    requiredUserConsent: boolean;\n    scopeOwner: string;\n    group_name: string[];\n}\n\ninterface IScopeDescription {\n    _id: string;\n    id: string;\n    description: string,\n    locale: string,\n    language: string,\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["scopes-srv","group","scopes"],"host":["{{baseurl}}"],"query":[{"key":"group_name","value":"{{group_name}}"}],"variable":[]}},"response":[],"_postman_id":"31ebb078-062d-4ca8-800b-5f206bec5971"}],"id":"2cfa3832-a3d4-4c89-90ea-e4dbc75ee859","_postman_id":"2cfa3832-a3d4-4c89-90ea-e4dbc75ee859","description":""},{"name":"Scopes","item":[{"name":"List all the scopes","id":"8ffe5a25-7bf1-4042-8a32-d3fd0be4b432","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/scopes-srv/scope/list","description":"<h1 id=\"description\">Description</h1>\n<p>To list the all scopes</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:scopes_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\" \"APP_READ\", \"APP_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>No Request</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScopeGroupSetup[];\n}\ninterface IScopeGroupSetup {\n    _id: string;\n    id: string;\n    group_name: string;\n    customFields: any;\n    description: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["scopes-srv","scope","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ffe5a25-7bf1-4042-8a32-d3fd0be4b432"},{"name":"Add new scope","id":"daac3fb7-4ed1-46c6-a3ed-a2feaa39cd00","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"scopeKey\":\"test\",\n  \"securityLevel\":\"PUBLIC\",\n  \"requiredUserConsent\":false,\n  \"localeWiseDescription\":[\n    {\n      \"description\":\"test\",\n      \"locale\":\"en-US\",\n      \"language\":\"en\"\n    },\n    {\n      \"description\":\"test\",\n      \"locale\":\"en-IN\",\n      \"language\":\"en\"\n    }\n    ],\n    \"group_name\":[\"test\"]\n}"},"url":"{{baseurl}}/scopes-srv/scope","description":"<h1 id=\"description\">Description</h1>\n<p>To create new scope</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:scopes_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IScopeSetup {\n    _id: string;\n    id: string;\n    scopeKey: string; // *\n    localeWiseDescription: IScopeDescription[];\n    securityLevel: string;\n    requiredUserConsent: boolean;\n    scopeOwner: string;\n    group_name: string[];\n}\n\ninterface IScopeDescription {\n    _id: string;\n    id: string;\n    description: string,\n    locale: string,\n    language: string,\n}\n\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScopeSetup;\n}\ninterface IScopeSetup {\n    _id: string;\n    id: string;\n    scopeKey: string;\n    localeWiseDescription: IScopeDescription[];\n    securityLevel: string;\n    requiredUserConsent: boolean;\n    scopeOwner: string;\n    group_name: string[];\n}\n\ninterface IScopeDescription {\n    _id: string;\n    id: string;\n    description: string,\n    locale: string,\n    language: string,\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["scopes-srv","scope"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"daac3fb7-4ed1-46c6-a3ed-a2feaa39cd00"},{"name":"Get scope by scopekey","id":"d9a422e7-9c92-4bee-9137-a84d541e1b15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/scopes-srv/scope?scopekey={{scope_key}}","description":"<h1 id=\"description\">Description</h1>\n<p>Get scope by scopekey </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:scopes_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"scopeKey\" in the query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopekey:string;\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScopeSetup;\n}\ninterface IScopeSetup {\n    _id: string;\n    id: string;\n    scopekey: string;\n    localeWiseDescription: IScopeDescription[];\n    securityLevel: string;\n    requiredUserConsent: boolean;\n    scopeOwner: string;\n    group_name: string[];\n}\n\ninterface IScopeDescription {\n    _id: string;\n    id: string;\n    description: string,\n    locale: string,\n    language: string,\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["scopes-srv","scope"],"host":["{{baseurl}}"],"query":[{"key":"scopekey","value":"{{scope_key}}"}],"variable":[]}},"response":[],"_postman_id":"d9a422e7-9c92-4bee-9137-a84d541e1b15"},{"name":"Get scope details by accept-language","id":"61d98ac8-30ee-41cc-9fc0-f6a44872bcce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"scopeKeys\":[\"test\",\"profile\",\"email\"],\n  \"acceptLanguage\":\"en-in\"\n}"},"url":"{{baseurl}}/scopes-srv/scope/flatlist","description":"<h1 id=\"description\">Description</h1>\n<p>Get scope details by using accept-language</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:scopes_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"FlatScopeQuery\" in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>class FlatScopeQuery {\n    scopeKeys?: string[];\n    acceptLanguage?: string;\n}\n\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: FlatScope;\n}\nclass FlatScope {\n    id?: string;\n    scopeKey?: string;\n    securityLevel?: string;\n    requiredUserConsent?: boolean;\n    description?: string;\n    locale?: string;\n    language?: string;\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["scopes-srv","scope","flatlist"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"61d98ac8-30ee-41cc-9fc0-f6a44872bcce"},{"name":"Get single scope detail by accept-language","id":"1f90e26b-2cca-40ed-854b-b84ccb744b9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/scopes-srv/scope/flat?scopekey=test&accecptlanguage=en-US","description":"<h1 id=\"description\">Description</h1>\n<p>To get single scope detail by accept-language</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:scopes_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-scopeKey?: string;\">    acceptLanguage?: string;\n</code></pre>\n<h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: FlatScope;\n}\nclass FlatScope {\n    id?: string;\n    scopeKey?: string;\n    securityLevel?: string;\n    requiredUserConsent?: boolean;\n    description?: string;\n    locale?: string;\n    language?: string;\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["scopes-srv","scope","flat"],"host":["{{baseurl}}"],"query":[{"key":"scopekey","value":"test"},{"key":"accecptlanguage","value":"en-US"}],"variable":[]}},"response":[],"_postman_id":"1f90e26b-2cca-40ed-854b-b84ccb744b9c"},{"name":"Delete scope by scopekey","id":"01004b29-f6af-4311-acf9-0ee697065d75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/scopes-srv/scope/:scope_key","description":"<h1 id=\"description\">Description</h1>\n<p>To delete scope by scopekey (lite data)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:scopes_delete\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"scopeKey\" in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopeKey:string;\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IDeleteScope;\n}\n\ninterface IDeleteScope{\n    deleted:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["scopes-srv","scope",":scope_key"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"456a1a64-c956-4433-8504-b35d1c46c7a7","type":"string","value":"","key":"scope_key"}]}},"response":[],"_postman_id":"01004b29-f6af-4311-acf9-0ee697065d75"}],"id":"11669b9a-7ff9-4162-9153-c32c4f750ac9","_postman_id":"11669b9a-7ff9-4162-9153-c32c4f750ac9","description":""}],"id":"33a2422f-f28a-4bb8-8605-e0698850b212","_postman_id":"33a2422f-f28a-4bb8-8605-e0698850b212","description":""},{"name":"Security Key","item":[{"name":"Get JWE security key","id":"76005cc1-47f8-475f-8257-6b4d6eed5fad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/appkey","description":"<h1 id=\"description\">Description</h1>\n<p>Get The JWE token Key</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_delete\", \"cidaas:security_key_read\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>No Request</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppKeySettings;\n}\ninterface IAppKeySettings {\n    id: string,\n    _id: string,\n    keyType: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","appkey"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"76005cc1-47f8-475f-8257-6b4d6eed5fad"},{"name":"Delete JWE security key ","id":"731bf63d-7d34-4cf3-9b40-f2173d17ae98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseurl}}/apps-srv/appkey","description":"<h1 id=\"description\">Description</h1>\n<p>To delete JWE security key </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_delete\", \"cidaas:security_key_delete\", \"cidaas:delete\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>No Request</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IDeleteJWE;\n}\ninterface IDeleteJWE {\n   deleted:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","appkey"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"731bf63d-7d34-4cf3-9b40-f2173d17ae98"}],"id":"2b159619-06fe-4dad-961d-34476b0b6faa","_postman_id":"2b159619-06fe-4dad-961d-34476b0b6faa","description":""},{"name":"Provider","item":[{"name":"Get Client details by login provider","id":"b1529f90-dcef-479d-966c-5ec1953ed065","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/loginproviders/byloginprovider?login_provider=facebook","description":"<h1 id=\"description\">Description</h1>\n<p>To get Client details by login provider (lite data)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"login_provider\" in the query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>login_provider:string;\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor;\n}\ninterface IAppAccessor{\nclient_id:string,\nclient_name:string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","loginproviders","byloginprovider"],"host":["{{baseurl}}"],"query":[{"key":"login_provider","value":"facebook"}],"variable":[]}},"response":[],"_postman_id":"b1529f90-dcef-479d-966c-5ec1953ed065"},{"name":"Get loginable clients","id":"1a0c2346-6f64-47a2-bb33-be0f68da9e33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/loginproviders/loginable","description":"<h1 id=\"description\">Description</h1>\n<p>Get loginable clients(lite data)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor[];\n}\ninterface IAppAccessor{\nclient_id:string,\nclient_name:string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","loginproviders","loginable"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a0c2346-6f64-47a2-bb33-be0f68da9e33"},{"name":"Update login provider for the Client","id":"9f3b5d4a-badc-4f5b-8567-8a742bc4da66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"25b002b1-6871-4f49-bf45-c3146e2acc5c\",\n\t\"deleted\":false,\n\t\"type\":\"SAML\"\n}"},"url":"{{baseurl}}/apps-srv/loginproviders/update/:login_provider","description":"<h1 id=\"description\">Description</h1>\n<p>Update login provider details in app settings from login providers settings.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"login_provider\" in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>login_provider:string\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-TypeScript\">interface IAppLoginProviderUpdateEntity {\n    login_provider: IProviderMetadData;\n    client_id: string; // *\n    deleted: boolean; // *\n    type: string;\n}\ninterface IProviderMetadData {\n    logo_url: string;\n    provider_name: string;\n    display_name: string;\n    type: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUpdateResponse;\n}\ninterface IUpdateResponse{\n    updated:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","loginproviders","update",":login_provider"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"test","key":"login_provider"}]}},"response":[],"_postman_id":"9f3b5d4a-badc-4f5b-8567-8a742bc4da66"}],"id":"7287759c-74ec-492d-9a89-0408948f52ad","_postman_id":"7287759c-74ec-492d-9a89-0408948f52ad","description":""},{"name":"Registration Fields","item":[{"name":"Get Client details by field key","id":"8346baea-4caa-4e80-8bed-5c94cdcc4f49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/reg_fields/byfieldkey?fieldKey=first_name","description":"<h1 id=\"description\">Description</h1>\n<p>Get Client details by field key</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>fieldKey:string;\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor;\n}\ninterface IAppAccessor {\n    id: string,\n    _id: string,\n    application_type: string,\n    client_id: string,\n    client_secret: string,\n    redirect_uris: string[],\n    response_types: string[],\n    grant_types: string[],\n    client_name: string,\n    client_display_name: string,\n    logo_uri: string,\n    policy_uri: string,\n    tos_uri: string,\n    default_max_age: number,\n    token_lifetime_in_seconds: number,\n    id_token_lifetime_in_seconds: number,\n    refresh_token_lifetime_in_seconds: number,\n    initiate_login_uri: string,\n    contacts: string[],\n    // for standard\n    client_secret_expires_at: number,\n    client_id_issued_at: number,\n    registration_client_uri: string,\n    registration_access_token: string,\n    client_uri: string,\n    jwks_uri: string,\n    jwks: string,\n    sector_identifier_uri: string,\n    subject_type: string,\n    id_token_signed_response_alg: string, // SHA256,RSA256\n    id_token_encrypted_response_alg: string,\n    id_token_encrypted_response_enc: string,\n    userinfo_signed_response_alg: string,\n    userinfo_encrypted_response_alg: string,\n    userinfo_encrypted_response_enc: string,\n    request_object_signing_alg: string,\n    request_object_encryption_alg: string,\n    request_object_encryption_enc: string,\n    request_uris: string[],\n    token_endpoint_auth_method: string,\n    token_endpoint_auth_signing_alg: string,\n    require_auth_time: boolean,\n    default_acr_values: string[],\n\n    // cidaas specific\n    client_type: string,\n    company_address: string,\n    company_name: string,\n    company_website: string,\n    description: string,\n    allowed_web_origins: string[],\n    allowed_logout_urls: string[],\n    allowed_origins: string[],\n    application_meta_data: {},\n    login_providers: string[],\n    custom_providers: IProviderMetadData[],\n    saml_providers: IProviderMetadData[],\n    ad_providers: IProviderMetadData[],\n    allowed_scopes: string[],\n    default_scopes: string[],\n    pending_scopes: string[],\n    app_owner: string,\n    jwe_enabled: boolean,\n    user_consent: boolean,\n    allowed_groups: IAllowedGroups[],\n    deleted: boolean,\n    enabled: boolean,\n    allowed_fields: string[],\n    required_fields: string[],\n    hosted_page_group: string,\n    consent_page_group: string,\n    mobile_settings: IAppMobileSettings,\n    appKey: IAppKeySettings,\n    additional_access_token_payload: string[],\n    always_ask_mfa: boolean,\n    push_config: IPushConfig,\n    auto_login_after_register: boolean;\n    allow_login_with: string[];\n    register_with_login_information: boolean;\n    fds_enabled: boolean;\n    enable_passwordless_auth: boolean;\n    enable_deduplication: boolean;\n    allow_disposable_email: boolean;\n    validate_phone_number: boolean;\n    allowed_mfa: string[],\n    password_policy_ref: string;\n    captcha_ref: string;\n    captcha_refs: string[];\n    consent_refs: string[];\n    email_verification_required: boolean;\n    mobile_number_verification_required: boolean;\n    // roles restriction\n    accept_roles_in_the_registration: boolean;\n    allowed_roles: string[],\n    default_roles: string[],\n    enable_classical_provider: boolean;\n    // just for the display\n    sub: string,\n    role: string,\n    is_hybrid_app: boolean;\n    is_remember_me_selected: boolean;\n\n}\n\ninterface IProviderMetadData {\n    logo_url: string;\n    provider_name: string;\n    display_name: string;\n    type: string;\n}\n\ninterface IAllowedGroups {\n    id: string,\n    _id: string,\n    groupId: string;\n    roles: string[];\n}\n\ninterface IAppMobileSettings {\n    id: string,\n    _id: string,\n    teamId: string;\n    bundleId: string;\n    packageName: string;\n    keyHash: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 :EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","reg_fields","byfieldkey"],"host":["{{baseurl}}"],"query":[{"key":"fieldKey","value":"first_name"}],"variable":[]}},"response":[],"_postman_id":"8346baea-4caa-4e80-8bed-5c94cdcc4f49"},{"name":"Get loginable clients","id":"d3b43779-1e0f-4329-8968-80bcaf7cf407","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/reg_fields/loginable","description":"<h1 id=\"description\">Description</h1>\n<p>Get loginable clients </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor[];\n}\ninterface IAppAccessor{\nid:string,\n_id:string,\nclient_id:string,\nclient_name:string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","reg_fields","loginable"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d3b43779-1e0f-4329-8968-80bcaf7cf407"},{"name":"Update allowed fields for the Client","id":"5277b39f-e8a8-4dcc-adfd-c9bab78ff8e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"client_id\"\n}"},"url":"{{baseurl}}/apps-srv/reg_fields/update/:field_key","description":"<h1 id=\"description\">Description</h1>\n<p>Update allowed fields for the Client </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"IAppRegFieldUpdateEntity\" in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-TypeScript\">interface IAppRegFieldUpdateEntity {\n    client_id: string; // *\n    field_key: string; // *\n    deleted: boolean;\n}\n\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppRegFieldUpdateEntity;\n}\ninterface IAppRegFieldUpdateEntity{\n    updated:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","reg_fields","update",":field_key"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"d85ed2be-5584-4aea-a94f-14aa5af2a0e4","type":"string","value":"firstname","key":"field_key"}]}},"response":[],"_postman_id":"5277b39f-e8a8-4dcc-adfd-c9bab78ff8e2"},{"name":"Update Registration fields for the Client","id":"c85a56be-cc92-40d7-bece-ea722f8ef071","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"client_id\"\n}"},"url":"{{baseurl}}/apps-srv/reg_fields/update/byfield/:field_key","description":"<h1 id=\"description\">Description</h1>\n<p>Update Registration fields for the Client </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"IAppRegFieldMap\" in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-TypeScript\">interface IAppRegFieldMap {\n    client_id: string; // *\n    field_key: string; // *\n    delete: boolean;\n    type: string;\n}\n\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppRegFieldUpdateEntity;\n}\ninterface IAppRegFieldUpdateEntity{\n    updated:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","reg_fields","update","byfield",":field_key"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"887a9d0f-73b1-47cb-8a4b-c297a16c1657","type":"string","value":"firstname","key":"field_key"}]}},"response":[],"_postman_id":"c85a56be-cc92-40d7-bece-ea722f8ef071"}],"id":"b3845569-30de-4b15-8219-dc291f8c8689","_postman_id":"b3845569-30de-4b15-8219-dc291f8c8689","description":""},{"name":"MFA","item":[{"name":"Get Client details by MFA","id":"7b791cdc-d04a-40c0-8e44-a4c20075fbaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/mfa/bymfa?allowed_mfa=face","description":"<h1 id=\"description\">Description</h1>\n<p>Get Client details by MFA </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"allowed_mfa\" in the Query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><p>#Query Param</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>allowed_mfa:string;\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request \n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor;\n}\ninterface IAppAccessor{\n    client_id:string,\n    client_name:string\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","mfa","bymfa"],"host":["{{baseurl}}"],"query":[{"key":"allowed_mfa","value":"face"}],"variable":[]}},"response":[],"_postman_id":"7b791cdc-d04a-40c0-8e44-a4c20075fbaa"},{"name":"Get loginable clients","id":"8d042fe1-a427-4c66-a05b-aa85a73dc709","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/mfa/loginable","description":"<h1 id=\"description\">Description</h1>\n<p>Get loginable clients</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>No Request </p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request \n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor[];\n}\ninterface IAppAccessor{\n    client_id:string,\n    client_name:string\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","mfa","loginable"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d042fe1-a427-4c66-a05b-aa85a73dc709"},{"name":"Update allowed fields for the Client","id":"c428fddf-1c44-490c-973b-f090cd81f756","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"client_id\"\n}"},"url":"{{baseurl}}/apps-srv/mfa/update/:mfa","description":"<h1 id=\"description\">Description</h1>\n<p>Update allowed fields for the Client</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"mfa\" in the Query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><p>#Path Param</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>mfa :string;\n</code></pre><h1 id=\"request-1\">Request</h1>\n<h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface IAppMFAUpdateEntity {\n    client_id: string; // *\n}\n\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppUpdate;\n}\ninterface IAppUpdate {\n    updated:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","mfa","update",":mfa"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"b2544181-225d-4018-a587-f38fac721cb5","type":"string","value":"face","key":"mfa"}]}},"response":[],"_postman_id":"c428fddf-1c44-490c-973b-f090cd81f756"}],"id":"fac12042-82d9-433f-83c1-57de10df0369","_postman_id":"fac12042-82d9-433f-83c1-57de10df0369","description":""},{"name":"Password Policy","item":[{"name":"Get Client details by pwd","id":"25f31de4-8b8f-492e-8314-bb6963e31493","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/pwd/bypwd?password_policy_ref=face","description":"<h1 id=\"description\">Description</h1>\n<p>Get Client details by pwd</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"password_policy_ref\" in the query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><p>#Query Param</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>password_policy_ref:string\n\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request \n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor;\n}\ninterface IAppAccessor{\n    client_id:string,\n    client_name:string\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","pwd","bypwd"],"host":["{{baseurl}}"],"query":[{"key":"password_policy_ref","value":"face"}],"variable":[]}},"response":[],"_postman_id":"25f31de4-8b8f-492e-8314-bb6963e31493"},{"name":"Get loginable clients","id":"f84955fc-9854-4c1f-9f0b-e98905d27e5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/pwd/loginable","description":"<h1 id=\"description\">Description</h1>\n<p>Get loginable clients</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>no request</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request \n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor[];\n}\ninterface IAppAccessor{\n    client_id:string,\n    client_name:string\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","pwd","loginable"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f84955fc-9854-4c1f-9f0b-e98905d27e5a"},{"name":"Update allowed pwd for the Client","id":"13ea0bd7-2a8b-4366-8a85-7e1d9f4ba857","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"rt2584e2-0c7d-4742-9078-d69b3739da34\"\n}"},"url":"{{baseurl}}/apps-srv/pwd/update/:password_policy_ref","description":"<h1 id=\"description\">Description</h1>\n<p>Update allowed pwd for the Client</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"IAppPWDPolicyUpdateEntity\" in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IAppPWDPolicyUpdateEntity {\n    client_id: string; // *\n    password_policy_ref: string; // *\n    deleted: boolean; // *\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUpdatePwd;\n}\ninterface IUpdatePwd{\n    updated:boolean;\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","pwd","update",":password_policy_ref"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"b984de58-4550-4e1f-b172-199da12b1928","type":"string","value":"rt2584e2-0c7d-4742-9078-d69b3739da34","key":"password_policy_ref"}]}},"response":[],"_postman_id":"13ea0bd7-2a8b-4366-8a85-7e1d9f4ba857"}],"id":"d6d36033-e453-41e6-b72f-44a9afd362c0","_postman_id":"d6d36033-e453-41e6-b72f-44a9afd362c0","description":""},{"name":"Captcha","item":[{"name":"Get Client details by captcha","id":"5767114b-9b84-4f49-815d-059ca8a6376b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/captcha/bycaptcha?captcha_ref=face","description":"<h1 id=\"description\">Description</h1>\n<p>Get Client details by captcha</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"captcha_ref\" in the Query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><p>#Query Param</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>captcha_ref\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request \n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor;\n}\ninterface IAppAccessor{\n    client_id:string,\n    client_name:string\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","captcha","bycaptcha"],"host":["{{baseurl}}"],"query":[{"key":"captcha_ref","value":"face"}],"variable":[]}},"response":[],"_postman_id":"5767114b-9b84-4f49-815d-059ca8a6376b"},{"name":"Get loginable clients","id":"7e4cdf05-2f96-4102-97c9-e346368b0da2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/apps-srv/captcha/loginable","description":"<h1 id=\"description\">Description</h1>\n<p>Get loginable clients</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>No Request</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request \n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAppAccessor[];\n}\ninterface IAppAccessor{\n    client_id:string,\n    client_name:string\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","captcha","loginable"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e4cdf05-2f96-4102-97c9-e346368b0da2"},{"name":"Update captcha for the Client","id":"4ea29791-b5d6-4662-9f30-108308a9d47a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"rt2584e2-0c7d-4742-9078-d69b3739da34\"\n}"},"url":"{{baseurl}}/apps-srv/captcha/update/:captcha_ref","description":"<h1 id=\"description\">Description</h1>\n<p>To update captcha for the Client</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:apps_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"APP_CREATE\", \"APP_DELETE\", \"APP_READ\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IAppCaptchaUpdateEntity {\n    client_id: string; // *\n    captcha_ref: string; // *\n    deleted: boolean; // *\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUpdateCaptcha;\n}\ninterface IUpdateCaptcha{\n    updated:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","captcha","update",":captcha_ref"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"9a34fbd5-527e-45cb-9b1e-b91f7eb2513d","type":"string","value":"082584e2-0c7d-4742-9078-d69b3739da7b","key":"captcha_ref"}]}},"response":[],"_postman_id":"4ea29791-b5d6-4662-9f30-108308a9d47a"}],"id":"a723f410-a490-4845-a3a3-70baa17e0b08","_postman_id":"a723f410-a490-4845-a3a3-70baa17e0b08","description":""}],"id":"2ea37e3b-7daf-4fcb-982b-69f33d9f0e28","_postman_id":"2ea37e3b-7daf-4fcb-982b-69f33d9f0e28","description":""},{"name":"Users","item":[{"name":"Manage Users","item":[{"name":"CRUD","item":[{"name":"Update User","id":"e434e403-3691-4ad0-87f3-be26b0b407ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\":\"sadrick.widmann+free2@gmail.com\",\n  \"provider\":\"self\",\n  \"given_name\":\"Vimal\",\n  \"sub\":\"ba3386bb-99e8-4bba-80ba-2821808bfab8\",\n  \"customFields\":{\n  \t\"customerNumber\":\"4567\"\n  }\n}"},"url":"{{baseurl}}/users-srv/user/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>To update the user by sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\", \"cidaas:users_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class UserEntity {\n\n    // user accounts\n    userStatus: string = \"\";\n    user_status: string = \"\";\n    user_status_reason: string = \"\";\n    // social identies\n    username: string = \"\";\n    sub: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    middle_name: string = \"\";\n    nickname: string = \"\";\n    email: string = \"\";\n    email_verified: boolean = false;\n    mobile_number: string = \"\";\n    mobile_number_obj: IMobileEntity | null = null;\n    mobile_number_verified: boolean = false;\n    phone_number: string = \"\";\n    phone_number_obj: IMobileEntity | null = null;\n    phone_number_verified: boolean = false;\n    profile: string = \"\";\n    picture: string = \"\";\n    website: string = \"\";\n    gender: string = \"\";\n    zoneinfo: string = \"\";\n    locale: string = \"\";\n    birthdate: Date | null = null;\n    address?: AddressEntity;\n    customFields?: any; // Map&lt;string,ICustomFieldData&gt;\n    identityCustomFields?: any;\n    password: string = \"\";\n    provider: string = \"\";\n    identityId: string = \"\";\n    providerUserId: string = \"\";\n\n    mfa_enabled?: boolean;\n\n    // just for migration\n    old_password_hash: string = \"\";\n\n\n    // groups and roles\n    roles?: string[];\n    groups?: IUserGroupMap[];\n    userGroups?: IUserGroupMap[];\n    trackId: string = \"\";\n    rawJSON: string = \"\";\n    need_reset_password: boolean = false;\n\n    no_event: boolean = false;\n    consents?: IConsentField[];\n\n    consent_track_ids?: string[];\n    ignore_default_roles?: string[];\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUpdateUser;\n}\ninterface IUpdateUser{\n updated: boolean;\n }\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"d80e9556-dc3d-4ae9-b0c1-8bcb4e2526fa","type":"string","value":"ba3386bb-99e8-4bba-80ba-2821808bfab8","key":"sub"}]}},"response":[],"_postman_id":"e434e403-3691-4ad0-87f3-be26b0b407ca"},{"name":"Update user (From user profile)","id":"66be0ba3-a6cf-4f9b-bad6-e2491d84eb21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Connection","value":"keep-alive"},{"key":"Pragma","value":"no-cache"},{"key":"Origin","value":"https://cidaas-in-action.cidaas.de"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36"},{"key":"content-type","value":"application/json"},{"key":"Accept","value":"application/json, text/plain, */*"},{"key":"Cache-Control","value":"no-cache"},{"key":"access_token","value":"eyJhbGciOiJSUzI1NiIsImtpZCI6IjAyMTc3MTlmLTVmMDItNGVmMy1hZTIwLWMwMDllYjM5M2RlNCJ9.eyJzaWQiOiIxMTVmNTFkYy1lYTQ3LTRjY2ItYTExNi1iYzI4YWJkZWI4MTEiLCJzdWIiOiIxZTUyZWQ3Ny01OTNmLTQyMjEtYTJiZi1iNGFmZTcyZjgzYTYiLCJpc3ViIjoiMWJiMjVmNDAtODVhZi00ZjZiLTkyOTAtZDE2NGFmNmNjODYxIiwiYXVkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJpYXQiOjE1NzQwNzc1NjEsImF1dGhfdGltZSI6MTU3NDA3NzU2MSwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImp0aSI6ImQ4MmFiZDIzLThkYzEtNGUyZi05NmE5LWNmOWVjZGNlMzUzNyIsInNjb3BlcyI6WyJjaWRhYXM6cmVnaXN0ZXIiLCJjaWRhYXM6bG9naW4iLCJjaWRhYXM6dXNlcmluZm8iLCJjaWRhYXM6dXNlcnVwZGF0ZSIsImhvbGlkYXlsaXN0OnJlYWQiLCJvcGVuaWQiLCJwcm9maWxlIiwiZW1haWwiLCJhZGRyZXNzIiwicGhvbmUiLCJvZmZsaW5lX2FjY2VzcyIsInJvbGVzIiwiZ3JvdXBzIiwiaWRlbnRpdGllcyIsImNpZGFhczp1c2Vyc19pbnZpdGUiLCJjaWRhYXM6dXNlcnNfc2VhcmNoIiwiY2lkYWFzOnVzZXJzX3JlYWQiLCJjaWRhYXM6YWRtaW5fcmVhZCIsIm9mZmxpbmVfYWNjZXNzIl0sInJvbGVzIjpbIlVTRVIiLCJTRUNPTkRBUllfQURNSU4iXSwicm9sZSI6IlVTRVIsU0VDT05EQVJZX0FETUlOIiwiY2xpZW50aWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImV4cCI6MTU3NDE2Mzk2MTM4NCwic2NvcGUiOiJjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOmxvZ2luIGNpZGFhczp1c2VyaW5mbyBjaWRhYXM6dXNlcnVwZGF0ZSBob2xpZGF5bGlzdDpyZWFkIG9wZW5pZCBwcm9maWxlIGVtYWlsIGFkZHJlc3MgcGhvbmUgb2ZmbGluZV9hY2Nlc3Mgcm9sZXMgZ3JvdXBzIGlkZW50aXRpZXMgY2lkYWFzOnVzZXJzX2ludml0ZSBjaWRhYXM6dXNlcnNfc2VhcmNoIGNpZGFhczp1c2Vyc19yZWFkIGNpZGFhczphZG1pbl9yZWFkIG9mZmxpbmVfYWNjZXNzIn0.HGoxBqaBZ3Uhsbd_BfEM4gABP1G0_jjVjmiUW6ZzFQl94Izz-r63fAgUK6-AAiVglXXGj3P8Vme7Yg9hlNhKvA"},{"key":"Expires","value":"0"},{"key":"Sec-Fetch-Site","value":"same-origin"},{"key":"Sec-Fetch-Mode","value":"cors"},{"key":"Referer","value":"https://cidaas-in-action.cidaas.de/user-profile/editprofile"},{"key":"Accept-Encoding","value":"gzip, deflate, br"},{"key":"Accept-Language","value":"en-GB,en-US;q=0.9,en;q=0.8"},{"key":"Cookie","value":"__utma=182165173.2114955806.1574077516.1574077516.1574077516.1; __utmc=182165173; __utmz=182165173.1574077516.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utmt_UA-78259920-1=1; cidaas_dr=e11002b1-61ec-4b91-8185-cfd39f074863; cidaas_sid=115f51dc-ea47-4ccb-a116-bc28abdeb811; cidaas_sso=92e9ed81-8681-4329-a00d-412bc1b5952d; __utmb=182165173.4.10.1574077516; access_token=eyJhbGciOiJSUzI1NiIsImtpZCI6IjAyMTc3MTlmLTVmMDItNGVmMy1hZTIwLWMwMDllYjM5M2RlNCJ9.eyJzaWQiOiIxMTVmNTFkYy1lYTQ3LTRjY2ItYTExNi1iYzI4YWJkZWI4MTEiLCJzdWIiOiIxZTUyZWQ3Ny01OTNmLTQyMjEtYTJiZi1iNGFmZTcyZjgzYTYiLCJpc3ViIjoiMWJiMjVmNDAtODVhZi00ZjZiLTkyOTAtZDE2NGFmNmNjODYxIiwiYXVkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJpYXQiOjE1NzQwNzc1NjEsImF1dGhfdGltZSI6MTU3NDA3NzU2MSwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImp0aSI6ImQ4MmFiZDIzLThkYzEtNGUyZi05NmE5LWNmOWVjZGNlMzUzNyIsInNjb3BlcyI6WyJjaWRhYXM6cmVnaXN0ZXIiLCJjaWRhYXM6bG9naW4iLCJjaWRhYXM6dXNlcmluZm8iLCJjaWRhYXM6dXNlcnVwZGF0ZSIsImhvbGlkYXlsaXN0OnJlYWQiLCJvcGVuaWQiLCJwcm9maWxlIiwiZW1haWwiLCJhZGRyZXNzIiwicGhvbmUiLCJvZmZsaW5lX2FjY2VzcyIsInJvbGVzIiwiZ3JvdXBzIiwiaWRlbnRpdGllcyIsImNpZGFhczp1c2Vyc19pbnZpdGUiLCJjaWRhYXM6dXNlcnNfc2VhcmNoIiwiY2lkYWFzOnVzZXJzX3JlYWQiLCJjaWRhYXM6YWRtaW5fcmVhZCIsIm9mZmxpbmVfYWNjZXNzIl0sInJvbGVzIjpbIlVTRVIiLCJTRUNPTkRBUllfQURNSU4iXSwicm9sZSI6IlVTRVIsU0VDT05EQVJZX0FETUlOIiwiY2xpZW50aWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImV4cCI6MTU3NDE2Mzk2MTM4NCwic2NvcGUiOiJjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOmxvZ2luIGNpZGFhczp1c2VyaW5mbyBjaWRhYXM6dXNlcnVwZGF0ZSBob2xpZGF5bGlzdDpyZWFkIG9wZW5pZCBwcm9maWxlIGVtYWlsIGFkZHJlc3MgcGhvbmUgb2ZmbGluZV9hY2Nlc3Mgcm9sZXMgZ3JvdXBzIGlkZW50aXRpZXMgY2lkYWFzOnVzZXJzX2ludml0ZSBjaWRhYXM6dXNlcnNfc2VhcmNoIGNpZGFhczp1c2Vyc19yZWFkIGNpZGFhczphZG1pbl9yZWFkIG9mZmxpbmVfYWNjZXNzIn0.HGoxBqaBZ3Uhsbd_BfEM4gABP1G0_jjVjmiUW6ZzFQl94Izz-r63fAgUK6-AAiVglXXGj3P8Vme7Yg9hlNhKvA; logourl=https://cdn.cidaas.de/management/images/logo.png; tenant_name=Cidaas%20In%20Action; tenant_key=cidaas-demo; loginWith=[%22EMAIL%22%2C%22MOBILE%22%2C%22USER_NAME%22]; identityId=1bb25f40-85af-4f6b-9290-d164af6cc861"}],"body":{"mode":"raw","raw":"{\n  \"customFields\": {\n    \"ContactAllowed\": {\n      \"value\": [\n        \"Feel free to contact me\"\n      ],\n      \"readOnly\": false,\n      \"dataType\": \"CHECKBOX\",\n      \"internal\": false,\n      \"lastUpdateFrom\": \"SELF\"\n    }\n  },\n  \"username\": \"dineshbabuspr\",\n  \"email\": \"dineshbabuspr@gmail.com\",\n  \"given_name\": \"Dinesh\",\n  \"family_name\": \"Babu\",\n  \"mobile_number\": \"+919886232655\",\n  \"provider\": \"self\",\n  \"identityId\": \"1bb25f40-85af-4f6b-9290-d164af6cc861\"\n}"},"url":"{{baseurl}}/users-srv/user/profile/{{sub}}","description":"<h1 id=\"description\">Description</h1>\n<p>To update the user by sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class UserEntity {\n\n    // user accounts\n    userStatus: string = \"\";\n    user_status: string = \"\";\n    user_status_reason: string = \"\";\n    // social identies\n    username: string = \"\";\n    sub: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    middle_name: string = \"\";\n    nickname: string = \"\";\n    email: string = \"\";\n    email_verified: boolean = false;\n    mobile_number: string = \"\";\n    mobile_number_obj: IMobileEntity | null = null;\n    mobile_number_verified: boolean = false;\n    phone_number: string = \"\";\n    phone_number_obj: IMobileEntity | null = null;\n    phone_number_verified: boolean = false;\n    profile: string = \"\";\n    picture: string = \"\";\n    website: string = \"\";\n    gender: string = \"\";\n    zoneinfo: string = \"\";\n    locale: string = \"\";\n    birthdate: Date | null = null;\n    address?: AddressEntity;\n    customFields?: any; // Map&lt;string,ICustomFieldData&gt;\n    identityCustomFields?: any;\n    password: string = \"\";\n    provider: string = \"\";\n    identityId: string = \"\";\n    providerUserId: string = \"\";\n\n    mfa_enabled?: boolean;\n\n    // just for migration\n    old_password_hash: string = \"\";\n\n\n    // groups and roles\n    roles?: string[];\n    groups?: IUserGroupMap[];\n    userGroups?: IUserGroupMap[];\n    trackId: string = \"\";\n    rawJSON: string = \"\";\n    need_reset_password: boolean = false;\n\n    no_event: boolean = false;\n    consents?: IConsentField[];\n\n    consent_track_ids?: string[];\n    ignore_default_roles?: string[];\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUpdateUser;\n}\ninterface IUpdateUser{\n updated: boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","profile","{{sub}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"66be0ba3-a6cf-4f9b-bad6-e2491d84eb21"},{"name":"Change user status","id":"fb16e3c4-a3d1-4648-9711-11a75864b8fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userStatus\":\"VERIFIED\",\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"email_verified\":true,\n\t\"mobile_number_verified\":true,\n\t\"phone_number_verified\":true\n}"},"url":"{{baseurl}}/users-srv/user/changestatus","description":"<h1 id=\"description\">Description</h1>\n<p>To update the user status by sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\", \"cidaas:users_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserCommunicationMediumEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class UserCommunicationMediumEntity {\n    sub?: string;\n    identityId?: string;\n    email?: string;\n    email_verified?: boolean;\n    mobile_number?: string;\n    mobile_number_verified?: boolean;\n    phone_number?: string;\n    phone_number_verified?: boolean;\n    client_id?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUpdateUser;\n}\ninterface IUpdateUser{\n updated: boolean;\n }\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","changestatus"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fb16e3c4-a3d1-4648-9711-11a75864b8fe"},{"name":"Get User Profile Internal","id":"c53ef614-abfc-4898-be59-f44de89d9263","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/internal/userinfo/profile/9a0f4ce5-777b-4b10-b0bd-e96f8c886e3f","description":"<h1 id=\"description\">Description</h1>\n<p>To load the userinfo by sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>sub</code> in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserProfileEntity;\n}\n\n\ninterface UserProfileEntity {\n    userAccount: IUserAccounts;\n    identity: ISocialIdentity;\n    roles: string[];\n    groups: IUserGroupFlatEntity[];\n    customFields: any;\n}\ninterface IUserAccounts  {\n    _id: string;\n    id: string;\n    sub: string,\n    userStatus: string,\n    user_status_reason: string,\n    lastLoggedInTime: Date,\n    lastUsedIdentity: string,\n    mfa_enabled: boolean;\n\n\n    createdTime: Date,\n    groups: IUserGroupMap[]\n}\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\ninterface ISocialIdentity {\n    _id: string;\n    id: string;\n    sub: string,\n    given_name: string,\n    family_name: string,\n    middle_name: string,\n    nickname: string,\n\n    email: string,\n    email_verified: boolean,\n\n    mobile_number: string,\n    mobile_number_obj: IMobileEntity,\n    mobile_number_verified: boolean,\n\n    phone_number: string,\n    phone_number_obj: IMobileEntity,\n    phone_number_verified: boolean,\n\n    profile: string,\n    picture: string,\n    website: string,\n    gender: string,\n    zoneinfo: string,\n    locale: string,\n    birthdate: Date,\n    address: IUserAddress,\n\n    // cidaas specific\n    provider: string;\n    providerUserId: string;\n    username: string,\n    identityCustomFields: any,\n    password_hash: string,\n    password_salt: string,\n\n\n\n    // social provider specific \n    raw_json: string,\n\n    // only for migration\n    old_password_hash: string,\n\n    // db defaults\n    updatedTime: Date\n}\ninterface IUserGroupFlatEntity {\n    sub: string;\n    groupId: string;\n    groupType: string;\n    path: string;\n    roles: string[];\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","userinfo","profile","9a0f4ce5-777b-4b10-b0bd-e96f8c886e3f"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c53ef614-abfc-4898-be59-f44de89d9263"},{"name":"Remove Custom Field [By User]","id":"207d97ea-67a1-4c4e-a910-b11110a25d45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"fieldKey\":\"test2\"\n}"},"url":"{{baseurl}}/users-srv/user/remove/customfield","description":"<p>This  API is used to remove the customfield which is associalted with the user. It takes the user  details from the access token. In body it expects fieldKey:String as input. </p>\n<h3 id=\"header\">Header</h3>\n<p>Authorization :  Bearer cidaas_token</p>\n<h3 id=\"request-in--body\">Request in  Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"fieldKey\":\"test2\"\n}\n</code></pre>\n<h3 id=\"success-response\">Success response</h3>\n<p>status code: 200</p>\n<p>Sample Reponse ,</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IDelteUser;\n}\ninterface IDelteUser{\n deleted: boolean;\n }\n</code></pre><h3 id=\"error-response\">Error Response</h3>\n<p>status code: 502</p>\n","urlObject":{"path":["users-srv","user","remove","customfield"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"207d97ea-67a1-4c4e-a910-b11110a25d45"},{"name":"Remove Custom Field [By Admin]","id":"3b2d3b09-a709-44fb-aed5-f543bf444f3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"fieldKey\":\"ch\"\n}"},"url":"{{baseurl}}/users-srv/user/remove/customfield/2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9","description":"<p>This  API is used to remove the customfield from user info by admins.</p>\n<p>In path params it expects the sub:String as input. (/users-srv/user/remove/customfield/:sub ===&gt; Ex : /users-srv/user/remove/customfield/2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c8)</p>\n<p>In body it expects fieldKey:String as input. </p>\n<h3 id=\"header\">Header</h3>\n<p>Authorization :  Bearer cidaas_token</p>\n<h3 id=\"request-in--body\">Request in  Body</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"fieldKey\":\"test2\"\n}\n</code></pre>\n<h3 id=\"role-and-scope-requirement\">Role and Scope Requirement</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_write\", \"cidaas_users_write\", \"cidaas:write\", \"cidaas:userupdate\"],\ngroups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_DELETE\"]\n            }\n        ]\n</code></pre><h3 id=\"success-response\">Success response</h3>\n<p>status code: 200</p>\n<p>Sample Reponse ,</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: boolean;\n}\n</code></pre><h3 id=\"error-response\">Error Response</h3>\n<p>status code: 502</p>\n","urlObject":{"path":["users-srv","user","remove","customfield","2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b2d3b09-a709-44fb-aed5-f543bf444f3f"},{"name":"Update user communication status (Internal)","id":"02774337-75cc-4c0a-9480-e1c1e56daa93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"\",\n\t\"email\":\"\"\n}"},"url":"{{baseurl}}/users-srv/user/communication/status","description":"<h1 id=\"description\">Description</h1>\n<p>To update the user communication status by sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\", \"cidaas:users_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserCommunicationMediumEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class UserCommunicationMediumEntity {\n    sub?: string;\n    identityId?: string;\n    email?: string;\n    email_verified?: boolean;\n    mobile_number?: string;\n    mobile_number_verified?: boolean;\n    phone_number?: string;\n    phone_number_verified?: boolean;\n    client_id?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUpdateUser;\n}\ninterface IUpdateUser{\n updated: boolean;\n }\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","communication","status"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"02774337-75cc-4c0a-9480-e1c1e56daa93"},{"name":"Load userinfo by scopeandclaims","id":"e9ad4cbb-a2aa-4e57-bb67-372ad112f593","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \n  \"sub\":\"ba3386bb-99e8-4bba-80ba-2821808bfab8\",\n  \"scopes\":[\"email\",\"profile\"]\n}"},"url":"{{baseurl}}/users-srv/user/byscopeandclaims","description":"<h1 id=\"description\">Description</h1>\n<p>Load userinfo by scopeandclaims</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\", \"cidaas:users_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserInfoRequestEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class UserInfoRequestEntity {\n    sub: string = \"\";// *\n    scopes: string[] = []; // *\n    claims?: IClaimRequestEntity; \n    usage?: string;\n}\ninterface IClaimRequestEntity {\n    userinfo: IClaimBodyEntity;\n    id_token: IClaimBodyEntity;\n}\ninterface IClaimBodyEntity {\n    [key: string]: IClaimDataEntity;\n}\ninterface IClaimDataEntity {\n    value: string;\n    values: string[];\n    essential: boolean;\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: any;\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","byscopeandclaims"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9ad4cbb-a2aa-4e57-bb67-372ad112f593"},{"name":"Load userinfo lite","id":"25424112-5db8-41bc-9472-738f3959e15e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\":\"sadrick.widmann+free2@gmail.com\",\n  \"provider\":\"self\",\n  \"given_name\":\"Vimal\",\n  \"sub\":\"ba3386bb-99e8-4bba-80ba-2821808bfab8\",\n  \"customFields\":{\n  \t\"customerNumber\":\"4567\"\n  }\n}"},"url":"{{baseurl}}/users-srv/user/lite","description":"<h1 id=\"description\">Description</h1>\n<p>Load userinfo with limited information</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\", \"cidaas:users_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>FindUserQuery</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class FindUserQuery {\n    sub: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    username: string = \"\";\n    provider: string = \"\";\n    providerUserId: string = \"\";\n\n    sub_not: string = \"\";\n}\n\nclass QueryEntity {\n    public lastQueryTime?: Date;\n    public fields: string | any = \"\";\n    public justCount: boolean = false;\n    public deleted: boolean | null = null;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\n\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserInfoLite;\n}\nclass UserInfoLite {\n    sub: string = \"\";\n    identityId: string = \"\";\n    name: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    provider: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    email_verified: boolean = false;\n    mobile_number_verified: boolean = false;\n    username: string = \"\";\n    userStatus: string = \"\";\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","lite"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"25424112-5db8-41bc-9472-738f3959e15e"},{"name":"Load raw userinfo by sub (Internal)","id":"b7994982-1743-41f1-99af-95628c263f43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/user/raw/{{sub}}","description":"<h1 id=\"description\">Description</h1>\n<p>Load userinfo by scopeandclaims</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\", \"cidaas:users_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserInfoRequestEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class UserInfoRequestEntity {\n    sub: string = \"\";// *\n    scopes: string[] = []; // *\n    claims?: IClaimRequestEntity; \n    usage?: string;\n}\ninterface IClaimRequestEntity {\n    userinfo: IClaimBodyEntity;\n    id_token: IClaimBodyEntity;\n}\ninterface IClaimBodyEntity {\n    [key: string]: IClaimDataEntity;\n}\ninterface IClaimDataEntity {\n    value: string;\n    values: string[];\n    essential: boolean;\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\n\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserEntity;\n}\nclass UserEntity {\n\n    // user accounts\n    userStatus: string = \"\";\n    user_status: string = \"\";\n    user_status_reason: string = \"\";\n    // social identies\n    username: string = \"\";\n    sub: string = \"\";\n    given_name: string = \"\"; // *\n    family_name: string = \"\";\n    middle_name: string = \"\";\n    nickname: string = \"\";\n    email: string = \"\";\n    email_verified: boolean = false;\n    mobile_number: string = \"\";\n    mobile_number_obj: IMobileEntity | null = null;\n    mobile_number_verified: boolean = false;\n    phone_number: string = \"\";\n    phone_number_obj: IMobileEntity | null = null;\n    phone_number_verified: boolean = false;\n    profile: string = \"\";\n    picture: string = \"\";\n    website: string = \"\";\n    gender: string = \"\";\n    zoneinfo: string = \"\";\n    locale: string = \"\";\n    birthdate: Date | null = null;\n    address?: AddressEntity;\n    customFields?: any; // Map&lt;string,ICustomFieldData&gt;\n    identityCustomFields?: any;\n    password: string = \"\"; // *\n    provider: string = \"\"; // *\n    identityId: string = \"\";\n    providerUserId: string = \"\";\n\n    mfa_enabled?: boolean;\n\n    // just for migration\n    old_password_hash: string = \"\";\n\n\n    // groups and roles\n    roles?: string[];\n    groups?: IUserGroupMap[];\n    userGroups?: IUserGroupMap[];\n    trackId: string = \"\";\n    rawJSON: string = \"\";\n    need_reset_password: boolean = false;\n\n    no_event: boolean = false;\n    consents?: IConsentField[];\n\n    consent_track_ids?: string[];\n    ignore_default_roles?: string[];\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","raw","{{sub}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b7994982-1743-41f1-99af-95628c263f43"},{"name":"Load social identity information by sub (Internal)","id":"e7e442e2-6579-43dd-b54e-9d80d0749552","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/userinfo/social/{{sub}}","description":"<h1 id=\"description\">Description</h1>\n<p>Load social identity information by sub </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect <code>sub</code> in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\n\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserWrapperEntity;\n}\ninterface UserWrapperEntity {\n    userAccount: IUserAccounts;\n    identities: ISocialIdentity[];\n    roles: string[];\n    groups: UserGroupFlatEntity[];\n    customFields: any;\n}\n\ninterface IUserAccounts {\n    _id: string;\n    id: string;\n    sub: string,\n    userStatus: string,\n    user_status_reason: string,\n    lastLoggedInTime: Date,\n    lastUsedIdentity: string,\n    mfa_enabled: boolean;\n\n\n    createdTime: Date,\n    groups: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n\ninterface ISocialIdentity  {\n    _id: string;\n    id: string;\n    sub: string,\n    given_name: string,\n    family_name: string,\n    middle_name: string,\n    nickname: string,\n\n    email: string,\n    email_verified: boolean,\n\n    mobile_number: string,\n    mobile_number_obj: IMobileEntity,\n    mobile_number_verified: boolean,\n\n    phone_number: string,\n    phone_number_obj: IMobileEntity,\n    phone_number_verified: boolean,\n\n    profile: string,\n    picture: string,\n    website: string,\n    gender: string,\n    zoneinfo: string,\n    locale: string,\n    birthdate: Date,\n    address: IUserAddress,\n\n    // cidaas specific\n    provider: string;\n    providerUserId: string;\n    username: string,\n    identityCustomFields: any,\n    password_hash: string,\n    password_salt: string,\n\n\n\n    // social provider specific \n    raw_json: string,\n\n    // only for migration\n    old_password_hash: string,\n\n    // db defaults\n    updatedTime: Date\n}\n\nclass UserGroupFlatEntity {\n    sub?: string;\n    groupId?: string;\n    groupType?: string;\n    path?: string;\n    roles?: string[];\n    groupPath?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","userinfo","social","{{sub}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7e442e2-6579-43dd-b54e-9d80d0749552"},{"name":"Load social identity information by sub's (Internal)","id":"e60d5cfa-058b-4e3d-8d65-2bc995ba82b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"subIds\":[]\n}"},"url":"{{baseurl}}/users-srv/userinfo/social/multiple","description":"<h1 id=\"description\">Description</h1>\n<p>Load social identity information by sub </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect <code>subIds</code> in the request body entity.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>subIds:[]\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\n\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserInfoLite;\n}\nclass UserInfoLite {\n    sub: string = \"\";\n    identityId: string = \"\";\n    name: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    provider: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    email_verified: boolean = false;\n    mobile_number_verified: boolean = false;\n    username: string = \"\";\n    userStatus: string = \"\";\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","userinfo","social","multiple"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e60d5cfa-058b-4e3d-8d65-2bc995ba82b5"},{"name":"Get User Profile by access token ","id":"c94cb1e4-2116-4103-a541-5a080a9674b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/internal/userinfo/profile","description":"<h1 id=\"description\">Description</h1>\n<p>Get User Profile by access token </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\n\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserProfileEntity;\n}\ninterface UserProfileEntity {\n    userAccount: IUserAccounts;\n    identity: ISocialIdentity;\n    roles: string[];\n    groups: IUserGroupFlatEntity[];\n    customFields: any;\n}\ninterface IUserAccounts  {\n    _id: string;\n    id: string;\n    sub: string,\n    userStatus: string,\n    user_status_reason: string,\n    lastLoggedInTime: Date,\n    lastUsedIdentity: string,\n    mfa_enabled: boolean;\n\n\n    createdTime: Date,\n    groups: IUserGroupMap[]\n}\n interface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\ninterface ISocialIdentity {\n    _id: string;\n    id: string;\n    sub: string,\n    given_name: string,\n    family_name: string,\n    middle_name: string,\n    nickname: string,\n\n    email: string,\n    email_verified: boolean,\n\n    mobile_number: string,\n    mobile_number_obj: IMobileEntity,\n    mobile_number_verified: boolean,\n\n    phone_number: string,\n    phone_number_obj: IMobileEntity,\n    phone_number_verified: boolean,\n\n    profile: string,\n    picture: string,\n    website: string,\n    gender: string,\n    zoneinfo: string,\n    locale: string,\n    birthdate: Date,\n    address: IUserAddress,\n\n    // cidaas specific\n    provider: string;\n    providerUserId: string;\n    username: string,\n    identityCustomFields: any,\n    password_hash: string,\n    password_salt: string,\n\n\n\n    // social provider specific \n    raw_json: string,\n\n    // only for migration\n    old_password_hash: string,\n\n    // db defaults\n    updatedTime: Date\n}\ninterface IUserGroupFlatEntity {\n    sub: string;\n    groupId: string;\n    groupType: string;\n    path: string;\n    roles: string[];\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","userinfo","profile"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c94cb1e4-2116-4103-a541-5a080a9674b5"},{"name":"Load user info lite (Internal)","id":"8d788555-88c3-4183-9a97-742d8b94b612","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/internal/userinfo/lite","description":"<h1 id=\"description\">Description</h1>\n<p>Load user info lite (Internal)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp : 211221\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class FindUserQuery  {\n    sub: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    username: string = \"\";\n    provider: string = \"\";\n    providerUserId: string = \"\";\n\n    sub_not: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\n\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserEntity;\n}\nclass UserEntity {\n\n    // user accounts\n    userStatus: string = \"\";\n    user_status: string = \"\";\n    user_status_reason: string = \"\";\n    // social identies\n    username: string = \"\";\n    sub: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    middle_name: string = \"\";\n    nickname: string = \"\";\n    email: string = \"\";\n    email_verified: boolean = false;\n    mobile_number: string = \"\";\n    mobile_number_obj: IMobileEntity | null = null;\n    mobile_number_verified: boolean = false;\n    phone_number: string = \"\";\n    phone_number_obj: IMobileEntity | null = null;\n    phone_number_verified: boolean = false;\n    profile: string = \"\";\n    picture: string = \"\";\n    website: string = \"\";\n    gender: string = \"\";\n    zoneinfo: string = \"\";\n    locale: string = \"\";\n    birthdate: Date | null = null;\n    address?: AddressEntity;\n    customFields?: any; // Map&lt;string,ICustomFieldData&gt;\n    identityCustomFields?: any;\n    password: string = \"\";\n    provider: string = \"\";\n    identityId: string = \"\";\n    providerUserId: string = \"\";\n\n    mfa_enabled?: boolean;\n\n    // just for migration\n    old_password_hash: string = \"\";\n\n\n    // groups and roles\n    roles?: string[];\n    groups?: IUserGroupMap[];\n    userGroups?: IUserGroupMap[];\n    trackId: string = \"\";\n    rawJSON: string = \"\";\n    need_reset_password: boolean = false;\n\n    no_event: boolean = false;\n    consents?: IConsentField[];\n\n    consent_track_ids?: string[];\n    ignore_default_roles?: string[];\n}\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","userinfo","lite"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d788555-88c3-4183-9a97-742d8b94b612"},{"name":"Load classical user info lite (Internal)","id":"059df11d-4aca-4a04-bd8e-999abfd9c5ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/internal/self/userinfo/lite","description":"<h1 id=\"description\">Description</h1>\n<p>Load user info lite (Internal)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp : 211221\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class FindUserQuery  {\n    sub: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    username: string = \"\";\n    provider: string = \"\";\n    providerUserId: string = \"\";\n\n    sub_not: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\n\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserEntity;\n}\nclass UserEntity {\n\n    // user accounts\n    userStatus: string = \"\";\n    user_status: string = \"\";\n    user_status_reason: string = \"\";\n    // social identies\n    username: string = \"\";\n    sub: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    middle_name: string = \"\";\n    nickname: string = \"\";\n    email: string = \"\";\n    email_verified: boolean = false;\n    mobile_number: string = \"\";\n    mobile_number_obj: IMobileEntity | null = null;\n    mobile_number_verified: boolean = false;\n    phone_number: string = \"\";\n    phone_number_obj: IMobileEntity | null = null;\n    phone_number_verified: boolean = false;\n    profile: string = \"\";\n    picture: string = \"\";\n    website: string = \"\";\n    gender: string = \"\";\n    zoneinfo: string = \"\";\n    locale: string = \"\";\n    birthdate: Date | null = null;\n    address?: AddressEntity;\n    customFields?: any; // Map&lt;string,ICustomFieldData&gt;\n    identityCustomFields?: any;\n    password: string = \"\";\n    provider: string = \"\";\n    identityId: string = \"\";\n    providerUserId: string = \"\";\n\n    mfa_enabled?: boolean;\n\n    // just for migration\n    old_password_hash: string = \"\";\n\n\n    // groups and roles\n    roles?: string[];\n    groups?: IUserGroupMap[];\n    userGroups?: IUserGroupMap[];\n    trackId: string = \"\";\n    rawJSON: string = \"\";\n    need_reset_password: boolean = false;\n\n    no_event: boolean = false;\n    consents?: IConsentField[];\n\n    consent_track_ids?: string[];\n    ignore_default_roles?: string[];\n}\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","self","userinfo","lite"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"059df11d-4aca-4a04-bd8e-999abfd9c5ab"},{"name":"Check the user is exists or not (Internal)","id":"9ec86b09-738d-47e7-9bfe-4822c5d345f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/internal/userinfo/check","description":"<h1 id=\"description\">Description</h1>\n<p>Check the user is exists or not (Internal)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp : 211221\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class FindUserQuery  {\n    sub: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    username: string = \"\";\n    provider: string = \"\";\n    providerUserId: string = \"\";\n\n    sub_not: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\n\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserInfoLite;\n}\nclass UserInfoLite {\n    sub: string = \"\";\n    identityId: string = \"\";\n    name: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    provider: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    email_verified: boolean = false;\n    mobile_number_verified: boolean = false;\n    username: string = \"\";\n    userStatus: string = \"\";\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","userinfo","check"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ec86b09-738d-47e7-9bfe-4822c5d345f8"},{"name":"Check the user is exists or not by sub & provider(Internal)","id":"a91176d8-f28a-4ae4-b075-e9b16ee002f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/internal/userinfo/{{sub}}/{{provider}}","description":"<h1 id=\"description\">Description</h1>\n<p>Check the user is exists or not (Internal)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass the <code>sub</code> &amp; <code>provider</code> in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp : 211221\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","userinfo","{{sub}}","{{provider}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a91176d8-f28a-4ae4-b075-e9b16ee002f9"},{"name":"Update decline status by sub (Internal)","id":"4b3c0a98-dfad-44c2-915e-1119ac9e36d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/internal/userstatus/decline/{{sub}}","description":"<h1 id=\"description\">Description</h1>\n<p>Update decline status by sub (Internal)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass the <code>sub</code> in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp : 211221\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUpdatedec;\n}\ninterface IUpdatedec{\n updated: boolean;\n }\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","userstatus","decline","{{sub}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4b3c0a98-dfad-44c2-915e-1119ac9e36d6"},{"name":"Check the mfa status by sub (Internal)","id":"7479d41b-07d9-4186-ae91-46dcebed9a21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/internal/userinfo/check/mfaenabled/{{sub}}","description":"<h1 id=\"description\">Description</h1>\n<p>Check the mfa status by sub (Internal)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass the <code>sub</code> in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp : 211221\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","userinfo","check","mfaenabled","{{sub}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7479d41b-07d9-4186-ae91-46dcebed9a21"},{"name":"Load user info by last logged in identity id (Internal)","id":"eb454f52-f486-440a-87a8-d81a4c6c76de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/userinfo/social/{{sub}}","description":"<h1 id=\"description\">Description</h1>\n<p>Load user info by last logged in identity id (Internal)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect <code>sub</code> in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp:121212\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserWrapperEntity;\n}\ninterface UserWrapperEntity {\n    userAccount: IUserAccounts;\n    identities: ISocialIdentity[];\n    roles: string[];\n    groups: UserGroupFlatEntity[];\n    customFields: any;\n}\n\ninterface IUserAccounts {\n    _id: string;\n    id: string;\n    sub: string,\n    userStatus: string,\n    user_status_reason: string,\n    lastLoggedInTime: Date,\n    lastUsedIdentity: string,\n    mfa_enabled: boolean;\n\n\n    createdTime: Date,\n    groups: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n\ninterface ISocialIdentity  {\n    _id: string;\n    id: string;\n    sub: string,\n    given_name: string,\n    family_name: string,\n    middle_name: string,\n    nickname: string,\n\n    email: string,\n    email_verified: boolean,\n\n    mobile_number: string,\n    mobile_number_obj: IMobileEntity,\n    mobile_number_verified: boolean,\n\n    phone_number: string,\n    phone_number_obj: IMobileEntity,\n    phone_number_verified: boolean,\n\n    profile: string,\n    picture: string,\n    website: string,\n    gender: string,\n    zoneinfo: string,\n    locale: string,\n    birthdate: Date,\n    address: IUserAddress,\n\n    // cidaas specific\n    provider: string;\n    providerUserId: string;\n    username: string,\n    identityCustomFields: any,\n    password_hash: string,\n    password_salt: string,\n\n\n\n    // social provider specific \n    raw_json: string,\n\n    // only for migration\n    old_password_hash: string,\n\n    // db defaults\n    updatedTime: Date\n}\n\nclass UserGroupFlatEntity {\n    sub?: string;\n    groupId?: string;\n    groupType?: string;\n    path?: string;\n    roles?: string[];\n    groupPath?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","userinfo","social","{{sub}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb454f52-f486-440a-87a8-d81a4c6c76de"}],"id":"44eccdb4-7ea8-4197-8f1d-97354bd6e904","_postman_id":"44eccdb4-7ea8-4197-8f1d-97354bd6e904","description":""},{"name":"Search","item":[{"name":"Search User [Extended]","id":"cb5b4164-82a6-41c5-baf9-9c6521f62fc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"given_name\":{\"value\":\"sadrick\",\"match\":\"EXACT\",\"ignore_case\":true}\n}"},"url":"{{baseurl}}/users-srv/search/user","description":"<h1 id=\"description\">Description</h1>\n<p>Search user by given_name,famliy_name,provider,email.....</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:users_read\", \"cidaas:users_write\",\"cidaas:users_search\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserSearchQuery</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class UserSearchQuery {\n    term?: string;\n    username?: string | SearchFieldOptions;\n    email?: string | SearchFieldOptions;\n    email_verified?: boolean;\n    mobile_number?: string | SearchFieldOptions;\n    mobile_number_verified?: boolean;\n    phone_number?: string | SearchFieldOptions;\n    phone_number_verified?: boolean;\n    given_name?: string | SearchFieldOptions;\n    family_name?: string | SearchFieldOptions;\n    sub?: string;\n    provider?: string | SearchFieldOptions;\n    providers?: string[];\n    status?: string | SearchFieldOptions;\n    statuses?: string[];\n    startDate?: string;\n    endDate?: string;\n\n    groups?: IUserGroupMap[];\n    skip?: number;\n    take?: number;\n\n    includeCount?: boolean;\n    startLastLoginDate?: string;\n    endLastLoginDate?: string;\n    startActiveDate?: string;\n    endActiveDate?: string;\n    data?: boolean;\n\n    timeZone?: string;\n\n    includeMFAStatus?: boolean;\n    physicalVerifications?: string[];\n}\n\nclass SearchFieldOptions {\n    value?: any;\n    match: SearchMatchOptions = SearchMatchOptions.STARTS_WITH;\n    ignore_case: boolean = true;\n}\n\nenum SearchMatchOptions {\n    STARTS_WITH = \"STARTS_WITH\",\n    EXACT = \"EXACT\",\n    CONTAINS = \"CONTAINS\"\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserSearchResultWrapper;\n}\nclass UserSearchResultWrapper {\n    count?: number;\n    data?: UserSearchResults[];\n}\nclass UserSearchResults {\n    registered_date?: Date;\n    last_loggedin_date?: Date;\n    given_name?: string;\n    family_name?: string;\n    name?: string;\n    email?: string;\n    email_verified?: boolean;\n    mobile_number?: string;\n    mobile_number_verified?: boolean;\n    provider?: string;\n    registered_provider?: string[];\n    sub?: string;\n    userStatus?: string;\n    user_status_reason?: string;\n    username?: string;\n    configuredMFA?: PhysicalVerificationStatus[];\n}\n\nclass PhysicalVerificationStatus {\n    verificationType?: string;\n    deviceCount?: number;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","search","user"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"e5cd2999-dc69-4af9-8ffa-79c7e98bcf9a","name":"{{baseurl}}/users-srv/search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"term\":\"de\",\n  \"email\":\"developer@cidaas.de\",\n  \"provider\":\"self\",\n  \"providers\":[\"self\",\"facebook\"],\n  \n  \"status\":\"\",\n  \"statuses\":[\"VERIFIED\",\"PENDING\"],\n  \"given_name\":\"cidaas\",\n  \"family_name\":\"devloper\",\n  \"groups\":[\n    {\n      \"groupId\":\"CIDAAS_USERS\",\n      \"roles\":[\"USER\",\"test\"]\n    },{\n      \"groupId\":\"g1\",\n      \"roles\":[\"x\",\"y\"]\n    }],\n    \"includeCount\":true,\n    \n\"skip\":0,\n\"take\":10\n}"},"url":"{{baseurl}}/users-srv/search/user"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cb5b4164-82a6-41c5-baf9-9c6521f62fc6"},{"name":"Search User [Simple]","id":"bb4d89c2-4bb1-4669-9a52-d57ed6e01163","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"given_name\":\"sadrick\",\n  \"includeMFAStatus\":true\n}"},"url":"{{baseurl}}/users-srv/search/user","description":"<h1 id=\"description\">Description</h1>\n<p>Search user by given_name,famliy_name,provider,email.....</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:users_read\", \"cidaas:users_write\",\"cidaas:users_search\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserSearchQuery</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class UserSearchQuery {\n    term?: string;\n    username?: string | SearchFieldOptions;\n    email?: string | SearchFieldOptions;\n    email_verified?: boolean;\n    mobile_number?: string | SearchFieldOptions;\n    mobile_number_verified?: boolean;\n    phone_number?: string | SearchFieldOptions;\n    phone_number_verified?: boolean;\n    given_name?: string | SearchFieldOptions;\n    family_name?: string | SearchFieldOptions;\n    sub?: string;\n    provider?: string | SearchFieldOptions;\n    providers?: string[];\n    status?: string | SearchFieldOptions;\n    statuses?: string[];\n    startDate?: string;\n    endDate?: string;\n\n    groups?: IUserGroupMap[];\n    skip?: number;\n    take?: number;\n\n    includeCount?: boolean;\n    startLastLoginDate?: string;\n    endLastLoginDate?: string;\n    startActiveDate?: string;\n    endActiveDate?: string;\n    data?: boolean;\n\n    timeZone?: string;\n\n    includeMFAStatus?: boolean;\n    physicalVerifications?: string[];\n}\n\nclass SearchFieldOptions {\n    value?: any;\n    match: SearchMatchOptions = SearchMatchOptions.STARTS_WITH;\n    ignore_case: boolean = true;\n}\n\nenum SearchMatchOptions {\n    STARTS_WITH = \"STARTS_WITH\",\n    EXACT = \"EXACT\",\n    CONTAINS = \"CONTAINS\"\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserSearchResultWrapper;\n}\nclass UserSearchResultWrapper {\n    count?: number;\n    data?: UserSearchResults[];\n}\nclass UserSearchResults {\n    registered_date?: Date;\n    last_loggedin_date?: Date;\n    given_name?: string;\n    family_name?: string;\n    name?: string;\n    email?: string;\n    email_verified?: boolean;\n    mobile_number?: string;\n    mobile_number_verified?: boolean;\n    provider?: string;\n    registered_provider?: string[];\n    sub?: string;\n    userStatus?: string;\n    user_status_reason?: string;\n    username?: string;\n    configuredMFA?: PhysicalVerificationStatus[];\n}\n\nclass PhysicalVerificationStatus {\n    verificationType?: string;\n    deviceCount?: number;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","search","user"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1bb82347-9105-4d7e-ad93-24cc6e685506","name":"{{baseurl}}/users-srv/search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"term\":\"de\",\n  \"email\":\"developer@cidaas.de\",\n  \"provider\":\"self\",\n  \"providers\":[\"self\",\"facebook\"],\n  \n  \"status\":\"\",\n  \"statuses\":[\"VERIFIED\",\"PENDING\"],\n  \"given_name\":\"cidaas\",\n  \"family_name\":\"devloper\",\n  \"groups\":[\n    {\n      \"groupId\":\"CIDAAS_USERS\",\n      \"roles\":[\"USER\",\"test\"]\n    },{\n      \"groupId\":\"g1\",\n      \"roles\":[\"x\",\"y\"]\n    }],\n    \"includeCount\":true,\n    \n\"skip\":0,\n\"take\":10\n}"},"url":"{{baseurl}}/users-srv/search/user"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bb4d89c2-4bb1-4669-9a52-d57ed6e01163"},{"name":"User count","id":"53e87627-07a5-47de-95ab-4dd1a9936da3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/users-srv/search/count","description":"<h1 id=\"description\">Description</h1>\n<p>Get the users count with different status</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:users_read\", \"cidaas:users_write\",\"cidaas:users_search\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserCounts;\n}\nclass UserCounts {\n    total?: number;\n    admins?: number;\n    secondary_admins?: number;\n    users?: number;\n    users_today?: number;\n    verified_users?: number;\n    pending_users?: number;\n    declined_users?: number;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","search","count"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"53e87627-07a5-47de-95ab-4dd1a9936da3"}],"id":"452ba144-dce4-4ccf-8339-2d0efbf69770","_postman_id":"452ba144-dce4-4ccf-8339-2d0efbf69770","description":""},{"name":"Link / Unlink [Deprecated]","item":[{"name":"Link User account [deprecated]","id":"41fa698b-7ec1-44e3-9c95-0d1793ede4f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"master_sub\": \"sub1\",\n    \"sub_to_link\": \"sub2\"\n}"},"url":"{{baseurl}}/users-srv/user/linkaccount","urlObject":{"path":["users-srv","user","linkaccount"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"41fa698b-7ec1-44e3-9c95-0d1793ede4f7"},{"name":"UnLink Social Identity  [deprecated]","id":"c72d425f-17f2-4614-857a-4b840d11da5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/user/unlinkaccount/jshsywsnasmnfmasndfm","urlObject":{"path":["users-srv","user","unlinkaccount","jshsywsnasmnfmasndfm"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c72d425f-17f2-4614-857a-4b840d11da5a"}],"id":"b65e18f9-54a4-4265-95ca-3de968224326","_postman_id":"b65e18f9-54a4-4265-95ca-3de968224326","description":""},{"name":"Misc Operations","item":[{"name":"Check user is exists or not by unique ids","id":"f00caf9f-806e-477a-a8a6-a5638f2631a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"mobile\":\"+91000000000\"\n}"},"url":"{{baseurl}}/users-srv/search/user/checkexists","description":"<h1 id=\"description\">Description</h1>\n<p>Check the user is exist or not</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:users_read\", \"cidaas:users_write\",\"cidaas:users_search\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserSearchQuery</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\nclass FindUserQuery extends QueryEntity {\n    sub: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    username: string = \"\";\n    provider: string = \"\";\n    providerUserId: string = \"\";\n\n    sub_not: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserInfoLite;\n}\nclass UserInfoLite {\n    sub: string = \"\";\n    identityId: string = \"\";\n    name: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    provider: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    email_verified: boolean = false;\n    mobile_number_verified: boolean = false;\n    username: string = \"\";\n    userStatus: string = \"\";\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","search","user","checkexists"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f00caf9f-806e-477a-a8a6-a5638f2631a0"},{"name":"Check MFA enabled by sub","id":"591e5dd0-ad5e-4354-9cc1-186d2302da1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"mobile\":\"+91000000000\"\n}"},"url":"{{baseurl}}/users-srv/internal/userinfo/check/mfaenabled/7243bb35-2ff2-4705-9094-52da378f852d","description":"<h1 id=\"description\">Description</h1>\n<p>Check the mfa is enabled for particular user based on the sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>sub</code> in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","userinfo","check","mfaenabled","7243bb35-2ff2-4705-9094-52da378f852d"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"591e5dd0-ad5e-4354-9cc1-186d2302da1b"}],"id":"a2be43af-c7db-404d-a105-8c01fa34af13","_postman_id":"a2be43af-c7db-404d-a105-8c01fa34af13","description":""},{"name":"Delete","item":[{"name":"Un register (self)","id":"86ccefbe-4bb6-4c1a-84be-c8e0cd731a08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/user/unregister/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Delete the user from the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>sub</code> in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: true;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","unregister",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"fd3bde69-3a9c-4632-bd36-f59ecd696ef4","type":"string","value":"","key":"sub"}]}},"response":[],"_postman_id":"86ccefbe-4bb6-4c1a-84be-c8e0cd731a08"},{"name":"Purge user [By admin]","id":"b3c89282-bdb2-4a21-85ab-4b23c0a77581","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/user/purge/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Delete the user from the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\", \"cidaas:admin_delete\", \"cidaas:write\", \"cidaas:delete\", \"cidaas:deleteuser\", \"cidaas:purgeuser\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_DELETE\", \"USER_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>sub</code> in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","purge",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"d9268747-1057-40c4-9c51-e1d4e115bfdb","key":"sub"}]}},"response":[],"_postman_id":"b3c89282-bdb2-4a21-85ab-4b23c0a77581"}],"id":"e00ddbb4-c03f-453d-a0ae-290c72056ac2","event":[{"listen":"prerequest","script":{"id":"11959a13-1d4f-4f97-a06c-f671e60bc0de","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9eab534b-3ec6-46ac-a2c6-5ff450b4803e","type":"text/javascript","exec":[""]}}],"_postman_id":"e00ddbb4-c03f-453d-a0ae-290c72056ac2","description":""}],"id":"6331fe1d-f991-4778-9260-8de6e6100558","_postman_id":"6331fe1d-f991-4778-9260-8de6e6100558","description":""},{"name":"Role Master","item":[{"name":"Create new role","id":"685a11e6-31ec-4db1-8c37-b60df0a668ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"role\":\"Manager\"\n}"},"url":"{{baseurl}}/roles-srv/role","description":"<h1 id=\"description\">Description</h1>\n<p>Create a new role in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\", \"cidaas:roles_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IRoleSetup</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IRoleSetup {\n    _id: string;\n    id: string;\n    role: string; // *\n    roleOwner: string; \n    access_type: string;\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRoleSetup;\n}\ninterface IRoleSetup {\n    _id: string;\n    id: string;\n    role: string;\n    roleOwner: string;\n    access_type: string;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["roles-srv","role"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"a65e7f97-d05b-4a1d-8835-44212acbed06","name":"http://localmanagement.cidaas.de/roles-srv/role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"role\":\"Manager\"\n}"},"url":"http://localmanagement.cidaas.de/roles-srv/role"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"230","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 17:51:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"e6-iqHB91fcUKKnVFJgVZ5FUs34JtU\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":false,\"status\":409,\"error\":{\"code\":1006,\"moreInfo\":\"\",\"type\":\"AppAccessorException\",\"status\":409,\"referenceNumber\":\"1518285093605\",\"logged\":false,\"error\":\"This role with this name already exists\",\"developerError\":null}}"}],"_postman_id":"685a11e6-31ec-4db1-8c37-b60df0a668ea"},{"name":"List all roles","id":"0184c3a2-656f-4bb4-8646-78e7cdf28718","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/roles-srv/role/list","description":"<h1 id=\"description\">Description</h1>\n<p>List the created roles in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:roles_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRoleSetup[];\n}\ninterface IRoleSetup {\n    _id: string;\n    id: string;\n    role: string;\n    roleOwner: string;\n    access_type: string;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["roles-srv","role","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"705883c3-1f20-4040-9e65-2838f8b9628b","name":"http://localmanagement.cidaas.de/roles-srv/role/list","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/roles-srv/role/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"305","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 17:43:59 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"131-Y8AtMthjlxPZHCuzvcpHLjpSL7E\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"1be58dd1-e79c-477c-bf54-f83a34c2470b\",\"className\":\"de.cidaas.core.db.RoleSetup\",\"roleOwner\":\"ADMIN\",\"role\":\"ADMIN\",\"__v\":0},{\"_id\":\"415df81d-b376-42c3-9735-3c3a2ed7fce3\",\"className\":\"de.cidaas.core.db.RoleSetup\",\"roleOwner\":\"CLIENT\",\"role\":\"Manager\",\"__v\":0}]}"}],"_postman_id":"0184c3a2-656f-4bb4-8646-78e7cdf28718"},{"name":"Get role by access_type","id":"6ede7d2e-fe9a-49d2-8e82-00886ef5b2d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/roles-srv/role/by_access_type/user","description":"<h1 id=\"description\">Description</h1>\n<p>Load the roles based on the access_type</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\", \"cidaas:roles_write\",\"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\",\"USER_CREATE\",\"USER_INVITE\",\"USER_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>access_type</code> value in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>access_type\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRoleSetup[];\n}\ninterface IRoleSetup {\n    _id: string;\n    id: string;\n    role: string;\n    roleOwner: string;\n    access_type: string;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["roles-srv","role","by_access_type","user"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"be738dce-63af-413e-90bb-f95fd98c1e43","name":"http://localmanagement.cidaas.de/roles-srv/role/list","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/roles-srv/role/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"305","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 17:43:59 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"131-Y8AtMthjlxPZHCuzvcpHLjpSL7E\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"1be58dd1-e79c-477c-bf54-f83a34c2470b\",\"className\":\"de.cidaas.core.db.RoleSetup\",\"roleOwner\":\"ADMIN\",\"role\":\"ADMIN\",\"__v\":0},{\"_id\":\"415df81d-b376-42c3-9735-3c3a2ed7fce3\",\"className\":\"de.cidaas.core.db.RoleSetup\",\"roleOwner\":\"CLIENT\",\"role\":\"Manager\",\"__v\":0}]}"}],"_postman_id":"6ede7d2e-fe9a-49d2-8e82-00886ef5b2d2"},{"name":"Get role detail by rolekey","id":"f6850d2c-35c4-4661-b43a-7164c9a72ba0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/roles-srv/role?role=role_key","description":"<h1 id=\"description\">Description</h1>\n<p>Load the roles based on the role key</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\",\"cidaas:admin_write\", \"cidaas:roles_read\",\"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>role</code> value in the query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"query-param\">Query param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>role\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRoleSetup;\n}\ninterface IRoleSetup {\n    _id: string;\n    id: string;\n    role: string;\n    roleOwner: string;\n    access_type: string;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["roles-srv","role"],"host":["{{baseurl}}"],"query":[{"key":"role","value":"role_key"}],"variable":[]}},"response":[{"id":"b8a58473-c934-4a02-b37b-cab061de2560","name":"http://localmanagement.cidaas.de/roles-srv/role?role={{role}}","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":{"raw":"http://localmanagement.cidaas.de/roles-srv/role?role=Manager","protocol":"http","host":["localmanagement","cidaas","de"],"path":["roles-srv","role"],"query":[{"key":"role","value":"Manager"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"171","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 17:55:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"ab-3omLH73dq+/cXj+tWIRWCktVnUA\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"415df81d-b376-42c3-9735-3c3a2ed7fce3\",\"className\":\"de.cidaas.core.db.RoleSetup\",\"roleOwner\":\"CLIENT\",\"role\":\"Manager\",\"__v\":0}}"}],"_postman_id":"f6850d2c-35c4-4661-b43a-7164c9a72ba0"},{"name":"Delete role by key","id":"54acfe19-0354-4046-ac39-016077680330","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"role\":\"Manager\"\n}"},"url":"{{baseurl}}/roles-srv/role?role=role_key","description":"<h1 id=\"description\">Description</h1>\n<p>Delete the role based on the role key</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_delete\", \"cidaas:roles_delete\",\"cidaas:delete\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\",\"USER_CREATE\",\"USER_INVITE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>role</code> value in the query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"query-param\">Query param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>role\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["roles-srv","role"],"host":["{{baseurl}}"],"query":[{"key":"role","value":"role_key"}],"variable":[]}},"response":[{"id":"833cb3d4-1166-4d16-bad9-6cdd5baf0e60","name":"http://localmanagement.cidaas.de/roles-srv/role?role={{role}}","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"role\":\"Manager\"\n}"},"url":{"raw":"http://localmanagement.cidaas.de/roles-srv/role?role=Manager","protocol":"http","host":["localmanagement","cidaas","de"],"path":["roles-srv","role"],"query":[{"key":"role","value":"Manager"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"41","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 17:57:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"29-oS3l/ciNgeB0vn3IAwUp9OUSHTo\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":true}"}],"_postman_id":"54acfe19-0354-4046-ac39-016077680330"}],"id":"d74149a6-59af-45e6-9811-d1cfe6434d16","_postman_id":"d74149a6-59af-45e6-9811-d1cfe6434d16","description":""},{"name":"Invite User","item":[{"name":"Invite user [with default template]","id":"d83d1750-1bc4-41bc-aeff-0e2600c446c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\r\n  \"allow_same_email\": true,\r\n  \"client_id\": \"4d5e6e20-9347-4255-9790-5b7196843103\",\r\n  \"invited_by_name\": \"CRM\",\r\n  \"invited_by_sub\": null,\r\n  \"redirect_uri\": \"https://nightlybuild.cidaas.de/user-profile/editprofile\",\r\n  \"response_type\": \"token\",\r\n  \"invited_name\": \"Vimal\",\r\n  \"invited_family_name\": \"Prakash\",\r\n  \"invited_email\": \"vimalprakash@mailinator.com\",\r\n  \"roles\": [ \"USER\" ],\r\n  \"userGroups\": null\r\n\r\n}"},"url":"{{baseurl}}/users-srv/invite/initiate","description":"<h1 id=\"description\">Description</h1>\n<p>Invite a new user into the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_invite\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IUserInvite</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserInvite {\n    _id: string;\n    id: string;\n    invited_email: string; // *\n    invited_name: string; // given name\n    invited_family_name: string;\n    used_email: string;\n    allow_same_email: boolean;\n    customFields: any;\n    client_id: string; // *\n    redirect_uri: string; // *\n    response_type: string; // *\n    params: any;\n    roles: string[];\n    userGroups: IUserGroupMap[];\n    accepted: boolean;\n    invited_time: Date;\n    accepted_time: Date;\n    valid: boolean;\n    sub: string;\n    invite_count: number;\n    invited_by_name: string;\n    invited_by_sub: string;\n    invite_template_key: string;\n    invite_object: any;\n    lang: string;\n    revoked: boolean;\n    revoked_reason: string;\n    revoked_by: string;\n}\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserInvite;\n}\ninterface IUserInvite {\n    _id: string;\n    id: string;\n    invited_email: string;\n    invited_name: string; // given name\n    invited_family_name: string;\n    used_email: string;\n    allow_same_email: boolean;\n    customFields: any;\n    client_id: string;\n    redirect_uri: string;\n    response_type: string;\n    params: any;\n    roles: string[];\n    userGroups: IUserGroupMap[];\n    accepted: boolean;\n    invited_time: Date;\n    accepted_time: Date;\n    valid: boolean;\n    sub: string;\n    invite_count: number;\n    invited_by_name: string;\n    invited_by_sub: string;\n    invite_template_key: string;\n    invite_object: any;\n    lang: string;\n    revoked: boolean;\n    revoked_reason: string;\n    revoked_by: string;\n}\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","invite","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"b343f15a-a3a3-4d82-bfdf-6e64b5c718cd","name":"Invite user [with normal template]","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n\r\n  \"allow_same_email\": true,\r\n  \"client_id\": \"4d5e6e20-9347-4255-9790-5b7196843103\",\r\n  \"invited_by_name\": \"CRM\",\r\n  \"invited_by_sub\": null,\r\n  \"redirect_uri\": \"https://nightlybuild.cidaas.de/user-profile/editprofile\",\r\n  \"response_type\": \"token\",\r\n  \"invited_name\": \"Vimal\",\r\n  \"invited_family_name\": \"Prakash\",\r\n  \"invited_email\": \"vimalprakash@mailinator.com\",\r\n  \"roles\": [ \"USER\" ],\r\n  \"userGroups\": null\r\n\r\n}"},"url":"{{baseurl}}/users-srv/invite/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 04 Feb 2019 09:54:03 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"764"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"2fc-McfoEzaLl3YCzAh5iuncB8iA8Kk\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=15, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"roles\": [\n            \"USER\"\n        ],\n        \"accepted\": false,\n        \"valid\": true,\n        \"invite_count\": 1,\n        \"className\": \"de.cidaas.management.db.UserInvite\",\n        \"_id\": \"74bfb563-62af-477f-ba1d-79871d6da385\",\n        \"allow_same_email\": true,\n        \"client_id\": \"4d5e6e20-9347-4255-9790-5b7196843103\",\n        \"invited_by_name\": \"CRM\",\n        \"invited_by_sub\": null,\n        \"redirect_uri\": \"https://nightlybuild.cidaas.de/user-profile/editprofile\",\n        \"response_type\": \"token\",\n        \"invited_name\": \"Vimal\",\n        \"invited_family_name\": \"Prakash\",\n        \"invited_email\": \"vimalprakash@mailinator.com\",\n        \"userGroups\": null,\n        \"lang\": \"\",\n        \"invited_time\": \"2019-02-04T09:54:02.766Z\",\n        \"sub\": \"be376901-88f6-4405-ab97-2e7768bdf20d\",\n        \"createdTime\": \"2019-02-04T09:54:02.767Z\",\n        \"updatedTime\": \"2019-02-04T09:54:02.767Z\",\n        \"__v\": 0,\n        \"id\": \"74bfb563-62af-477f-ba1d-79871d6da385\"\n    }\n}"}],"_postman_id":"d83d1750-1bc4-41bc-aeff-0e2600c446c2"},{"name":"Invite user [with custom template]","id":"4cc40b21-3012-4fd7-afce-9ccf0f6c5059","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\r\n  \"allow_same_email\": true,\r\n  \"client_id\": \"4d5e6e20-9347-4255-9790-5b7196843103\",\r\n  \"invited_by_name\": \"CRM\",\r\n  \"redirect_uri\": \"{{baseurl}}/user-profile/editprofile\",\r\n  \"response_type\": \"code\",\r\n  \"invited_name\": \"Vimal\",\r\n  \"invited_family_name\": \"Prakash\",\r\n  \"invited_email\": \"example_user@gmail.com\",\r\n  \"invite_template_key\":\"INVITE_TEST_1\",\r\n  \"roles\": [ \"USER\" ]\r\n}"},"url":"{{baseurl}}/users-srv/invite/initiate","description":"<h1 id=\"description\">Description</h1>\n<p>Invite a new user into the system. If we pass the <code>invite_template_key</code> key in the request it will take that template, otherwise it takes the default one.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_invite\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IUserInvite</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserInvite {\n    _id: string;\n    id: string;\n    invited_email: string; // *\n    invited_name: string; // given name\n    invited_family_name: string;\n    used_email: string;\n    allow_same_email: boolean;\n    customFields: any;\n    client_id: string; // *\n    redirect_uri: string; // *\n    response_type: string; // *\n    params: any;\n    roles: string[];\n    userGroups: IUserGroupMap[];\n    accepted: boolean;\n    invited_time: Date;\n    accepted_time: Date;\n    valid: boolean;\n    sub: string;\n    invite_count: number;\n    invited_by_name: string;\n    invited_by_sub: string;\n    invite_template_key: string;\n    invite_object: any;\n    lang: string;\n    revoked: boolean;\n    revoked_reason: string;\n    revoked_by: string;\n}\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserInvite;\n}\ninterface IUserInvite {\n    _id: string;\n    id: string;\n    invited_email: string;\n    invited_name: string; // given name\n    invited_family_name: string;\n    used_email: string;\n    allow_same_email: boolean;\n    customFields: any;\n    client_id: string;\n    redirect_uri: string;\n    response_type: string;\n    params: any;\n    roles: string[];\n    userGroups: IUserGroupMap[];\n    accepted: boolean;\n    invited_time: Date;\n    accepted_time: Date;\n    valid: boolean;\n    sub: string;\n    invite_count: number;\n    invited_by_name: string;\n    invited_by_sub: string;\n    invite_template_key: string;\n    invite_object: any;\n    lang: string;\n    revoked: boolean;\n    revoked_reason: string;\n    revoked_by: string;\n}\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","invite","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4cc40b21-3012-4fd7-afce-9ccf0f6c5059"},{"name":"Re invite user","id":"8990cd6b-8212-4d66-b306-b2f00a261eb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/invite/reinitiate/0214ba79-96bf-4da0-b95f-ee0614bc98c9","description":"<h1 id=\"description\">Description</h1>\n<p>Reinvite the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_invite\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>invite_id</code>  in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>invite_id\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserInvite;\n}\ninterface IUserInvite {\n    _id: string;\n    id: string;\n    invited_email: string;\n    invited_name: string; // given name\n    invited_family_name: string;\n    used_email: string;\n    allow_same_email: boolean;\n    customFields: any;\n    client_id: string;\n    redirect_uri: string;\n    response_type: string;\n    params: any;\n    roles: string[];\n    userGroups: IUserGroupMap[];\n    accepted: boolean;\n    invited_time: Date;\n    accepted_time: Date;\n    valid: boolean;\n    sub: string;\n    invite_count: number;\n    invited_by_name: string;\n    invited_by_sub: string;\n    invite_template_key: string;\n    invite_object: any;\n    lang: string;\n    revoked: boolean;\n    revoked_reason: string;\n    revoked_by: string;\n}\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","invite","reinitiate","0214ba79-96bf-4da0-b95f-ee0614bc98c9"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8990cd6b-8212-4d66-b306-b2f00a261eb2"},{"name":"Revoke User Invite","id":"d06c9afa-5e26-4cbd-9f0d-f4137652a191","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/invite/revoke/0214ba79-96bf-4da0-b95f-ee0614bc98c9","description":"<h1 id=\"description\">Description</h1>\n<p>Reinvite the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_invite\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>invite_id</code>  in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>invite_id\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserInviteRevokeResponse;\n}\ninterface IUserInviteRevokeResponse {\n    revoked: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","invite","revoke","0214ba79-96bf-4da0-b95f-ee0614bc98c9"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d06c9afa-5e26-4cbd-9f0d-f4137652a191"},{"name":"Get invited user list [depcrecated]","id":"13a12e4b-3c19-4264-a656-baff57b8f9db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/invite/list","urlObject":{"path":["users-srv","invite","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"13a12e4b-3c19-4264-a656-baff57b8f9db"},{"name":"Get invited user list  [Only with specific group] [depcrecated]","id":"5dcf814e-1bcd-4cdd-96c4-3ef5910832cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[\n\"CIDAAS_ADMINS\"\n\n]\n"},"url":"{{baseurl}}/users-srv/invite/list","urlObject":{"path":["users-srv","invite","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5dcf814e-1bcd-4cdd-96c4-3ef5910832cd"},{"name":"Search invited user","id":"22ec9383-0c42-4332-aa26-17484124aefb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t}\n"},"url":"{{baseurl}}/users-srv/invite/search?skip=0&take=2","description":"<h1 id=\"description\">Description</h1>\n<p>Search invited user in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_invite\",\"cidaas:users_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>InviteUserSearchEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class InviteUserSearchEntity {\n    invited_email?: string;\n    given_name?: string;\n    family_name?: string;\n    groupIds?: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: InvitedUserSearchResponse;\n}\nclass InvitedUserSearchResponse {\n    count: number = 0;\n    invited_users?: IUserInvite[];\n}\ninterface IUserInvite  {\n    _id: string;\n    id: string;\n    invited_email: string;\n    invited_name: string; // given name\n    invited_family_name: string;\n    used_email: string;\n    allow_same_email: boolean;\n    customFields: any;\n    client_id: string;\n    redirect_uri: string;\n    response_type: string;\n    params: any;\n    roles: string[];\n    userGroups: IUserGroupMap[];\n    accepted: boolean;\n    invited_time: Date;\n    accepted_time: Date;\n    valid: boolean;\n    sub: string;\n    invite_count: number;\n    invited_by_name: string;\n    invited_by_sub: string;\n    invite_template_key: string;\n    invite_object: any;\n    lang: string;\n    revoked: boolean;\n    revoked_reason: string;\n    revoked_by: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","invite","search"],"host":["{{baseurl}}"],"query":[{"key":"skip","value":"0"},{"key":"take","value":"2"}],"variable":[]}},"response":[{"id":"2a7235fd-4460-4a63-8aa8-303015f3bf82","name":"Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"invited_email\":\"guestuser2121994+201@gmail.com\",\n\t\"given_name\":\"\",\n\t\"family_name\":\"\",\n\t\"groupIds\":[\"\"]\n\t}\n"},"url":"{{baseurl}}/users-srv/invite/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"278","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 11 Sep 2018 10:03:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"116-jJuyYwVui1i+ZsVGXrBY1VFprXg\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=15, max=299","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"x-powered-by","value":"cidaas","name":"x-powered-by","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"count\":1,\"invited_users\":[{\"_id\":\"c98a6537-a587-4f2a-aa24-1008790656d6\",\"invited_time\":\"2018-09-06T13:56:00.312Z\",\"userGroups\":[],\"invited_email\":\"guestuser2121994+201@gmail.com\",\"allow_same_email\":true,\"accepted\":false,\"roles\":[\"USER\"]}]}}"}],"_postman_id":"22ec9383-0c42-4332-aa26-17484124aefb"},{"name":"Check key exists for the master setup deletion","id":"43d989d9-c715-451d-b4c2-030847fb14cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t}\n"},"url":"{{baseurl}}/users-srv/invite/search?skip=0&take=2","description":"<h1 id=\"description\">Description</h1>\n<p>Check key exists for the master setup deletion</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>MasterSetupKeyEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class MasterSetupKeyEntity {\n    registrationFieldKey?: string;\n    scopeKey?: string;\n    hostedPageGroupKey?: string;\n    consentGroupKey?: string;\n    socialProviderKey?: string;\n    roleKey?: string;\n    scopeGroupKey?: string;\n    groupId?: string;\n    clientId?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: any;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","invite","search"],"host":["{{baseurl}}"],"query":[{"key":"skip","value":"0"},{"key":"take","value":"2"}],"variable":[]}},"response":[{"id":"e52a9a2a-43bd-495b-a29e-4b4c4b0e8d0e","name":"Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"invited_email\":\"guestuser2121994+201@gmail.com\",\n\t\"given_name\":\"\",\n\t\"family_name\":\"\",\n\t\"groupIds\":[\"\"]\n\t}\n"},"url":"{{baseurl}}/users-srv/invite/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"278","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 11 Sep 2018 10:03:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"116-jJuyYwVui1i+ZsVGXrBY1VFprXg\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=15, max=299","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"x-powered-by","value":"cidaas","name":"x-powered-by","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"count\":1,\"invited_users\":[{\"_id\":\"c98a6537-a587-4f2a-aa24-1008790656d6\",\"invited_time\":\"2018-09-06T13:56:00.312Z\",\"userGroups\":[],\"invited_email\":\"guestuser2121994+201@gmail.com\",\"allow_same_email\":true,\"accepted\":false,\"roles\":[\"USER\"]}]}}"}],"_postman_id":"43d989d9-c715-451d-b4c2-030847fb14cd"},{"name":"Get invitation details by its id","id":"d5695bab-cdd6-40df-be6b-4f3a0bee5645","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/invite/invite_id/:invite_id","description":"<h1 id=\"description\">Description</h1>\n<p>Load invite user details by inviteid</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>invite_id</code> in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>invite_id\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserInvite;\n}\ninterface IUserInvite {\n    _id: string;\n    id: string;\n    invited_email: string;\n    invited_name: string; // given name\n    invited_family_name: string;\n    used_email: string;\n    allow_same_email: boolean;\n    customFields: any;\n    client_id: string;\n    redirect_uri: string;\n    response_type: string;\n    params: any;\n    roles: string[];\n    userGroups: IUserGroupMap[];\n    accepted: boolean;\n    invited_time: Date;\n    accepted_time: Date;\n    valid: boolean;\n    sub: string;\n    invite_count: number;\n    invited_by_name: string;\n    invited_by_sub: string;\n    invite_template_key: string;\n    invite_object: any;\n    lang: string;\n    revoked: boolean;\n    revoked_reason: string;\n    revoked_by: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","invite","invite_id",":invite_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"1ec2bdca-d08f-497c-940d-b3a76d7cda3d","type":"string","value":"","key":"invite_id"}]}},"response":[],"_postman_id":"d5695bab-cdd6-40df-be6b-4f3a0bee5645"},{"name":"Accept userinvite (Internal)","id":"841c1c2e-b4bc-4583-9d37-86d460bea9f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/invite/accept?invite_id=&used_email=","description":"<h1 id=\"description\">Description</h1>\n<p>Search invited user in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_invite\",\"cidaas:users_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>InviteUserSearchEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class InviteUserSearchEntity {\n    invited_email?: string;\n    given_name?: string;\n    family_name?: string;\n    groupIds?: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: InvitedUserSearchResponse;\n}\nclass InvitedUserSearchResponse {\n    count: number = 0;\n    invited_users?: IUserInvite[];\n}\ninterface IUserInvite  {\n    _id: string;\n    id: string;\n    invited_email: string;\n    invited_name: string; // given name\n    invited_family_name: string;\n    used_email: string;\n    allow_same_email: boolean;\n    customFields: any;\n    client_id: string;\n    redirect_uri: string;\n    response_type: string;\n    params: any;\n    roles: string[];\n    userGroups: IUserGroupMap[];\n    accepted: boolean;\n    invited_time: Date;\n    accepted_time: Date;\n    valid: boolean;\n    sub: string;\n    invite_count: number;\n    invited_by_name: string;\n    invited_by_sub: string;\n    invite_template_key: string;\n    invite_object: any;\n    lang: string;\n    revoked: boolean;\n    revoked_reason: string;\n    revoked_by: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","invite","accept"],"host":["{{baseurl}}"],"query":[{"key":"invite_id","value":""},{"key":"used_email","value":""}],"variable":[]}},"response":[{"id":"d9e727b5-047f-4b8c-b0a0-37dd9cf136d4","name":"Search","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"invited_email\":\"guestuser2121994+201@gmail.com\",\n\t\"given_name\":\"\",\n\t\"family_name\":\"\",\n\t\"groupIds\":[\"\"]\n\t}\n"},"url":"{{baseurl}}/users-srv/invite/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"Keep-Alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"278","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 11 Sep 2018 10:03:26 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"116-jJuyYwVui1i+ZsVGXrBY1VFprXg\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Keep-Alive","value":"timeout=15, max=299","name":"Keep-Alive","description":"Custom header"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"X-Content-Type-Options","value":"nosniff","name":"X-Content-Type-Options","description":"The only defined value, \"nosniff\", prevents Internet Explorer from MIME-sniffing a response away from the declared content-type"},{"key":"X-Xss-Protection","value":"1; mode=block","name":"X-Xss-Protection","description":"Cross-site scripting (XSS) filter"},{"key":"x-powered-by","value":"cidaas","name":"x-powered-by","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"count\":1,\"invited_users\":[{\"_id\":\"c98a6537-a587-4f2a-aa24-1008790656d6\",\"invited_time\":\"2018-09-06T13:56:00.312Z\",\"userGroups\":[],\"invited_email\":\"guestuser2121994+201@gmail.com\",\"allow_same_email\":true,\"accepted\":false,\"roles\":[\"USER\"]}]}}"}],"_postman_id":"841c1c2e-b4bc-4583-9d37-86d460bea9f8"},{"name":"Bulk Invite","id":"3d4c229e-c36c-47ab-8037-3de5a056d14a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImQ2M2ExOGU0LWI1NzMtNGJlNy1iYzM2LTNiM2RiMTUzNWExMiJ9.eyJzaWQiOiJlNGZjYTRlYi1hOGNjLTQ2ZmUtYjdiYy1jM2M5MWNjOGI1YzgiLCJzdWIiOiIwMzc2OWMwMy0xODE5LTRlNDEtOTdiMC05ZDlhZGU5NGRkMjgiLCJpc3ViIjoiNjkzNDRjOGQtYTAyYS00YzM0LWEyYjgtMGY5NTgxODM3Njc4IiwiYXVkIjoiYzE3YzZmMmEtNDcyOS00Y2YzLTg5NjMtNzZmYjNmYzBjYzQ5IiwiaWF0IjoxNTU4NTI5NDg2LCJhdXRoX3RpbWUiOjE1NTg1Mjk0ODYsImlzcyI6Imh0dHBzOi8vbmlnaHRseWJ1aWxkLmNpZGFhcy5kZSIsImp0aSI6IjgwMDMzYzA5LWZkNzYtNGFlYS05OTgwLTIxZWViYjQ0ODVhNCIsInNjb3BlcyI6W10sInJvbGVzIjpbIlVTRVIiLCJSb2xlMTkwNzIwMTgxMDU3NTkiLCJSb2xlMTkwNzIwMTgxMTAwMDgiLCJIUiJdLCJncm91cHMiOlt7InJvbGVzIjpbIkFETUlOIl0sIl9pZCI6ImJhYTU1MjI3LTcwZDctNDY1YS05YmU0LWJhNTUyZWIzN2Q0NyIsImdyb3VwSWQiOiJDSURBQVNfQURNSU5TIiwiaWQiOiJiYWE1NTIyNy03MGQ3LTQ2NWEtOWJlNC1iYTU1MmViMzdkNDcifV0sImV4cCI6MTU1ODYxNTg4Nn0.hBSEx4BGiaOGoRuJNpjGw3597EGHDji6Vx0qSbJuPcFK1p1lXYcApn7Mb9WcH1fWyK_ZIhpOG9WAvxcr-Uq2RNAHNinhFH0vBkHDq7LRcDOIoTFbMOsLMoDJAmRPJtgbJ7PXEmJiU8NWfrp4AGVbJLeCpUngd2ruHPcm2Qug4tk"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"},{"key":"Accept-Language","type":"text","value":"en"}],"body":{"mode":"formdata","formdata":[{"key":"client_id","value":"4d5e6e20-9347-4255-9790-5b7196843103","type":"text"},{"key":"allow_same_email","value":"true","type":"text"},{"key":"redirect_uri","value":"https://nightlybuild.cidaas.de/user-profile/editprofile","type":"text"},{"key":"response_type","value":"token","type":"text"}]},"url":"{{baseurl}}/users-srv/invite/bulk","description":"<h1 id=\"description\">Description</h1>\n<p>Bulk invite the user into the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_invite\",\"cidaas:users_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>BulkInviteUserEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class BulkInviteUserEntity {\n    client_id: string = \"\";\n    redirect_uri: string = \"\";\n    response_type: string = \"token\";\n    allow_same_email: boolean = true;\n\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: any;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>Bulk invite</p>\n","urlObject":{"path":["users-srv","invite","bulk"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d4c229e-c36c-47ab-8037-3de5a056d14a"},{"name":"Validate user invite id","id":"ffea4b39-ffd9-48e6-a091-cbd0bd4b7953","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/invite/invite_id/:invite_id","description":"<h1 id=\"description\">Description</h1>\n<p>Validate user invite by invite id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>invite_id</code> in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>invite_id\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserInvite;\n}\ninterface IUserInvite {\n    _id: string;\n    id: string;\n    invited_email: string;\n    invited_name: string; // given name\n    invited_family_name: string;\n    used_email: string;\n    allow_same_email: boolean;\n    customFields: any;\n    client_id: string;\n    redirect_uri: string;\n    response_type: string;\n    params: any;\n    roles: string[];\n    userGroups: IUserGroupMap[];\n    accepted: boolean;\n    invited_time: Date;\n    accepted_time: Date;\n    valid: boolean;\n    sub: string;\n    invite_count: number;\n    invited_by_name: string;\n    invited_by_sub: string;\n    invite_template_key: string;\n    invite_object: any;\n    lang: string;\n    revoked: boolean;\n    revoked_reason: string;\n    revoked_by: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","invite","invite_id",":invite_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"a1527534-30d3-4fe7-ac1c-024d0964077b","type":"string","value":"","key":"invite_id"}]}},"response":[],"_postman_id":"ffea4b39-ffd9-48e6-a091-cbd0bd4b7953"}],"id":"8fef7f07-c578-4bc7-bbf7-79927fd706ed","_postman_id":"8fef7f07-c578-4bc7-bbf7-79927fd706ed","description":""},{"name":"Create User","item":[{"name":"Create By Admin","id":"f0c553f9-bab7-47af-9bb0-484653db6bfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"de","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"autoActivate\": true,\n    \"client_id\": \"0e17e9ef-81a1-4bc6-8ee4-bce519f6b047\",\n    \"primaryType\": \"email\",\n    \"redirect_uri\": \"https://besucher.experimenta.science/user-profile/editprofile\",\n    \"response_type\": \"token\",\n    \"userEntity\": {\n        \"email\": null,\n        \"email_verified\": true,\n        \"family_name\": \"-\",\n        \"given_name\": \"-\",\n        \"provider\": \"self\",\n        \"username\": \"vimalprakash123\",\n        \"password\": \"2806\",\n        \"locale\": \"de\",\n        \"userStatus\": \"VERIFIED\",\n        \"groups\": [],\n        \"roles\": [\n            \"USER\"\n        ]\n    },\n    \"notify_user\": true\n}"},"url":"{{baseurl}}/users-srv/user/create/admin","description":"<h1 id=\"description\">Description</h1>\n<p>Create a user in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_write\",\"\"cidaas:usercreate\"\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>AdminUserCreationEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AdminUserCreationEntity {\n    autoActivate: boolean = false;\n    primaryType: string = \"\";\n    userEntity: UserEntity | null = null;\n    client_id: string = \"\"; // *\n    redirect_uri: string = \"\"; // *\n    response_type: string = \"\"; // *\n    notify_user: boolean = true;\n    generate_password: boolean = false;\n}\nclass UserEntity {\n\n    // user accounts\n    userStatus: string = \"\";\n    user_status: string = \"\";\n    user_status_reason: string = \"\";\n    // social identies\n    username: string = \"\";\n    sub: string = \"\";\n    given_name: string = \"\"; // *\n    family_name: string = \"\";\n    middle_name: string = \"\";\n    nickname: string = \"\";\n    email: string = \"\";\n    email_verified: boolean = false;\n    mobile_number: string = \"\";\n    mobile_number_obj: IMobileEntity | null = null;\n    mobile_number_verified: boolean = false;\n    phone_number: string = \"\";\n    phone_number_obj: IMobileEntity | null = null;\n    phone_number_verified: boolean = false;\n    profile: string = \"\";\n    picture: string = \"\";\n    website: string = \"\";\n    gender: string = \"\";\n    zoneinfo: string = \"\";\n    locale: string = \"\";\n    birthdate: Date | null = null;\n    address?: AddressEntity;\n    customFields?: any; // Map&lt;string,ICustomFieldData&gt;\n    identityCustomFields?: any;\n    password: string = \"\";\n    provider: string = \"\"; // *\n    identityId: string = \"\";\n    providerUserId: string = \"\";\n\n    mfa_enabled?: boolean;\n\n    // just for migration\n    old_password_hash: string = \"\";\n\n\n    // groups and roles\n    roles?: string[];\n    groups?: IUserGroupMap[];\n    userGroups?: IUserGroupMap[];\n    trackId: string = \"\";\n    rawJSON: string = \"\";\n    need_reset_password: boolean = false;\n\n    no_event: boolean = false;\n    consents?: IConsentField[];\n\n    consent_track_ids?: string[];\n    ignore_default_roles?: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ICreateUser;\n}\ninterface ICreateUser{\n created: boolean;\n sub:string\n }\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","create","admin"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0c553f9-bab7-47af-9bb0-484653db6bfc"},{"name":"Create By Admin [first time password reset required]","id":"1b848f71-a3c6-4a36-8dbc-4f50cfe48d9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"autoActivate\":true,\n  \"primaryType\":\"email\",\n  \"userEntity\":{\n  \t\"need_reset_password\":true,\n    \"given_name\":\"vimal\",\n    \"family_name\":\"prakash\",\n    \"email_verified\": true,\n    \"email\": \"example_user@gmail.com\",\n    \"password\":\"@race#\",\n    \"provider\":\"self\",\n    \"userStatus\": \"VERIFIED\",\n    \"roles\": [\n      \"USER\"\n    ],\n    \"customFields\": {\n      \"CustomField1\": {\n        \"dataType\": \"TEXT\",\n        \"value\": \"CustomField1 Value\",\n        \"internal\": false,\n        \"readOnly\": false,\n        \"key\": \"CustomField1\"\n      }\n    }\n  },\n  \n  \"client_id\": \"c4364c44-ddda-4552-9fbc-d1281d9ad351\",\n  \"redirect_uri\": \"your_base_url/user-profile/editprofile\",\n  \"response_type\":\"token\"\n}\n"},"url":"{{baseurl}}/users-srv/user/create/admin","description":"<h1 id=\"description\">Description</h1>\n<p>Create a user in the system &amp; while login first time the password reset is required if we pass the <code>need_reset_password</code> as true in the request.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_write\",\"\"cidaas:usercreate\"\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>AdminUserCreationEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AdminUserCreationEntity {\n    autoActivate: boolean = false;\n    primaryType: string = \"\";\n    userEntity: UserEntity | null = null;\n    client_id: string = \"\"; // *\n    redirect_uri: string = \"\"; // *\n    response_type: string = \"\"; // *\n    notify_user: boolean = true;\n    generate_password: boolean = false;\n}\nclass UserEntity {\n\n    // user accounts\n    userStatus: string = \"\";\n    user_status: string = \"\";\n    user_status_reason: string = \"\";\n    // social identies\n    username: string = \"\";\n    sub: string = \"\";\n    given_name: string = \"\"; // *\n    family_name: string = \"\";\n    middle_name: string = \"\";\n    nickname: string = \"\";\n    email: string = \"\";\n    email_verified: boolean = false;\n    mobile_number: string = \"\";\n    mobile_number_obj: IMobileEntity | null = null;\n    mobile_number_verified: boolean = false;\n    phone_number: string = \"\";\n    phone_number_obj: IMobileEntity | null = null;\n    phone_number_verified: boolean = false;\n    profile: string = \"\";\n    picture: string = \"\";\n    website: string = \"\";\n    gender: string = \"\";\n    zoneinfo: string = \"\";\n    locale: string = \"\";\n    birthdate: Date | null = null;\n    address?: AddressEntity;\n    customFields?: any; // Map&lt;string,ICustomFieldData&gt;\n    identityCustomFields?: any;\n    password: string = \"\";\n    provider: string = \"\"; // *\n    identityId: string = \"\";\n    providerUserId: string = \"\";\n\n    mfa_enabled?: boolean;\n\n    // just for migration\n    old_password_hash: string = \"\";\n\n\n    // groups and roles\n    roles?: string[];\n    groups?: IUserGroupMap[];\n    userGroups?: IUserGroupMap[];\n    trackId: string = \"\";\n    rawJSON: string = \"\";\n    need_reset_password: boolean = false;\n\n    no_event: boolean = false;\n    consents?: IConsentField[];\n\n    consent_track_ids?: string[];\n    ignore_default_roles?: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ICreateUser;\n}\ninterface ICreateUser{\n    created: boolean;\n    sub:string;\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","create","admin"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b848f71-a3c6-4a36-8dbc-4f50cfe48d9f"},{"name":"Create By Admin [first time password reset required and generate random password]","id":"9f252ecd-c5fa-4682-886f-5090464178c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"autoActivate\":true,\n  \"primaryType\":\"email\",\n  \"generate_password\":true,\n  \"notify_user\":true,\n  \"userEntity\":{\n  \t\"need_reset_password\":true,\n    \"given_name\":\"vimal\",\n    \"family_name\":\"prakash\",\n    \"email_verified\": true,\n    \"email\": \"example_user@gmail.com\",\n    \"password\":\"@race#\",\n    \"provider\":\"self\",\n    \"userStatus\": \"VERIFIED\",\n    \"roles\": [\n      \"USER\"\n    ],\n    \"customFields\": {\n      \"CustomField1\": {\n        \"dataType\": \"TEXT\",\n        \"value\": \"CustomField1 Value\",\n        \"internal\": false,\n        \"readOnly\": false,\n        \"key\": \"CustomField1\"\n      }\n    }\n  },\n  \n  \"client_id\": \"c4364c44-ddda-4552-9fbc-d1281d9ad351\",\n  \"redirect_uri\": \"your_base_url/user-profile/editprofile\",\n  \"response_type\":\"token\"\n}"},"url":"{{baseurl}}/users-srv/user/create/admin","description":"<h1 id=\"description\">Description</h1>\n<p>Create a user in the system &amp; while login first time the password reset is required if we pass the <code>need_reset_password</code> as true in the request. If we send <code>generate_password</code> as true internally we generate the random password for the user.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_write\",\"\"cidaas:usercreate\"\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>AdminUserCreationEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AdminUserCreationEntity {\n    autoActivate: boolean = false;\n    primaryType: string = \"\";\n    userEntity: UserEntity | null = null;\n    client_id: string = \"\"; // *\n    redirect_uri: string = \"\"; // *\n    response_type: string = \"\"; // *\n    notify_user: boolean = true;\n    generate_password: boolean = false;\n}\nclass UserEntity {\n\n    // user accounts\n    userStatus: string = \"\";\n    user_status: string = \"\";\n    user_status_reason: string = \"\";\n    // social identies\n    username: string = \"\";\n    sub: string = \"\";\n    given_name: string = \"\"; // *\n    family_name: string = \"\";\n    middle_name: string = \"\";\n    nickname: string = \"\";\n    email: string = \"\";\n    email_verified: boolean = false;\n    mobile_number: string = \"\";\n    mobile_number_obj: IMobileEntity | null = null;\n    mobile_number_verified: boolean = false;\n    phone_number: string = \"\";\n    phone_number_obj: IMobileEntity | null = null;\n    phone_number_verified: boolean = false;\n    profile: string = \"\";\n    picture: string = \"\";\n    website: string = \"\";\n    gender: string = \"\";\n    zoneinfo: string = \"\";\n    locale: string = \"\";\n    birthdate: Date | null = null;\n    address?: AddressEntity;\n    customFields?: any; // Map&lt;string,ICustomFieldData&gt;\n    identityCustomFields?: any;\n    password: string = \"\";\n    provider: string = \"\"; // *\n    identityId: string = \"\";\n    providerUserId: string = \"\";\n\n    mfa_enabled?: boolean;\n\n    // just for migration\n    old_password_hash: string = \"\";\n\n\n    // groups and roles\n    roles?: string[];\n    groups?: IUserGroupMap[];\n    userGroups?: IUserGroupMap[];\n    trackId: string = \"\";\n    rawJSON: string = \"\";\n    need_reset_password: boolean = false;\n\n    no_event: boolean = false;\n    consents?: IConsentField[];\n\n    consent_track_ids?: string[];\n    ignore_default_roles?: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ICreateUser;\n}\ninterface ICreateUser{\n    created: boolean;\n    sub:string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","create","admin"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9f252ecd-c5fa-4682-886f-5090464178c6"},{"name":"Create By Admin (Internal)","id":"224cb569-9c4d-4029-9245-5bd311b7c345","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","type":"text","value":"de"}],"body":{"mode":"raw","raw":"{\n    \"autoActivate\": true,\n    \"client_id\": \"0e17e9ef-81a1-4bc6-8ee4-bce519f6b047\",\n    \"primaryType\": \"email\",\n    \"redirect_uri\": \"https://besucher.experimenta.science/user-profile/editprofile\",\n    \"response_type\": \"token\",\n    \"userEntity\": {\n        \"email\": null,\n        \"email_verified\": true,\n        \"family_name\": \"-\",\n        \"given_name\": \"-\",\n        \"provider\": \"self\",\n        \"username\": \"vimalprakash123\",\n        \"password\": \"2806\",\n        \"locale\": \"de\",\n        \"userStatus\": \"VERIFIED\",\n        \"groups\": [],\n        \"roles\": [\n            \"USER\"\n        ]\n    },\n    \"notify_user\": true\n}"},"url":"{{baseurl}}/users-srv/user/create/byadmin","description":"<h1 id=\"description\">Description</h1>\n<p>Create a user in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_write\",\"\"cidaas:usercreate\"\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>AdminUserCreationEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AdminUserCreationEntity {\n    autoActivate: boolean = false;\n    primaryType: string = \"\";\n    userEntity: UserEntity | null = null;\n    client_id: string = \"\"; // *\n    redirect_uri: string = \"\"; // *\n    response_type: string = \"\"; // *\n    notify_user: boolean = true;\n    generate_password: boolean = false;\n}\nclass UserEntity {\n\n    // user accounts\n    userStatus: string = \"\";\n    user_status: string = \"\";\n    user_status_reason: string = \"\";\n    // social identies\n    username: string = \"\";\n    sub: string = \"\";\n    given_name: string = \"\"; // *\n    family_name: string = \"\";\n    middle_name: string = \"\";\n    nickname: string = \"\";\n    email: string = \"\";\n    email_verified: boolean = false;\n    mobile_number: string = \"\";\n    mobile_number_obj: IMobileEntity | null = null;\n    mobile_number_verified: boolean = false;\n    phone_number: string = \"\";\n    phone_number_obj: IMobileEntity | null = null;\n    phone_number_verified: boolean = false;\n    profile: string = \"\";\n    picture: string = \"\";\n    website: string = \"\";\n    gender: string = \"\";\n    zoneinfo: string = \"\";\n    locale: string = \"\";\n    birthdate: Date | null = null;\n    address?: AddressEntity;\n    customFields?: any; // Map&lt;string,ICustomFieldData&gt;\n    identityCustomFields?: any;\n    password: string = \"\";\n    provider: string = \"\"; // *\n    identityId: string = \"\";\n    providerUserId: string = \"\";\n\n    mfa_enabled?: boolean;\n\n    // just for migration\n    old_password_hash: string = \"\";\n\n\n    // groups and roles\n    roles?: string[];\n    groups?: IUserGroupMap[];\n    userGroups?: IUserGroupMap[];\n    trackId: string = \"\";\n    rawJSON: string = \"\";\n    need_reset_password: boolean = false;\n\n    no_event: boolean = false;\n    consents?: IConsentField[];\n\n    consent_track_ids?: string[];\n    ignore_default_roles?: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ICreateUser;\n}\ninterface ICreateUser{\n    created: boolean;\n    sub:string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","create","byadmin"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"224cb569-9c4d-4029-9245-5bd311b7c345"}],"id":"57c213d4-ad34-4263-bb06-1f3f5dbbf101","_postman_id":"57c213d4-ad34-4263-bb06-1f3f5dbbf101","description":""},{"name":"Change Password","item":[{"name":"Change password by admin","id":"673392ae-d718-41cf-8d9c-d7f01105aefa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"sub\": \"ed8e4001-e604-4b90-9703-3528beeb38bf\",\n    \"new_password\": \"$Race#\",\n    \"need_reset_password_on_next_login\": true,\n    \"notify_user\":true,\n    \"request_info\":{\n    \t\"client_id\":\"c4364c44-ddda-4552-9fbc-d1281d9ad351\",\n    \t\"redirect_uri\":\"http://localhost:8080/\",\n    \t\"response_type\":\"token\",\n    \t\"scope\":[\"openid\",\"email\",\"profile\"],\n    \t\"nonce\":\"test\"\n    }\n}"},"url":"{{baseurl}}/users-srv/resetpassword/byadmin","description":"<h1 id=\"description\">Description</h1>\n<p>Change password by admin. If we pass any type in this field<code>notify_user_by</code>. It will send the notification to the user based on the type</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>AdminResetPasswordRequest</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AdminResetPasswordRequest {\n    sub?: string; // *\n    new_password?: string; // *\n    need_reset_password_on_next_login?: boolean;\n    notify_user?: boolean;\n    request_info?: IAuthRequest;\n    notify_user_by?: string; // EMAIL / SMS / IVR\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IChangePassword;\n}\ninterface IChangePassword{\n    changed: boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","resetpassword","byadmin"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"673392ae-d718-41cf-8d9c-d7f01105aefa"}],"id":"f0be48a6-69dd-4c25-8957-f86cb626b3e9","_postman_id":"f0be48a6-69dd-4c25-8957-f86cb626b3e9","description":""},{"name":"SCIM","item":[{"name":"ResourceTypes","id":"68b1478f-a731-4ebe-8e9a-6359fe637260","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/users-srv/scim/v2/ResourceTypes","urlObject":{"path":["users-srv","scim","v2","ResourceTypes"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"68b1478f-a731-4ebe-8e9a-6359fe637260"},{"name":"ServiceProviderConfig","id":"c551f6c1-daa6-47f5-af54-2d6b8fc8a2d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/users-srv/scim/v2/ServiceProviderConfig","urlObject":{"path":["users-srv","scim","v2","ServiceProviderConfig"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c551f6c1-daa6-47f5-af54-2d6b8fc8a2d8"},{"name":"Schema","id":"7c851a40-e078-4ef7-a068-e6a1d8282a01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/users-srv/scim/v2/Schemas","urlObject":{"path":["users-srv","scim","v2","Schemas"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c851a40-e078-4ef7-a068-e6a1d8282a01"}],"id":"7838a88a-198a-4e68-8f1b-f6dfb6bdc4a1","_postman_id":"7838a88a-198a-4e68-8f1b-f6dfb6bdc4a1","description":""},{"name":"Link and UnLink Users","item":[{"name":"Link","item":[{"name":"Initiate Link [By Email]","id":"073fcf41-0e74-4764-91be-441a819a9f4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"master_sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n    \"user_name_type\": \"email\",\n    \"user_name_to_link\": \"example_user_email_to_link@gmail.com\"\n}"},"url":"{{baseurl}}/users-srv/user/link/initiate","description":"<h1 id=\"description\">Description</h1>\n<p>Initiate the account linking process</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_write\", \"cidaas:userupdate\", \"cidaas:read\", \"cidaas:write\",\"profile\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IUserLink</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserLink  {\n    _id: string;\n    id: string;\n\n    master_sub: string; // *\n    user_name_type: string;// *\n    user_name_to_link: string;// *\n    user_sub_to_link: string;\n\n\n    link_initiated_by: string;\n    link_accepted_by: string;\n    link_response_time: Date;\n    link_accepted: boolean;\n\n    communication_type: string;\n    verification_status_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IIlink;\n}\ninterface IIlink{\n link_request_id: string;\n }\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","link","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"073fcf41-0e74-4764-91be-441a819a9f4f"},{"name":"Initiate Link [By Mobile]","id":"c7914112-97c3-40ec-ba85-c528d2ecc6e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"master_sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n    \"user_name_type\": \"mobile\",\n    \"user_name_to_link\": \"+9100000000\"\n}"},"url":"{{baseurl}}/users-srv/user/link/initiate","description":"<h1 id=\"description\">Description</h1>\n<p>Initiate the account linking process</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_write\", \"cidaas:userupdate\", \"cidaas:read\", \"cidaas:write\",\"profile\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IUserLink</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserLink  {\n    _id: string;\n    id: string;\n\n    master_sub: string;// *\n    user_name_type: string;// *\n    user_name_to_link: string;// *\n    user_sub_to_link: string;\n\n\n    link_initiated_by: string;\n    link_accepted_by: string;\n    link_response_time: Date;\n    link_accepted: boolean;\n\n    communication_type: string;\n    verification_status_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IIlink;\n}\ninterface IIlink{\n link_request_id: string;\n }\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","link","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c7914112-97c3-40ec-ba85-c528d2ecc6e7"},{"name":"Complete Link","id":"ca78e4b2-1103-4b8f-b3ea-9ff7f3df5beb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"link_request_id\": \"23917a1a-6e2c-4fdd-abd5-4584985aebd9\",\n    \"code\": \"775773\"\n}"},"url":"{{baseurl}}/users-srv/user/link/complete","description":"<h1 id=\"description\">Description</h1>\n<p>Complete the account linking process.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_write\", \"cidaas:userupdate\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>CompleteLinkUser</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class CompleteLinkUser {\n    code?: string; // *\n    link_request_id?: string;// *\n    link_accepted_by?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUpdateLink;\n}\ninterface IUpdateLink{\n updated: boolean;\n }\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","link","complete"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca78e4b2-1103-4b8f-b3ea-9ff7f3df5beb"}],"id":"a63d21f7-872d-4159-853a-e332e7e5683e","_postman_id":"a63d21f7-872d-4159-853a-e332e7e5683e","description":""},{"name":"UnLink","item":[{"name":"UnLink Account","id":"5c46c814-83a3-4a26-8011-7849fcb9b4f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/user/unlink/:identity_id","description":"<h1 id=\"description\">Description</h1>\n<p>Unlink the identity</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:users_write\", \"cidaas:userupdate\", \"cidaas:read\", \"cidaas:write\",\"profile\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\",\"USER_DELETE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>identityId</code> value in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>identityId\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUpdateUnLink;\n}\ninterface IUpdateUnLink{\n updated: boolean;\n }\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","unlink",":identity_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"3e7f2e49-f045-46f5-8784-e3b41395d57c","type":"string","value":"","key":"identity_id"}]}},"response":[],"_postman_id":"5c46c814-83a3-4a26-8011-7849fcb9b4f8"}],"id":"30183312-36b2-4cbd-896e-306087eebde2","_postman_id":"30183312-36b2-4cbd-896e-306087eebde2","description":""}],"id":"d05076ce-951e-4ab4-97a5-1c6c0e0f476c","_postman_id":"d05076ce-951e-4ab4-97a5-1c6c0e0f476c","description":""},{"name":"Internal","item":[{"name":"Check the email is exists or not for the social provider (Internal)","id":"27ee2a8a-c6ca-407d-a877-43383380a3df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"email\":\"sadrick.widmann+free2@gmail.com\",\n  \"provider\":\"self\",\n  \"given_name\":\"Vimal\",\n  \"sub\":\"ba3386bb-99e8-4bba-80ba-2821808bfab8\",\n  \"customFields\":{\n  \t\"customerNumber\":\"4567\"\n  }\n}"},"url":"{{baseurl}}/users-srv/internal/social/finduser","description":"<h1 id=\"description\">Description</h1>\n<p>Check the email is exists or not for the social provider</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>SocialUserCheckRequest</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp: 213412\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class SocialUserCheckRequest {\n    email: string = \"\"; // *\n    providerUserId: string = \"\"; // *\n    provider: string = \"\";\n    retry: boolean = false;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: SocialUserCheckResponse;\n}\nclass SocialUserCheckResponse {\n    present: boolean = false;\n    email: string = \"\";\n    providerUserId: string = \"\";\n    userStatus: string = \"\";\n    sub: string = \"\";\n    email_verified: boolean = false;\n    provider: string = \"\";\n    identityId: string = \"\";\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","social","finduser"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"27ee2a8a-c6ca-407d-a877-43383380a3df"},{"name":"Social identity registration (Internal)","id":"b3e4bfa4-a0d4-458d-b495-53fba1463915","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/internal/social/register","description":"<h1 id=\"description\">Description</h1>\n<p>Social identity registration</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>SocialUserCheckRequest</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp: 435512\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class SocialUserRegisterRequest {\n    metadataId: string = \"\";\n    socialUserInfo?: ICommonSocialUserEntity;\n    authRequest?: IAuthRequest;\n    sub: string = \"\";\n    metadata: any;\n    is_deduplication: boolean = false;\n}\ninterface ICommonSocialUserEntity {\n    sub: string;\n    name: string;\n    given_name: string;\n    family_name: string;\n    middle_name: string;\n    nickname: string;\n    email: string;\n    email_verified: boolean;\n    mobile_number: string;\n    mobile_number_verified: boolean;\n    phone_number: string;\n    phone_number_verified: boolean;\n    profile: string;\n    picture: string;\n    website: string;\n    gender: string;\n    zoneinfo: string;\n    locale: string;\n    birthdate: Date | null;\n    address?: IAddressEntity;\n    provider: string;\n    customFields: any;\n    rawJSON: string;\n}\ninterface IAddressEntity {\n    formatted: string;\n    street_address: string;\n    locality: string;\n    region: string;\n    postal_code: string;\n    country: string;\n}\n\ninterface IAuthRequest {\n    id: string;\n    client_id: string;\n    response_mode: string;\n    response_type: string[];\n    scopes: string[];\n    state: string;\n    redirect_uri: string;\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string[];\n    max_age: number;\n    ui_locales: string[];\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string[];\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string[];\n    request: string;\n    request_uri: string;\n    registration: string;\n    sub: string;\n    currentStage: string;\n    cidaasDeviceId: string;\n    groupId: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    needCode: boolean;\n    needIdToken: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    initiate_login_uri: string;\n    invite_id: string;\n    sso_id: string;\n    apiversion: string;\n    protocol: string;\n}\ninterface IClaimRequestEntity {\n    userinfo: IClaimBodyEntity;\n    id_token: IClaimBodyEntity;\n}\ninterface IClaimBodyEntity {\n    [key: string]: IClaimDataEntity;\n}\ninterface IClaimDataEntity {\n    value: string;\n    values: string[];\n    essential: boolean;\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserWrapperEntity;\n}\ninterface UserWrapperEntity {\n    userAccount: IUserAccounts;\n    identities: ISocialIdentity[];\n    roles: string[];\n    groups: UserGroupFlatEntity[];\n    customFields: any;\n}\n\ninterface IUserAccounts {\n    _id: string;\n    id: string;\n    sub: string,\n    userStatus: string,\n    user_status_reason: string,\n    lastLoggedInTime: Date,\n    lastUsedIdentity: string,\n    mfa_enabled: boolean;\n\n\n    createdTime: Date,\n    groups: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n\ninterface ISocialIdentity  {\n    _id: string;\n    id: string;\n    sub: string,\n    given_name: string,\n    family_name: string,\n    middle_name: string,\n    nickname: string,\n\n    email: string,\n    email_verified: boolean,\n\n    mobile_number: string,\n    mobile_number_obj: IMobileEntity,\n    mobile_number_verified: boolean,\n\n    phone_number: string,\n    phone_number_obj: IMobileEntity,\n    phone_number_verified: boolean,\n\n    profile: string,\n    picture: string,\n    website: string,\n    gender: string,\n    zoneinfo: string,\n    locale: string,\n    birthdate: Date,\n    address: IUserAddress,\n\n    // cidaas specific\n    provider: string;\n    providerUserId: string;\n    username: string,\n    identityCustomFields: any,\n    password_hash: string,\n    password_salt: string,\n\n\n\n    // social provider specific \n    raw_json: string,\n\n    // only for migration\n    old_password_hash: string,\n\n    // db defaults\n    updatedTime: Date\n}\n\nclass UserGroupFlatEntity {\n    sub?: string;\n    groupId?: string;\n    groupType?: string;\n    path?: string;\n    roles?: string[];\n\n\n    groupPath?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","social","register"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b3e4bfa4-a0d4-458d-b495-53fba1463915"},{"name":"Update social identity  (Internal)","id":"c32eb68e-06b6-45a3-b7cb-c0b72cac9f24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/internal/social/update/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Update social identity</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>ICommonSocialUserEntity</code> entity in the body section &amp; <code>sub</code> in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp: 435512\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ICommonSocialUserEntity {\n    sub: string;\n    name: string;\n    given_name: string;\n    family_name: string;\n    middle_name: string;\n    nickname: string;\n    email: string;\n    email_verified: boolean;\n    mobile_number: string;\n    mobile_number_verified: boolean;\n    phone_number: string;\n    phone_number_verified: boolean;\n    profile: string;\n    picture: string;\n    website: string;\n    gender: string;\n    zoneinfo: string;\n    locale: string;\n    birthdate: Date | null;\n    address?: IAddressEntity;\n    provider: string;\n    customFields: any;\n    rawJSON: string;\n}\ninterface IAddressEntity {\n    formatted: string;\n    street_address: string;\n    locality: string;\n    region: string;\n    postal_code: string;\n    country: string;\n}\n\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserAccounts;\n}\ninterface IUserAccounts  {\n    _id: string;\n    id: string;\n    sub: string,\n    userStatus: string,\n    user_status_reason: string,\n    lastLoggedInTime: Date,\n    lastUsedIdentity: string,\n    mfa_enabled: boolean;\n\n\n    createdTime: Date,\n    groups: IUserGroupMap[]\n}\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","social","update",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"","key":"sub"}]}},"response":[],"_postman_id":"c32eb68e-06b6-45a3-b7cb-c0b72cac9f24"},{"name":"Load raw user information by sub (Internal)","id":"79b05d32-915a-47a6-9d60-425e5d11c524","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/internal/full/{{sub}}","description":"<h1 id=\"description\">Description</h1>\n<p>Load raw user information by sub (Internal)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect <code>sub</code> in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp : 212122\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserWrapperEntity;\n}\ninterface UserWrapperEntity {\n    userAccount: IUserAccounts;\n    identities: ISocialIdentity[];\n    roles: string[];\n    groups: UserGroupFlatEntity[];\n    customFields: any;\n}\n\ninterface IUserAccounts {\n    _id: string;\n    id: string;\n    sub: string,\n    userStatus: string,\n    user_status_reason: string,\n    lastLoggedInTime: Date,\n    lastUsedIdentity: string,\n    mfa_enabled: boolean;\n\n\n    createdTime: Date,\n    groups: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n\ninterface ISocialIdentity  {\n    _id: string;\n    id: string;\n    sub: string,\n    given_name: string,\n    family_name: string,\n    middle_name: string,\n    nickname: string,\n\n    email: string,\n    email_verified: boolean,\n\n    mobile_number: string,\n    mobile_number_obj: IMobileEntity,\n    mobile_number_verified: boolean,\n\n    phone_number: string,\n    phone_number_obj: IMobileEntity,\n    phone_number_verified: boolean,\n\n    profile: string,\n    picture: string,\n    website: string,\n    gender: string,\n    zoneinfo: string,\n    locale: string,\n    birthdate: Date,\n    address: IUserAddress,\n\n    // cidaas specific\n    provider: string;\n    providerUserId: string;\n    username: string,\n    identityCustomFields: any,\n    password_hash: string,\n    password_salt: string,\n\n\n\n    // social provider specific \n    raw_json: string,\n\n    // only for migration\n    old_password_hash: string,\n\n    // db defaults\n    updatedTime: Date\n}\n\nclass UserGroupFlatEntity {\n    sub?: string;\n    groupId?: string;\n    groupType?: string;\n    path?: string;\n    roles?: string[];\n\n\n    groupPath?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","full","{{sub}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"79b05d32-915a-47a6-9d60-425e5d11c524"},{"name":"Load  user information by sub with last login identity (Internal)","id":"0b008b6d-f857-4cc6-aa86-be90027619d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/internal/userinfo/lastloginidentity/{{sub}}","description":"<h1 id=\"description\">Description</h1>\n<p>Load  user information by sub with last login identity (Internal)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect <code>sub</code> in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>totp: 122112\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserWrapperEntity;\n}\ninterface UserWrapperEntity {\n    userAccount: IUserAccounts;\n    identities: ISocialIdentity[];\n    roles: string[];\n    groups: UserGroupFlatEntity[];\n    customFields: any;\n}\n\ninterface IUserAccounts {\n    _id: string;\n    id: string;\n    sub: string,\n    userStatus: string,\n    user_status_reason: string,\n    lastLoggedInTime: Date,\n    lastUsedIdentity: string,\n    mfa_enabled: boolean;\n\n\n    createdTime: Date,\n    groups: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n\ninterface ISocialIdentity  {\n    _id: string;\n    id: string;\n    sub: string,\n    given_name: string,\n    family_name: string,\n    middle_name: string,\n    nickname: string,\n\n    email: string,\n    email_verified: boolean,\n\n    mobile_number: string,\n    mobile_number_obj: IMobileEntity,\n    mobile_number_verified: boolean,\n\n    phone_number: string,\n    phone_number_obj: IMobileEntity,\n    phone_number_verified: boolean,\n\n    profile: string,\n    picture: string,\n    website: string,\n    gender: string,\n    zoneinfo: string,\n    locale: string,\n    birthdate: Date,\n    address: IUserAddress,\n\n    // cidaas specific\n    provider: string;\n    providerUserId: string;\n    username: string,\n    identityCustomFields: any,\n    password_hash: string,\n    password_salt: string,\n\n\n\n    // social provider specific \n    raw_json: string,\n\n    // only for migration\n    old_password_hash: string,\n\n    // db defaults\n    updatedTime: Date\n}\n\nclass UserGroupFlatEntity {\n    sub?: string;\n    groupId?: string;\n    groupType?: string;\n    path?: string;\n    roles?: string[];\n\n\n    groupPath?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","internal","userinfo","lastloginidentity","{{sub}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b008b6d-f857-4cc6-aa86-be90027619d7"}],"id":"ecfb4d76-d1a6-4765-b11e-b20ec3da1391","_postman_id":"ecfb4d76-d1a6-4765-b11e-b20ec3da1391","description":""}],"id":"5ca8bfd9-1546-4d16-941f-d08fec0300f1","_postman_id":"5ca8bfd9-1546-4d16-941f-d08fec0300f1","description":""},{"name":"Settings","item":[{"name":"Social Providers","item":[{"name":"Get social provider settings","id":"6a5519f6-e6d0-45eb-ac4d-7cd3ef0deb2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/providers-srv/settings/providers","description":"<h1 id=\"description\">Description</h1>\n<p>To list all social provider in the system.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:providers_read\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET,APP_READ, APP_CREATE, USER_CREATE, USER_READ]\n                    }\n            ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Rquest Entity\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IProviderEntity {\n    provider: string = \"\";\n    auth_url: string = \"\";\n    access_token_url: string = \"\";\n    profile_url: string = \"\";\n    resource_url: string = \"\";\n    image_url: string = \"\";\n    scopes: ProviderScopes | null = null;\n}\n\ninterface IProviderScopes {\n    display_label: string = \"\";\n    required_scopes: string[] = [];\n    available_scopes: string[] = [];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["providers-srv","settings","providers"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6a5519f6-e6d0-45eb-ac4d-7cd3ef0deb2c"},{"name":"Get all social providers","id":"552ae62f-6627-4435-b018-2a1d534232ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/providers-srv/providers/enabled/list","description":"<h1 id=\"description\">Description</h1>\n<p>To list enabled social provider in the system.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:providers_read\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET,APP_READ, APP_CREATE, USER_CREATE, USER_READ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Rquest Entity\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISocialProvider {\n    _id: string;\n    id: string;\n    provider_name: string;\n    enabled: boolean;\n    client_id: string;\n    client_secret: string;\n    hosted_domain: string;\n    description: string;\n    auth_request_params: any;\n    provider_type: string;\n    scopes: string[];\n    claims: string[];\n    enabled_for_admin_portal: boolean;\n    base_url: string;\n\n    // OAuth1 spcific\n    consumer_key: string;\n    consumer_secret: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["providers-srv","providers","enabled","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"552ae62f-6627-4435-b018-2a1d534232ce"},{"name":"Configure new social provider","id":"747225a8-c359-401a-9c13-e50d9d4f8817","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"provider_name\":\"facebook\",\n  \"enabled\":true,\n  \"client_id\":\"801022646751670\",\n  \"client_secret\":\"943822946a3a933336d8b1329e43b466\",\n  \"scopes\":[\"public_profile\",\"email\"]\n}"},"url":"{{baseurl}}/providers-srv/providers","description":"<h1 id=\"description\">Description</h1>\n<p>To configure new social provider.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:providers_write\",  \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISocialProvider {\n    _id: string;\n    id: string;\n    provider_name: string; // *\n    enabled: boolean;\n    client_id: string; // *\n    client_secret: string; // *\n    hosted_domain: string;\n    description: string;\n    auth_request_params: any;\n    provider_type: string;\n    scopes: string[];\n    claims: string[];\n    enabled_for_admin_portal: boolean;\n    base_url: string;\n\n    // OAuth1 spcific\n    consumer_key: string;\n    consumer_secret: string;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISocialProvider {\n    _id: string;\n    id: string;\n    provider_name: string;\n    enabled: boolean;\n    client_id: string;\n    client_secret: string;\n    hosted_domain: string;\n    description: string;\n    auth_request_params: any;\n    provider_type: string;\n    scopes: string[];\n    claims: string[];\n    enabled_for_admin_portal: boolean;\n    base_url: string;\n\n    // OAuth1 spcific\n    consumer_key: string;\n    consumer_secret: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["providers-srv","providers"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"747225a8-c359-401a-9c13-e50d9d4f8817"},{"name":"Get configured social provider detail","id":"3ec8c52f-fe5c-4c34-9891-9877df900be3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/providers-srv/providers?provider_name=facebook","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured social provider detail in the system.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:providers_read\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET,APP_READ, APP_CREATE, USER_CREATE, USER_READ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass Query Param in <strong>provider_name</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Body Required\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Rquest Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISocialProvider {\n    _id: string;\n    id: string;\n    provider_name: string;\n    enabled: boolean;\n    client_id: string;\n    client_secret: string;\n    hosted_domain: string;\n    description: string;\n    auth_request_params: any;\n    provider_type: string;\n    scopes: string[];\n    claims: string[];\n    enabled_for_admin_portal: boolean;\n    base_url: string;\n\n    // OAuth1 spcific\n    consumer_key: string;\n    consumer_secret: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["providers-srv","providers"],"host":["{{baseurl}}"],"query":[{"key":"provider_name","value":"facebook"}],"variable":[]}},"response":[],"_postman_id":"3ec8c52f-fe5c-4c34-9891-9877df900be3"},{"name":"Remove configured social provider","id":"a7328c88-b777-4137-852b-f2bdf88577a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{base_url}}/providers-srv/providers/facebook","description":"<h1 id=\"description\">Description</h1>\n<p>To remove configured social provider.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_delete\", \"cidaas:providers_delete\", \"cidaas:delete\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n           ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param:</h2>\n<p>It should pass path param in <strong>provider_name</strong> // *</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Body Required\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Rquest Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{ deleted: true }\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR\n417:  EXPECTATION_FAILED</p>\n","urlObject":{"path":["providers-srv","providers","facebook"],"host":["{{base_url}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7328c88-b777-4137-852b-f2bdf88577a5"}],"id":"b0543a2e-af40-4797-9936-d839ec72395b","_postman_id":"b0543a2e-af40-4797-9936-d839ec72395b","description":""},{"name":"RegistrationSetup","item":[{"name":"GeneralSetting","item":[{"name":"Get registration setups","id":"d3ff232a-81dd-47e2-9b36-ba57cbc58818","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/registration-setup-srv/settings","description":"<h1 id=\"description\">Description</h1>\n<p>To list out all the registration fields.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:registration_setup_read\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Body Required\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Rquest Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IRegistrationSetup{\n    _id: string;\n    id: string;\n    displayNameRules: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["registration-setup-srv","settings"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d3ff232a-81dd-47e2-9b36-ba57cbc58818"},{"name":"Create new settings","id":"9aa367fd-a14b-4015-8795-7c1b459efcaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"displayNameRules\":[\"given_name\",\"family_name\"]\n}"},"url":"{{baseurl}}/registration-setup-srv/settings","description":"<h1 id=\"description\">Description</h1>\n<p>To create new registration field settings.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:registration_setup_write\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IRegistrationSetup{\n    _id: string;\n    id: string;\n    displayNameRules: string[]; // *\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IRegistrationSetup{\n    _id: string;\n    id: string;\n    displayNameRules: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["registration-setup-srv","settings"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9aa367fd-a14b-4015-8795-7c1b459efcaa"}],"id":"172429dd-519b-48f0-9732-e40ed187651f","_postman_id":"172429dd-519b-48f0-9732-e40ed187651f","description":""},{"name":"FieldSettings","item":[{"name":"Get system supported locales","id":"87d027c8-e45e-4147-b51e-d6af2d6973ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/templates-srv/master/locales","description":"<h1 id=\"description\">Description</h1>\n<p>To get system supported locales.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:cidaas_templates_read\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Body Required\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Rquest Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ILocaleEntity {\n    LocaleString: string;\n    Country: string;\n    DisplayCountry: string;\n    DisplayLanguage: string;\n    DisplayName: string;\n    DisplayVariant: string;\n    ISO3Country: string;\n    ISO3Language: string;\n    Language: string;\n    Variant: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["templates-srv","master","locales"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"87d027c8-e45e-4147-b51e-d6af2d6973ef"},{"name":"Get flat info by its fieldkey","id":"03a114c5-dfd7-4672-b6fa-e238fea8997b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/registration-setup-srv/fields/flat/field/:field_key","description":"<h1 id=\"description\">Description</h1>\n<p>To get flat information by its fieldkey.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:registration_setup_read\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass Path Param in <strong>field_key</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Body Required\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Rquest Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IRegistrationFieldSetup {\n    _id: string;\n    id: string;\n    fieldKey: string; // *\n    //fieldName: string;\n    dataType: string;\n    internal: boolean;\n    claimable: boolean;\n    readOnly: boolean;\n    required: boolean;\n    order: number;\n    scopes: string[];\n    enabled: boolean;\n    fieldDefinition: IFieldDefination;\n    localeText: IFieldMessage[];\n    is_group: boolean;\n    parent_group_id: string;\n    fieldType: string;\n    uniqueness: string;\n    consent_refs?: string[];\n}\n\ninterface IFieldDefination {\n    matchWith?: string;\n    defaultValue: any | null;\n}\n\ninterface IFieldMessage {\n    locale?: string;\n    language?: string;\n    matchWith?: string;\n    required?: string;\n    name?: string;\n    consentLabel?: ConsentLabel;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417:  EXPECTATION_FAILED</p>\n","urlObject":{"path":["registration-setup-srv","fields","flat","field",":field_key"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"7f189c71-6a14-4a51-b0e4-8c6914f7d457","type":"string","value":"","key":"field_key"}]}},"response":[],"_postman_id":"03a114c5-dfd7-4672-b6fa-e238fea8997b"},{"name":"Get all fields","id":"1265baad-5774-4d3b-8bb7-11977fe81ff7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/registration-setup-srv/fields/list","description":"<h1 id=\"description\">Description</h1>\n<p>To list out all the registration fields.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:registration_setup_read\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET,APP_READ, APP_CREATE]\n                    }\n                ]\n                \n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Body Required\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Rquest Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IRegistrationFieldSetup {\n    _id: string;\n    id: string;\n    fieldKey: string;\n    //fieldName: string;\n    dataType: string;\n    internal: boolean;\n    claimable: boolean;\n    readOnly: boolean;\n    required: boolean;\n    order: number;\n    scopes: string[];\n    enabled: boolean;\n    fieldDefinition: IFieldDefination;\n    localeText: IFieldMessage[];\n    is_group: boolean;\n    parent_group_id: string;\n    fieldType: string;\n    uniqueness: string;\n    consent_refs?: string[];\n}\n\ninterface IFieldDefination {\n    matchWith?: string;\n    defaultValue: any | null;\n}\n\ninterface IFieldMessage {\n    locale?: string;\n    language?: string;\n    matchWith?: string;\n    required?: string;\n    name?: string;\n    consentLabel?: ConsentLabel;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["registration-setup-srv","fields","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1265baad-5774-4d3b-8bb7-11977fe81ff7"},{"name":"Create new field","id":"fed97ac1-9c59-4833-ab9a-0626d50c3046","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"fieldKey\":\"given_name\",\n  \"fieldName\":\"Given Name\",\n  \"dataType\":\"TEXT\",\n  \"required\":true,\n  \"order\":1,\n  \"claimable\":true,\n  \"localeText\":{\n    \"locale\":\"en_US\",\n    \"name\":\"Given Name\"\n  }\n}"},"url":"{{baseurl}}/registration-setup-srv/fields","description":"<h1 id=\"description\">Description</h1>\n<p>To create new registration field.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:registration_setup_write\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IFlatRegistrationFieldSetup {\n    fieldKey?: string; // *\n    fieldName?: string;\n    dataType?: string;\n    readOnly?: boolean;\n    required?: boolean;\n    order?: number;\n    internal?: boolean;\n    claimable?: boolean;\n    scopes?: string[];\n    fieldDefinition?: IWebFieldDefination;\n    localeText?: IWebFieldMessage; // *\n    is_group?: boolean;\n    parent_group_id?: string;\n    fieldType?: string;\n\n    enabled?: boolean;\n\n    consent_refs?: string[];\n\n    _id?: string;\n    id?: string;\n}\n\ninterface IWebFieldDefination {\n    matchWith?: string;\n    defaultValue: any | null;\n}\n\ninterface IWebFieldMessage {\n    locale?: string;\n    language?: string;\n    matchWith?: string;\n    required?: string;\n    consentLabel?: ConsentLabel;\n    name?: string;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IRegistrationFieldSetup {\n    _id: string;\n    id: string;\n    fieldKey: string;\n    //fieldName: string;\n    dataType: string;\n    internal: boolean;\n    claimable: boolean;\n    readOnly: boolean;\n    required: boolean;\n    order: number;\n    scopes: string[];\n    enabled: boolean;\n    fieldDefinition: IFieldDefination;\n    localeText: IFieldMessage[];\n    is_group: boolean;\n    parent_group_id: string;\n    fieldType: string;\n    uniqueness: string;\n    consent_refs?: string[];\n}\n\ninterface IFieldDefination {\n    matchWith?: string;\n    defaultValue: any | null;\n}\n\ninterface IFieldMessage {\n    locale?: string;\n    language?: string;\n    matchWith?: string;\n    required?: string;\n    name?: string;\n    consentLabel?: ConsentLabel;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417: EXPECTATION_FAILED</p>\n","urlObject":{"path":["registration-setup-srv","fields"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fed97ac1-9c59-4833-ab9a-0626d50c3046"},{"name":"Update field","id":"773c5be1-fc3a-4989-b1b5-39e59c0f0a86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"fieldKey\":\"middle_name\",\n  \"order\":3\n}"},"url":"{{baseurl}}/registration-setup-srv/fields/order","description":"<h1 id=\"description\">Description</h1>\n<p>To update the existing registration fields.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:registration_setup_write\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IFlatRegistrationFieldSetup {\n    fieldKey?: string; //*\n    fieldName?: string;\n    dataType?: string;\n    readOnly?: boolean;\n    required?: boolean;\n    order?: number;\n    internal?: boolean;\n    claimable?: boolean;\n    scopes?: string[];\n    fieldDefinition?: IWebFieldDefination;\n    localeText?: IWebFieldMessage;\n    is_group?: boolean;\n    parent_group_id?: string;\n    fieldType?: string;\n\n    enabled?: boolean;\n\n    consent_refs?: string[];\n\n    _id?: string;\n    id?: string;\n}\n\ninterface IWebFieldDefination {\n    matchWith?: string;\n    defaultValue: any | null;\n}\n\ninterface IWebFieldMessage {\n    locale?: string;\n    language?: string;\n    matchWith?: string;\n    required?: string;\n    consentLabel?: ConsentLabel;\n    name?: string;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{ data:true }\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["registration-setup-srv","fields","order"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"773c5be1-fc3a-4989-b1b5-39e59c0f0a86"},{"name":"Get flat info by accept-language","id":"4790839e-0593-4c20-831e-21b92e8d9a16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/registration-setup-srv/fields/flat/list?acceptlanguage=en_US","description":"<h1 id=\"description\">Description</h1>\n<p>To get flat information field by sending accept-language in the query param.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:registration_setup_read\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param:</h2>\n<p> It should pass query param <strong>acceptlanguage</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IFlatRegistrationFieldSetup {\n    fieldKey?: string;\n    fieldName?: string;\n    dataType?: string;\n    readOnly?: boolean;\n    required?: boolean;\n    order?: number;\n    internal?: boolean;\n    claimable?: boolean;\n    scopes?: string[];\n    fieldDefinition?: IWebFieldDefination;\n    localeText?: IWebFieldMessage;\n    is_group?: boolean;\n    parent_group_id?: string;\n    fieldType?: string;\n\n    enabled?: boolean;\n\n    consent_refs?: string[];\n\n    _id?: string;\n    id?: string;\n}\n\ninterface IWebFieldDefination {\n    matchWith?: string;\n    defaultValue: any | null;\n}\n\ninterface IWebFieldMessage {\n    locale?: string;\n    language?: string;\n    matchWith?: string;\n    required?: string;\n    consentLabel?: ConsentLabel;\n    name?: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["registration-setup-srv","fields","flat","list"],"host":["{{baseurl}}"],"query":[{"key":"acceptlanguage","value":"en_US"}],"variable":[]}},"response":[],"_postman_id":"4790839e-0593-4c20-831e-21b92e8d9a16"},{"name":"Get single field info by accept-language","id":"7b16b06c-7805-4001-af4f-26089d276abd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/registration-setup-srv/fields/flat/:field_key?acceptlanguage=en_US","description":"<h1 id=\"description\">Description</h1>\n<p>To get single field information by sending accept-language in the query param.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:registration_setup_read\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param:</h2>\n<p> It should pass query param <strong>acceptlanguage</strong></p>\n<h2 id=\"path-param\">Path Param</h2>\n<p> It should pass path param <strong>field_key</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IFlatRegistrationFieldSetup {\n    fieldKey?: string;\n    fieldName?: string;\n    dataType?: string;\n    readOnly?: boolean;\n    required?: boolean;\n    order?: number;\n    internal?: boolean;\n    claimable?: boolean;\n    scopes?: string[];\n    fieldDefinition?: IWebFieldDefination;\n    localeText?: IWebFieldMessage;\n    is_group?: boolean;\n    parent_group_id?: string;\n    fieldType?: string;\n\n    enabled?: boolean;\n\n    consent_refs?: string[];\n\n    _id?: string;\n    id?: string;\n}\n\ninterface IWebFieldDefination {\n    matchWith?: string;\n    defaultValue: any | null;\n}\n\ninterface IWebFieldMessage {\n    locale?: string;\n    language?: string;\n    matchWith?: string;\n    required?: string;\n    consentLabel?: ConsentLabel;\n    name?: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["registration-setup-srv","fields","flat",":field_key"],"host":["{{baseurl}}"],"query":[{"key":"acceptlanguage","value":"en_US"}],"variable":[{"id":"22fe4207-1c09-43ad-97b5-ef37897f8550","type":"string","value":"","key":"field_key"}]}},"response":[],"_postman_id":"7b16b06c-7805-4001-af4f-26089d276abd"},{"name":"Get fields for given scopes and claims","id":"e02f5a19-8528-4164-8a68-aaf4b4e37974","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"url":"{{baseurl}}/registration-setup-srv/fields/fieldsbyscopesandclaims","description":"<h1 id=\"description\">Description</h1>\n<p>To get fields by given scope and claims</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:registration_setup_read\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> interface ScopeAndClaimRequest {\n    scopes: string[];\n    claims: IClaimRequestEntity;\n    usage: string;\n}\ninterface IClaimRequestEntity {\n    userinfo: IClaimBodyEntity;\n    id_token: IClaimBodyEntity;\n}\ninterface IClaimBodyEntity {\n    [key: string]: IClaimDataEntity;\n}\ninterface IClaimDataEntity {\n    value: string;\n    values: string[];\n    essential: boolean;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ResolvedFieldsResponse;\n}\ninterface ResolvedFieldsResponse {\n    fieldKey: string;\n    fieldType: string;\n    fieldDefinition: FieldDefination;\n}\ninterface FieldDefination {\n    matchWith?: string;\n    defaultValue: any | null;\n}\n\ninterface FieldMessage {\n    locale?: string;\n    language?: string;\n    matchWith?: string;\n    required?: string;\n    name?: string;\n    consentLabel?: ConsentLabel;\n}\ninterface ConsentLabel {\n    label_text?: string;\n    label?: string\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["registration-setup-srv","fields","fieldsbyscopesandclaims"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e02f5a19-8528-4164-8a68-aaf4b4e37974"}],"id":"69ba3c65-f582-41a7-9869-ee9b29b08cde","_postman_id":"69ba3c65-f582-41a7-9869-ee9b29b08cde","description":""},{"name":"Menu","item":[{"name":"Get sidebar menu by access_token","id":"de5c08b6-3dae-4b9e-a859-52af1c3fdf42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/registration-setup-srv/menu/bytoken","description":"<h1 id=\"description\">Description</h1>\n<p>To get sidebar menu data by using access_token.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Scopes are not required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Groups and roles are not required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{ allow_totp: true }\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["registration-setup-srv","menu","bytoken"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de5c08b6-3dae-4b9e-a859-52af1c3fdf42"}],"id":"ab75a2e4-9e4e-4e73-89f0-17d54db86ff7","_postman_id":"ab75a2e4-9e4e-4e73-89f0-17d54db86ff7","description":""}],"id":"b0850968-4af3-488a-978a-bdeaf68945f6","_postman_id":"b0850968-4af3-488a-978a-bdeaf68945f6","description":""},{"name":"Templates","item":[{"name":"Custom","item":[{"name":"Create  new custom templates","id":"e459b5dc-f4e2-4db5-8860-29d02bcd824a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"content\": \"Hi {{name}}, {{product_name}} Click here to download the newsletter : {{{proxy_link}}}\",\n  \"subject\": \"de Verify your {{account_name}} account\",\n  \"language\": \"en\",\n  \"locale\": \"en\",\n  \"usageType\": \"GENERAL\",\n  \"templateType\": \"EMAIL\",\n  \"templateKey\": \"NEWS_LETTER_2\"\n}"},"url":"{{baseurl}}/templates-srv/template/custom","description":"<h1 id=\"description\">Description</h1>\n<p>To create new custom templates.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\", \"cidaas:templates_write\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass Query Param in <strong>provider_name</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate {\n    _id: string;\n    id: string;\n    templateKey: string; // *\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate {\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","template","custom"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e459b5dc-f4e2-4db5-8860-29d02bcd824a"},{"name":"Get template by templatekey,templatetype,_id","id":"2baaac31-b5dd-49b2-9546-018ff5d875d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"language\": \"de\",\n  \"locale\": \"de\",\n  \"usageType\": \"GENERAL\",\n  \"templateType\": \"EMAIL\",\n  \"templateKey\": \"CUSTOM\",\n  \"_id\":\"26cea0e8-7562-4707-9a8d-d70f5b067951\"\n}"},"url":"{{baseurl}}/templates-srv/template/custom/find","description":"<h1 id=\"description\">Description</h1>\n<p>To get templates by using templatekey and template_id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_read\", \"cidaas:templates_read\", \"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITemplateQueryEntity {\n    _id?: string;\n    templateKey?: string;  // *\n    templateType?: string;\n    processingType?: string;\n    usageType?: string;\n    locale?: string;\n    templateOwner: string = TemplateOwner.CLIENT;\n    verificationType?: string;\n    language?: string;\n    acceptLanguage?: string;\n    group_id?: string;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate{\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","template","custom","find"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"ac675e9e-8b81-471c-9ff6-0adf9f7d6000","name":"Get template by templatekey,templatetype,_id","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","warning":""},{"key":"access_token","value":"{{access_token}}","warning":""}],"body":{"mode":"raw","raw":"{\n  \"language\": \"de\",\n  \"locale\": \"de\",\n  \"usageType\": \"GENERAL\",\n  \"templateType\": \"EMAIL\",\n  \"templateKey\": \"CUSTOM\",\n  \"_id\":\"26cea0e8-7562-4707-9a8d-d70f5b067951\"\n}"},"url":"{{baseurl}}/templates-srv/template/custom/find"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":""},{"key":"connection","value":"keep-alive","name":"connection","description":""},{"key":"content-length","value":"521","name":"content-length","description":""},{"key":"content-type","value":"application/json; charset=utf-8","name":"content-type","description":""},{"key":"date","value":"Sat, 28 Jul 2018 06:44:20 GMT","name":"date","description":""},{"key":"etag","value":"W/\"209-6u303jhXL/uWydP5KaQ7pBR65mM\"","name":"etag","description":""},{"key":"server","value":"nginx","name":"server","description":""}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"26cea0e8-7562-4707-9a8d-d70f5b067951\",\"updatedTime\":\"2018-07-28T06:34:27.574Z\",\"createdTime\":\"2018-07-28T06:34:27.574Z\",\"className\":\"de.cidaas.core.db.CustomTemplates\",\"templateOwner\":\"DEVELOPER\",\"templateKey\":\"CUSTOM\",\"templateType\":\"EMAIL\",\"usageType\":\"GENERAL\",\"locale\":\"de\",\"language\":\"de\",\"subject\":\"de Verify your {{account_name}} account\",\"content\":\"de Hi {{name}}, Please verify your {{account_name}} account by clicking the following link: {{{verify_link}}}\",\"__v\":0}}"}],"_postman_id":"2baaac31-b5dd-49b2-9546-018ff5d875d1"},{"name":"Read template by template_id","id":"4eb7990a-f989-449a-9d02-e6be738acb50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/templates-srv/template/custom/:template_id","description":"<h1 id=\"description\">Description</h1>\n<p>To read template data by using the template_id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:templates_write\", \"cidaas:admin_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"path-param\">Path Param</h3>\n<p>it should pass the following <strong>template_id</strong></p>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate {\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","template","custom",":template_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"7c833590-d38a-430a-8719-236278810150","type":"string","value":"","key":"template_id"}]}},"response":[{"id":"8a8ab88b-6cc6-4749-80a6-008f25fa9b18","name":"Read template by Template ID","originalRequest":{"method":"GET","header":[{"key":"access_token","value":"{{access_token}}","warning":""}],"url":"{{baseurl}}/templates-srv/template/custom/26cea0e8-7562-4707-9a8d-d70f5b067951"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":""},{"key":"connection","value":"keep-alive","name":"connection","description":""},{"key":"content-length","value":"521","name":"content-length","description":""},{"key":"content-type","value":"application/json; charset=utf-8","name":"content-type","description":""},{"key":"date","value":"Sat, 28 Jul 2018 07:02:12 GMT","name":"date","description":""},{"key":"etag","value":"W/\"209-6u303jhXL/uWydP5KaQ7pBR65mM\"","name":"etag","description":""},{"key":"server","value":"nginx","name":"server","description":""}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"26cea0e8-7562-4707-9a8d-d70f5b067951\",\"updatedTime\":\"2018-07-28T06:34:27.574Z\",\"createdTime\":\"2018-07-28T06:34:27.574Z\",\"className\":\"de.cidaas.core.db.CustomTemplates\",\"templateOwner\":\"DEVELOPER\",\"templateKey\":\"CUSTOM\",\"templateType\":\"EMAIL\",\"usageType\":\"GENERAL\",\"locale\":\"de\",\"language\":\"de\",\"subject\":\"de Verify your {{account_name}} account\",\"content\":\"de Hi {{name}}, Please verify your {{account_name}} account by clicking the following link: {{{verify_link}}}\",\"__v\":0}}"}],"_postman_id":"4eb7990a-f989-449a-9d02-e6be738acb50"},{"name":"Update custom template","id":"be0f8cfe-5b78-4c26-abd6-a9fbde4cfd34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"content\": \"de Hi {{name}}, Please verify your {{account_name}} account by clicking the following link: {{{verify_link}}}\",\n  \"subject\": \"de Verify your {{account_name}} account\",\n  \"language\": \"de\",\n  \"locale\": \"de\",\n  \"usageType\": \"GENERAL\",\n  \"templateType\": \"EMAIL\",\n  \"templateKey\": \"CUSTOM\"\n}"},"url":"{{baseurl}}/templates-srv/template/custom","description":"<h1 id=\"description\">Description</h1>\n<p>To update custom template.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:templates_write\", \"cidaas:admin_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate {\n    _id: string;\n    id: string;\n    templateKey: string; // * \n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate {\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","template","custom"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"3fc53218-bb8c-4e83-9089-a2a4b1863d00","name":"Update","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"access_token","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n        \"_id\": \"f5f4b7b1-7830-4568-a37f-37fa5fcfd912\",\n        \"__v\": 0,\n        \"content\": \"de Hi {{name}}, Please verify your {{account_name}} account by clicking the following link: {{{verify_link}}}\",\n        \"subject\": \"de Verify your {{account_name}} account\",\n        \"language\": \"de\",\n        \"locale\": \"de\",\n        \"usageType\": \"GENERAL\",\n        \"templateType\": \"EMAIL\",\n        \"templateKey\": \"CUSTOM1\"\n}"},"url":"{{baseurl}}/templates-srv/template/custom"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":""},{"key":"connection","value":"keep-alive","name":"connection","description":""},{"key":"content-length","value":"522","name":"content-length","description":""},{"key":"content-type","value":"application/json; charset=utf-8","name":"content-type","description":""},{"key":"date","value":"Sat, 28 Jul 2018 07:05:58 GMT","name":"date","description":""},{"key":"etag","value":"W/\"20a-k69oM3LlQGKo8imOP7opDV6NzwU\"","name":"etag","description":""},{"key":"server","value":"nginx","name":"server","description":""}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"f5f4b7b1-7830-4568-a37f-37fa5fcfd912\",\"updatedTime\":\"2018-07-28T07:04:31.426Z\",\"createdTime\":\"2018-07-28T07:04:31.426Z\",\"className\":\"de.cidaas.core.db.CustomTemplates\",\"__v\":0,\"content\":\"de Hi {{name}}, Please verify your {{account_name}} account by clicking the following link: {{{verify_link}}}\",\"subject\":\"de Verify your {{account_name}} account\",\"language\":\"de\",\"locale\":\"de\",\"usageType\":\"GENERAL\",\"templateType\":\"EMAIL\",\"templateKey\":\"CUSTOM1\",\"templateOwner\":\"DEVELOPER\"}}"}],"_postman_id":"be0f8cfe-5b78-4c26-abd6-a9fbde4cfd34"},{"name":"Load custom template list","id":"ca228587-31ab-4fb5-887d-888cd248ae3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/templates-srv/template/custom/load/list","description":"<h1 id=\"description\">Description</h1>\n<p>To load the custom template list.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:templates_write\", \"cidaas:admin_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\ninterface ITemplateQueryEntity{\n    _id?: string;\n    templateKey?: string;\n    templateType?: string;\n    processingType?: string;\n    usageType?: string;\n    locale?: string;\n    templateOwner: string = TemplateOwner.CLIENT;\n    verificationType?: string;\n    language?: string;\n    acceptLanguage?: string;\n    group_id?: string;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate {\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["templates-srv","template","custom","load","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca228587-31ab-4fb5-887d-888cd248ae3d"},{"name":"Remove tempalte by template id","id":"1ff712d8-c99c-4529-b8b6-3daa3d16de69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/templates-srv/template/custom/:template_id/:type","description":"<h1 id=\"description\">Description</h1>\n<p>To remove particular template by using template_id on the path param.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:templates_write\", \"cidaas:admin_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pas the <strong>template key and type</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\ninterface ICustomTemplate {\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{data:ture}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","template","custom",":template_id",":type"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"36c347ce-e6d9-4a5e-9052-55d687cef3ca","type":"string","value":"","key":"template_id"},{"id":"d35a5790-7705-4c07-a6dc-09e5c575c7af","type":"string","value":"","key":"type"}]}},"response":[{"id":"81da2e3c-ecfd-4b06-8915-c154a53d3c92","name":"Remove tempalte by template id","originalRequest":{"method":"DELETE","header":[{"key":"access_token","value":"{{access_token}}","warning":""}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/templates-srv/template/custom/80a6b47a-5584-4045-b572-633bd6c7fa9e"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":""},{"key":"connection","value":"keep-alive","name":"connection","description":""},{"key":"content-length","value":"41","name":"content-length","description":""},{"key":"content-type","value":"application/json; charset=utf-8","name":"content-type","description":""},{"key":"date","value":"Sat, 28 Jul 2018 07:18:48 GMT","name":"date","description":""},{"key":"etag","value":"W/\"29-oS3l/ciNgeB0vn3IAwUp9OUSHTo\"","name":"etag","description":""},{"key":"server","value":"nginx","name":"server","description":""}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":true}"}],"_postman_id":"1ff712d8-c99c-4529-b8b6-3daa3d16de69"},{"name":"Find template for usage","id":"8041a79e-b9f0-4af3-82f7-e0ed03fab5e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"templateKey\":\"TEMPLATE_KEY\",\n  \"templateType\":\"EMAIL\",\n  \"processingType\":\"LINK\",\n  \"usageType\":\"GENERAL\",\n  \"locale\":\"en\"\n}"},"url":"{{baseurl}}/templates-srv/template/custom/usage/find","description":"<h1 id=\"description\">Description</h1>\n<p>To find the template for usage.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:templates_write\", \"cidaas:templates_read\", \"cidaas_admin_read\", cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITemplateQueryEntity {\n    _id?: string;\n    templateKey?: string; // *\n    templateType?: string;\n    processingType?: string;\n    usageType?: string;\n    locale?: string;\n    templateOwner: string = TemplateOwner.CLIENT;\n    verificationType?: string;\n    language?: string;\n    acceptLanguage?: string;\n    group_id?: string;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate{\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","template","custom","usage","find"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"3f3c6b5e-55fc-4e33-8be5-bfe805e397e6","name":"Find template for usage","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","warning":""},{"key":"access_token","value":"{{access_token}}","warning":""}],"body":{"mode":"raw","raw":"{\n  \"templateKey\":\"INVITATION1\",\n  \"templateType\":\"EMAIL\",\n  \"acceptLanguage\":\"en-us\"\n}"},"url":"{{baseurl}}/templates-srv/template/custom/usage/find"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":""},{"key":"connection","value":"keep-alive","name":"connection","description":""},{"key":"content-length","value":"556","name":"content-length","description":""},{"key":"content-type","value":"application/json; charset=utf-8","name":"content-type","description":""},{"key":"date","value":"Sat, 28 Jul 2018 07:44:06 GMT","name":"date","description":""},{"key":"etag","value":"W/\"22c-A4kes7vU27Zc1buNhYnS6cTZ2pA\"","name":"etag","description":""},{"key":"server","value":"nginx","name":"server","description":""}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"aa808c03-351b-4116-aa69-82cf12a53d62\",\"updatedTime\":\"2018-07-27T09:13:32.609Z\",\"createdTime\":\"2018-07-26T08:29:34.977Z\",\"className\":\"de.cidaas.core.db.CustomTemplates\",\"templateOwner\":\"DEVELOPER\",\"content\":\"hi {{name}}, please verify your {{account_name}} account by clicking the following link {{verify_link}}.\",\"subject\":\"update Invitation to your {{account_name}} account\",\"locale\":\"en\",\"usageType\":\"GENERAL\",\"processingType\":\"LINK\",\"templateType\":\"EMAIL\",\"templateKey\":\"INVITATION1\",\"language\":\"en\",\"__v\":0}}"}],"_postman_id":"8041a79e-b9f0-4af3-82f7-e0ed03fab5e6"}],"id":"cdddcc05-bc6d-451a-b9bb-a3e8928c3619","_postman_id":"cdddcc05-bc6d-451a-b9bb-a3e8928c3619","description":""},{"name":"System","item":[{"name":"Get available template keys","id":"2daf7328-cce8-45f5-b196-9fdbf1b476fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/templates-srv/master/settings","description":"<h1 id=\"description\">Description</h1>\n<p>To get the available template keys.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:templates_write\",\"\"cidaas:templates_read\",\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITemplateSettings {\n    templateKey: string;\n    templateTypes: ITemplateType[];\n}\n\ninterface ITemplateType {\n    templateType: string;\n    processingTypes: IProcessingType[];\n}\n\ninterface IProcessingType {\n    processingType: string;\n    verificationTypes: IVerificationType[];\n}\n\ninterface IVerificationType {\n    verificationType: string;\n    usageTypes: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["templates-srv","master","settings"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2daf7328-cce8-45f5-b196-9fdbf1b476fb"},{"name":"Get system locales","id":"ef664474-6ac6-4b05-91c4-9008cee92e34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/templates-srv/master/locales","description":"<h1 id=\"description\">Description</h1>\n<p>To get system locales data.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [cidaas:templates_read\",\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>ILocaleEntity {\n    LocaleString: string;\n    Country: string;\n    DisplayCountry: string;\n    DisplayLanguage: string;\n    DisplayName: string;\n    DisplayVariant: string;\n    ISO3Country: string;\n    ISO3Language: string;\n    Language: string;\n    Variant: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["templates-srv","master","locales"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef664474-6ac6-4b05-91c4-9008cee92e34"},{"name":"Find Template","id":"65979b7f-700d-4ced-b72d-c9a8d35f4916","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"}],"body":{"mode":"raw","raw":"{\n        \"templateKey\": \"RESET_PASSWORD\",\n        \"processingType\": \"CODE\",\n        \"templateType\": \"EMAIL\",\n        \"usageType\": \"GENERAL\",\n        \"group_id\": \"customsmtpgrou\",\n        \"templateOwner\": \"CLIENT\"\n      }"},"url":"{{baseurl}}/templates-srv/template/find","description":"<h1 id=\"description\">Description</h1>\n<p>To find the system templates usage.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [cidaas:templates_read\",\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITemplateQueryEntity {\n    _id?: string;\n    templateKey?: string; // *\n    templateType?: string;\n    processingType?: string;\n    usageType?: string;\n    locale?: string;\n    templateOwner: string = TemplateOwner.CLIENT;\n    verificationType?: string;\n    language?: string;\n    acceptLanguage?: string;\n    group_id?: string;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate{\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","template","find"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"65979b7f-700d-4ced-b72d-c9a8d35f4916"},{"name":"Find Template for usage","id":"7999a243-3b5e-498a-87bd-c5dbb7efeb33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n        \"templateKey\": \"RESET_PASSWORD\",\n        \"processingType\": \"CODE\",\n        \"templateType\": \"EMAIL\",\n        \"usageType\": \"GENERAL\",\n        \"group_id\": \"customsmtpgrou\",\n        \"templateOwner\": \"CLIENT\"\n      }"},"url":"{{baseurl}}/templates-srv/template/usage/find","description":"<h1 id=\"description\">Description</h1>\n<p>To find the system templates usage.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [cidaas:templates_read\",\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITemplateQueryEntity {\n    _id?: string;\n    templateKey?: string; // *\n    templateType?: string;\n    processingType?: string;\n    usageType?: string;\n    locale?: string;\n    templateOwner: string = TemplateOwner.CLIENT;\n    verificationType?: string;\n    language?: string;\n    acceptLanguage?: string;\n    group_id?: string;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate{\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","template","usage","find"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7999a243-3b5e-498a-87bd-c5dbb7efeb33"},{"name":"Update Template","id":"46863740-7f5e-43e9-b4d7-d053c93d2d41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"templateKey\":\"VERIFY_ACCOUNT\",\n  \"templateType\":\"EMAIL\",\n  \"processingType\":\"LINK\",\n  \"usageType\":\"GENERAL\",\n  \"locale\":\"en\",\n  \"subject\":\"Verify your {{account_name}} account\",\n  \"content\": \"hi {{name}}, please verify your {{account_name}} account by clicking the following link {{verify_link}}.\"\n  \n}"},"url":"{{baseurl}}/templates-srv/template","description":"<h1 id=\"description\">Description</h1>\n<p>To update system templates.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:templates_write\",\"cidaas:admin_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate{\n    _id: string;\n    id: string;\n    templateKey: string; // *\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate {\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","template"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"46863740-7f5e-43e9-b4d7-d053c93d2d41"}],"id":"8ad89fd0-b1ba-4592-89bd-e081efab651d","_postman_id":"8ad89fd0-b1ba-4592-89bd-e081efab651d","description":""},{"name":"Groups","item":[{"name":"Get Group List Lite","id":"22b64d92-4605-433d-b24b-b22d5ecc608d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/templates-srv/groups/list","description":"<h1 id=\"description\">Description</h1>\n<p>To list all template groups in the system (lite data)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:templates_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\",\"APP_READ\",\"APP_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">none\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ITemplateGroupLite[];\n}\n\ninterface ITemplateGroupLite {\n    id: string;\n    _id: string;\n    group_id: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["templates-srv","groups","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"015dc482-b398-4002-bfd3-a6e86546d7d4","name":"Get Group List Lite","originalRequest":{"method":"GET","header":[],"url":"{{baseurl}}/templates-srv/groups/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Nov 2019 06:42:04 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"260"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1573108924787-a8a8236e-48e8-4add-b517-45544f03e4ce"},{"key":"ETag","value":"W/\"104-cmMwe6P9kxfAvMrWZOCAIb/wEcw\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"202d6fc1-ebde-4419-874d-98a184f71738\",\n            \"group_id\": \"default\",\n            \"id\": \"202d6fc1-ebde-4419-874d-98a184f71738\"\n        },\n        {\n            \"_id\": \"0e79440e-c681-4468-bfe4-2841ef342be3\",\n            \"group_id\": \"sitea\",\n            \"id\": \"0e79440e-c681-4468-bfe4-2841ef342be3\"\n        }\n    ]\n}"}],"_postman_id":"22b64d92-4605-433d-b24b-b22d5ecc608d"},{"name":"Get Group Details By Id","id":"2bbadd2b-cf61-446b-a7e7-0848fa36f92c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/templates-srv/groups/:groupid","description":"<h1 id=\"description\">Description</h1>\n<p>To get particular Group information by id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:templates_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h3 id=\"path-param\">Path Param</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>group_id:string\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">none\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ITemplateGroup;\n}\n\ninterface ITemplateGroup {\n    id: string;\n    _id: string;\n    group_id: string;\n    description: string;\n    sender_config: ISenderConfig;\n}\nexport interface ISenderConfig {\n    _id: string;\n    id: string;\n    from_name: string;\n    from_email: string;\n    sender_provider: string;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["templates-srv","groups",":groupid"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"4b696ab6-57cd-4e05-9919-f8e9cf5bb611","type":"string","value":"sitea","key":"groupid"}]}},"response":[{"id":"9389e1bc-1410-486d-afde-cb32ebdf6184","name":"Get Group Details By Id","originalRequest":{"method":"GET","header":[],"url":"{{baseurl}}/templates-srv/groups/sitea"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Nov 2019 06:37:36 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"288"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1573108655519-fca62ee9-13f1-47ad-95e5-a1d50f19c444"},{"key":"ETag","value":"W/\"120-gCM75ZWttea/VTXpwRS3Rjezv+Y\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=299"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"className\": \"de.cidaas.management.db.TemplateGroup\",\n        \"_id\": \"0e79440e-c681-4468-bfe4-2841ef342be3\",\n        \"group_id\": \"sitea\",\n        \"createdTime\": \"2019-11-07T06:34:28.191Z\",\n        \"updatedTime\": \"2019-11-07T06:34:28.191Z\",\n        \"__v\": 0,\n        \"id\": \"0e79440e-c681-4468-bfe4-2841ef342be3\"\n    }\n}"}],"_postman_id":"2bbadd2b-cf61-446b-a7e7-0848fa36f92c"},{"name":"Create Group","id":"52b3113a-3a0e-4a5a-894c-aff43b08017e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\":\"SiteA\"\n}"},"url":"{{baseurl}}/templates-srv/groups","description":"<h1 id=\"description\">Description</h1>\n<p>To create template group</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:templates_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ITemplateGroup {\n    id: string;\n    _id: string;\n    group_id: string;\n    description: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ITemplateGroup;\n}\n\ninterface ITemplateGroup {\n    id: string;\n    _id: string;\n    group_id: string;\n    description: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["templates-srv","groups"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"75625dfe-ad05-44a6-8758-d2f2b89cc35a","name":"Create Group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\":\"SiteA\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseurl}}/templates-srv/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Nov 2019 06:34:28 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"288"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1573108468138-57342bf3-6c48-47cf-b2bd-a3862c9e0115"},{"key":"ETag","value":"W/\"120-gCM75ZWttea/VTXpwRS3Rjezv+Y\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"className\": \"de.cidaas.management.db.TemplateGroup\",\n        \"_id\": \"0e79440e-c681-4468-bfe4-2841ef342be3\",\n        \"group_id\": \"sitea\",\n        \"createdTime\": \"2019-11-07T06:34:28.191Z\",\n        \"updatedTime\": \"2019-11-07T06:34:28.191Z\",\n        \"__v\": 0,\n        \"id\": \"0e79440e-c681-4468-bfe4-2841ef342be3\"\n    }\n}"}],"_postman_id":"52b3113a-3a0e-4a5a-894c-aff43b08017e"},{"name":"Delete Group","id":"f0ea1b11-3a75-49e0-b009-09c6616e7676","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseurl}}/templates-srv/groups/:group_id","description":"<h1 id=\"description\">Description</h1>\n<p>To delete group by passing group_id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:templates_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass the <strong>group_id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No request entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{val:boolean}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>400 : BAD_REQUEST</p>\n","urlObject":{"path":["templates-srv","groups",":group_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"1905aeb3-fb3b-4fb7-a4b8-7c33ef5b10b0","type":"string","value":"sitea","key":"group_id"}]}},"response":[{"id":"6dfb1c09-0ef6-470d-99ba-9d5149f9ebd5","name":"Delete Group","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseurl}}/templates-srv/groups/sitea"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Nov 2019 06:43:44 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"53"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1573109024637-4148ff9e-8d4a-4c6a-bd4e-1823d866ce60"},{"key":"ETag","value":"W/\"35-CFWhtGMReXo8M105T7hF7RdzLtc\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"deleted\": true\n    }\n}"}],"_postman_id":"f0ea1b11-3a75-49e0-b009-09c6616e7676"},{"name":"Check Group Name Availability","id":"469a372d-8972-4fe0-b3b6-d0834dc96a0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseurl}}/templates-srv/groups/check/:group_id","description":"<h1 id=\"description\">Description</h1>\n<p>To check the group name availability by group_id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:templates_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h3 id=\"path-param\">Path Param</h3>\n<p>It should pass the <strong>group_id</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>group_id:string\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{val:boolean}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["templates-srv","groups","check",":group_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"54e6692b-1010-4e7a-b5b2-c58a021366a7","type":"string","value":"sitea","key":"group_id"}]}},"response":[{"id":"69396e99-5775-4ef9-b166-87578c064d43","name":"Check Group Name Availability","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseurl}}/templates-srv/groups/check/siteb"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Nov 2019 06:43:06 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"55"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1573108986711-9a7254c6-7c09-42b2-a958-d6d68991ae90"},{"key":"ETag","value":"W/\"37-fXnH3ZiQZKotcYQI9c0OJkZGwfU\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=299"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"available\": true\n    }\n}"}],"_postman_id":"469a372d-8972-4fe0-b3b6-d0834dc96a0d"}],"id":"8999d6ad-007d-4f0c-b17d-8418db7d5e0c","_postman_id":"8999d6ad-007d-4f0c-b17d-8418db7d5e0c","description":""},{"name":"SenderConfig","item":[{"name":"Add / Update Sender Config","id":"3dcc6bc0-0d07-4ed7-9b2f-710f24225688","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sender_config\":{\n\t\t\"from_name\":\"SiteA\",\n\t\t\"from_email\":\"sitea@noreply.com\",\n\t\t\"sender_provider\":\"system\"\n\t}\n}"},"url":"{{baseurl}}/templates-srv/groups/:group_id","description":"<h1 id=\"description\">Description</h1>\n<p>To create/update sender configuration.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:templates_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ITemplateGroup {\n    _id: string;\n    id: string;\n    group_id: string; // *\n    description: string;\n    sender_config: ISenderConfig; // *\n    \n    email_sender_config: IEmailSenderConfig;\n    sms_sender_config: ISMSSenderConfig;\n    ivr_sender_config: IIVRSenderConfig;\n    push_sender_config: IPushSenderConfig;\n    \n    // view\n    copy_from: string;\n\n}\n\ninterface ISenderConfig{\n    _id: string;\n    id: string;\n    from_name: string;\n    from_email: string;\n    sender_provider: string;\n\n}\n\ninterface IEmailSenderConfig {\n    _id: string;\n    id: string;\n    from_name: string;\n    from_email: string;\n    sender_names: string[];\n\n}\n\n\ninterface ISMSSenderConfig {\n    _id: string;\n    id: string;\n    from_name: string;\n    from_number: string;\n    sender_names: string[];\n\n}\n\ninterface IIVRSenderConfig {\n    _id: string;\n    id: string;\n    from_name: string;\n    from_number: string;\n    sender_names: string[];\n\n}\n\ninterface IPushSenderConfig {\n    _id: string;\n    id: string;\n    sender_names: string[];\n\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITemplateGroup {\n    _id: string;\n    id: string;\n    group_id: string; \n    description: string;\n    sender_config: ISenderConfig; \n\n    email_sender_config: IEmailSenderConfig;\n    sms_sender_config: ISMSSenderConfig;\n    ivr_sender_config: IIVRSenderConfig;\n    push_sender_config: IPushSenderConfig;\n    \n    // view\n    copy_from: string;\n\n}\n\ninterface ISenderConfig{\n    _id: string;\n    id: string;\n    from_name: string;\n    from_email: string;\n    sender_provider: string;\n\n}\n\ninterface IEmailSenderConfig {\n    _id: string;\n    id: string;\n    from_name: string;\n    from_email: string;\n    sender_names: string[];\n\n}\n\n\ninterface ISMSSenderConfig {\n    _id: string;\n    id: string;\n    from_name: string;\n    from_number: string;\n    sender_names: string[];\n\n}\n\ninterface IIVRSenderConfig {\n    _id: string;\n    id: string;\n    from_name: string;\n    from_number: string;\n    sender_names: string[];\n\n}\n\ninterface IPushSenderConfig {\n    _id: string;\n    id: string;\n    sender_names: string[];\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXCEPTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","groups",":group_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"default","key":"group_id"}]}},"response":[{"id":"4c263366-e364-44ed-88fd-104f28e3a304","name":"Add / Update Sender Config","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sender_config\":{\n\t\t\"from_name\":\"SiteA\",\n\t\t\"from_email\":\"sitea@noreply.com\",\n\t\t\"sender_provider\":\"system\"\n\t}\n}","options":{"raw":{"language":"json"}}},"url":"{{baseurl}}/templates-srv/groups/sitea"},"status":"Conflict","code":409,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Nov 2019 06:52:54 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"207"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1573109573373-ec860355-f659-4827-9549-0526e3cb1a0a"},{"key":"ETag","value":"W/\"cf-W273pWxqWT0iVexonP5DSIqUnog\""},{"key":"Keep-Alive","value":"timeout=5, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": false,\n    \"status\": 409,\n    \"error\": {\n        \"code\": 507,\n        \"moreInfo\": \"\",\n        \"type\": \"TemplatesException\",\n        \"status\": 409,\n        \"referenceNumber\": \"1573109573373-ec860355-f659-4827-9549-0526e3cb1a0a\",\n        \"error\": \"group_id not exists\"\n    }\n}"},{"id":"8d524914-91b0-468b-b674-269f31156925","name":"Create Group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_id\":\"SiteA\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseurl}}/templates-srv/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 07 Nov 2019 06:34:28 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"288"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1573108468138-57342bf3-6c48-47cf-b2bd-a3862c9e0115"},{"key":"ETag","value":"W/\"120-gCM75ZWttea/VTXpwRS3Rjezv+Y\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"className\": \"de.cidaas.management.db.TemplateGroup\",\n        \"_id\": \"0e79440e-c681-4468-bfe4-2841ef342be3\",\n        \"group_id\": \"sitea\",\n        \"createdTime\": \"2019-11-07T06:34:28.191Z\",\n        \"updatedTime\": \"2019-11-07T06:34:28.191Z\",\n        \"__v\": 0,\n        \"id\": \"0e79440e-c681-4468-bfe4-2841ef342be3\"\n    }\n}"}],"_postman_id":"3dcc6bc0-0d07-4ed7-9b2f-710f24225688"}],"id":"d0124ff6-0f6f-4411-be81-850dbb88634d","_postman_id":"d0124ff6-0f6f-4411-be81-850dbb88634d","description":""}],"id":"6ce70a8c-07d2-419d-aa14-8cc8dc05ae4b","_postman_id":"6ce70a8c-07d2-419d-aa14-8cc8dc05ae4b","description":""},{"name":"PasswordPolicy","item":[{"name":"Get all password policies","id":"884ecdc1-ee88-4c9a-8e8c-6fac6c1ed8e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/password-policy-srv/policy/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get all the password policies list.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:password_policy_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IPasswordPolicySetup{\n    _id: string;\n    id: string;\n    policy_name: string;\n    minimumLength: number;\n    maximumLength: number;\n    noOfSpecialChars: number;\n    noOfDigits: number;\n    lowerAndUpperCase: boolean;\n    validityDays: number;\n    notifyUserBefore: number;\n    preventAlreadyUsedPwd: boolean;\n    preventPersonalInformation: boolean;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["password-policy-srv","policy","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"884ecdc1-ee88-4c9a-8e8c-6fac6c1ed8e1"},{"name":"Get all password policies lite","id":"89840bc5-5692-442e-909d-f8fa127dcb10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/password-policy-srv/policy/list/lite","description":"<h1 id=\"description\">Description</h1>\n<p>To all password policy lite data.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\",\"cidaas:password_policy_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IPasswordPolicySetup{\n    _id: string;\n    id: string;\n    policy_name: string;\n    minimumLength: number;\n    maximumLength: number;\n    noOfSpecialChars: number;\n    noOfDigits: number;\n    lowerAndUpperCase: boolean;\n    validityDays: number;\n    notifyUserBefore: number;\n    preventAlreadyUsedPwd: boolean;\n    preventPersonalInformation: boolean;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["password-policy-srv","policy","list","lite"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"89840bc5-5692-442e-909d-f8fa127dcb10"},{"name":"Get all password policy by id","id":"a49e55c2-8d3c-44ce-9c6e-2e5bd7df2560","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/password-policy-srv/policy/:id","description":"<h1 id=\"description\">Description</h1>\n<p>To get password policy information by using id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\",\"cidaas:password_policy_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass the <strong>id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IPasswordPolicySetup {\n    _id: string;\n    id: string;\n    policy_name: string;\n    minimumLength: number;\n    maximumLength: number;\n    noOfSpecialChars: number;\n    noOfDigits: number;\n    lowerAndUpperCase: boolean;\n    validityDays: number;\n    notifyUserBefore: number;\n    preventAlreadyUsedPwd: boolean;\n    preventPersonalInformation: boolean;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["password-policy-srv","policy",":id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"a4257715-be70-416a-91db-26d11b8e1646","type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"a49e55c2-8d3c-44ce-9c6e-2e5bd7df2560"},{"name":"Create new password policy","id":"71ee8b91-c57f-4565-b6df-acd58ff21f55","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"_id\": \"d3a7eeb9-9166-49b7-b362-060765ba3953\",\n  \"minimumLength\":5,\n  \"maximumLength\":10,\n  \"loginGroup\":\"default\"\n}"},"url":"{{baseurl}}/password-policy-srv/policy","description":"<h1 id=\"description\">Description</h1>\n<p>To create new password policy.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\",\"cidaas:password_policy_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IPasswordPolicySetup{\n    _id: string;\n    id: string;\n    policy_name: string;\n    minimumLength: number;\n    maximumLength: number;\n    noOfSpecialChars: number;\n    noOfDigits: number;\n    lowerAndUpperCase: boolean;\n    validityDays: number;\n    notifyUserBefore: number;\n    preventAlreadyUsedPwd: boolean;\n    preventPersonalInformation: boolean;\n\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IPasswordPolicySetup{\n    _id: string;\n    id: string;\n    policy_name: string;\n    minimumLength: number;\n    maximumLength: number;\n    noOfSpecialChars: number;\n    noOfDigits: number;\n    lowerAndUpperCase: boolean;\n    validityDays: number;\n    notifyUserBefore: number;\n    preventAlreadyUsedPwd: boolean;\n    preventPersonalInformation: boolean;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["password-policy-srv","policy"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"71ee8b91-c57f-4565-b6df-acd58ff21f55"},{"name":"Generate strong Password","id":"3615bfe8-8415-4577-a319-6d20fe6c1b14","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"policy_id\": \"fe1a33f9-5b37-4955-8218-d190133fabd4\"\n}"},"url":"{{baseurl}}/password-policy-srv/password/generate","description":"<h1 id=\"description\">Description</h1>\n<p>To generate sttrong password.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Scopes are not required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Groups and roles are not required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>class GeneratePassword {\n    policy_id: string = \"\"; // *\n    client_id: string = \"\"; // *\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["password-policy-srv","password","generate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3615bfe8-8415-4577-a319-6d20fe6c1b14"},{"name":"Get password policy by loginGroup","id":"ef4e3613-1c0d-4f38-a6fd-6c4ef25b6661","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/password-policy-srv/policy?id=default","description":"<h1 id=\"description\">Description</h1>\n<p>To get password policy by logingroup.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\",\"cidaas:password_policy_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass the <strong>id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IPasswordPolicySetup {\n    _id: string;\n    id: string;\n    policy_name: string;\n    minimumLength: number;\n    maximumLength: number;\n    noOfSpecialChars: number;\n    noOfDigits: number;\n    lowerAndUpperCase: boolean;\n    validityDays: number;\n    notifyUserBefore: number;\n    preventAlreadyUsedPwd: boolean;\n    preventPersonalInformation: boolean;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["password-policy-srv","policy"],"host":["{{baseurl}}"],"query":[{"key":"id","value":"default"}],"variable":[]}},"response":[],"_postman_id":"ef4e3613-1c0d-4f38-a6fd-6c4ef25b6661"},{"name":"Delete password policy by login group","id":"55309833-4234-4d40-ba57-3886f7daf54a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"minimumLength\":5,\n  \"maximumLength\":10,\n  \"loginGroup\":\"default\"\n}"},"url":"{{baseurl}}/password-policy-srv/policy/:id","description":"<h1 id=\"description\">Description</h1>\n<p>To delete passsword policy by login group.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_delete\",\"cidaas:password_policy_delete\", \"cidaas:delete\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass the <strong>id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{deleted:true}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["password-policy-srv","policy",":id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"b9251910-a1b3-4891-8ae1-9885df945a5f","type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"55309833-4234-4d40-ba57-3886f7daf54a"}],"id":"905978a2-ac2c-46b7-8576-1e3c889a5b09","_postman_id":"905978a2-ac2c-46b7-8576-1e3c889a5b09","description":""},{"name":"Webhook","item":[{"name":"Register new webhook trigger","id":"3de61192-9af6-41c7-9b9e-76ee1382764b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"_id\": \"da561151-f4c2-4d02-8844-3c3f3510cf93\",\n  \"events\":[\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\"ACCOUNT_DELETED\"],\n  \"url\":\"http://localmanagement.cidaas.de\",\n  \"auth_type\":\"apikey\",\n  \"apikeyDetails\":{\n    \"apikey\":\"test\"\n  }\n}"},"url":"{{baseurl}}/webhooks-srv/webhook","description":"<h1 id=\"description\">Description</h1>\n<p>To create new webhook.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:webhook_write\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IWebhookSetup {\n    _id: string;\n    id: string;\n    events: string[];\n    url: string; // *\n    auth_type: string; // *\n    totpDetails: ITOTPSetup;\n    apikeyDetails: IAPIKeySetup; // *\n    cidaasAuthDetails: ICidaasAuthSetup;\n    disable: boolean;\n}\n\ninterface ITOTPSetup {\n    _id: string;\n    id: string;\n    totpkey: string; // *\n    totp_placement: string;\n    totp_placeholder: string;\n}\n\ninterface IAPIKeySetup{\n    _id: string;\n    id: string;\n    apikey: string;  // *\n    apikey_placement: string;\n    apikey_placeholder: string;\n}\n\ninterface ICidaasAuthSetup {\n    _id: string;\n    id: string;\n    client_id: string; // *\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IWebhookSetup {\n    _id: string;\n    id: string;\n    events: string[];\n    url: string; \n    auth_type: string;\n    totpDetails: ITOTPSetup;\n    apikeyDetails: IAPIKeySetup; \n    cidaasAuthDetails: ICidaasAuthSetup;\n    disable: boolean;\n}\n\ninterface ITOTPSetup{\n    _id: string;\n    id: string;\n    totpkey: string;\n    totp_placement: string;\n    totp_placeholder: string;\n}\n\ninterface IAPIKeySetup{\n    _id: string;\n    id: string;\n    apikey: string;\n    apikey_placement: string;\n    apikey_placeholder: string;\n}\n\ninterface ICidaasAuthSetup {\n    _id: string;\n    id: string;\n    client_id: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ER</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["webhooks-srv","webhook"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3de61192-9af6-41c7-9b9e-76ee1382764b"},{"name":"List all webhooks","id":"2bcc50be-6a20-4a58-9ae2-8a187a66c76f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/webhooks-srv/webhook/list","description":"<h1 id=\"description\">Description</h1>\n<p>To list all the the webhooks.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:webhook_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IWebhookSetup {\n    id: string;\n    events: string[];\n    url: string;\n    auth_type: string;\n    totpDetails: ITOTPSetup;\n    apikeyDetails: IAPIKeySetup;\n    cidaasAuthDetails: ICidaasAuthSetup;\n    disable: boolean;\n}\n\ninterface ITOTPSetup{\n    _id: string;\n    id: string;\n    totpkey: string;\n    totp_placement: string;\n    totp_placeholder: string;\n}\n\ninterface IAPIKeySetup {\n    _id: string;\n    id: string;\n    apikey: string;\n    apikey_placement: string;\n    apikey_placeholder: string;\n}\n\ninterface ICidaasAuthSetup {\n    _id: string;\n    id: string;\n    client_id: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["webhooks-srv","webhook","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2bcc50be-6a20-4a58-9ae2-8a187a66c76f"},{"name":"Get webhook by id","id":"e0653a33-7b6c-4094-8c35-6a6b4fcc494d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/webhooks-srv/webhook?id=a7271d27-354c-4724-955e-cee6d999bbd0","description":"<h1 id=\"description\">Description</h1>\n<p>To get specific webhook by id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:webhook_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass ** id **</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> interface IWebhookSetup{\n    _id: string;\n    id: string;\n    events: string[];\n    url: string;\n    auth_type: string;\n    totpDetails: ITOTPSetup;\n    apikeyDetails: IAPIKeySetup;\n    cidaasAuthDetails: ICidaasAuthSetup;\n    disable: boolean;\n}\n\ninterface ITOTPSetup{\n    _id: string;\n    id: string;\n    totpkey: string;\n    totp_placement: string;\n    totp_placeholder: string;\n}\n\ninterface IAPIKeySetup {\n    _id: string;\n    id: string;\n    apikey: string;\n    apikey_placement: string;\n    apikey_placeholder: string;\n}\n\ninterface ICidaasAuthSetup {\n    _id: string;\n    id: string;\n    client_id: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["webhooks-srv","webhook"],"host":["{{baseurl}}"],"query":[{"key":"id","value":"a7271d27-354c-4724-955e-cee6d999bbd0"}],"variable":[]}},"response":[],"_postman_id":"e0653a33-7b6c-4094-8c35-6a6b4fcc494d"},{"name":"Get webhook by allowed events","id":"51aa667a-2d5c-420c-9bc4-99595fdc27dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/webhooks-srv/webhook/event?event=ACCOUNT_DELETED","description":"<h1 id=\"description\">Description</h1>\n<p>To get webhook based an by passing allowed events.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:webhook_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass ** event**</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IWebhookSetup {\n    _id: string;\n    id: string;\n    events: string[];\n    url: string;\n    auth_type: string;\n    totpDetails: ITOTPSetup;\n    apikeyDetails: IAPIKeySetup;\n    cidaasAuthDetails: ICidaasAuthSetup;\n    disable: boolean;\n}\n\ninterface ITOTPSetup  {\n    _id: string;\n    id: string;\n    totpkey: string;\n    totp_placement: string;\n    totp_placeholder: string;\n}\n\ninterface IAPIKeySetup {\n    _id: string;\n    id: string;\n    apikey: string;\n    apikey_placement: string;\n    apikey_placeholder: string;\n}\n\ninterface ICidaasAuthSetup{\n    _id: string;\n    id: string;\n    client_id: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ER</p>\n","urlObject":{"path":["webhooks-srv","webhook","event"],"host":["{{baseurl}}"],"query":[{"key":"event","value":"ACCOUNT_DELETED"}],"variable":[]}},"response":[],"_postman_id":"51aa667a-2d5c-420c-9bc4-99595fdc27dd"},{"name":"Unregister webhook trigger","id":"b23d9466-eb75-476e-918a-b24a17079175","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/webhooks-srv/webhook/560e174f-f822-415e-98e6-3b8bca6e4b19","description":"<h1 id=\"description\">Description</h1>\n<p>To unregister webhook by using this api call.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_delete\",\"cidaas:webhook_delete\",\"cidaas:delete\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass <strong>id</strong> in the url</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{data:true}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ER</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["webhooks-srv","webhook","560e174f-f822-415e-98e6-3b8bca6e4b19"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b23d9466-eb75-476e-918a-b24a17079175"}],"id":"95cd2fdf-aa07-4e58-8d71-92636eed4866","_postman_id":"95cd2fdf-aa07-4e58-8d71-92636eed4866","description":""},{"name":"CaptchaSettings","item":[{"name":"Get configured captcha settings [deprecated]","id":"e71aa7d7-8c6c-4e04-892f-06be26443dee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/captcha-srv/captcha","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured captcha settings.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:captcha_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass <strong>captcha_type</strong> and <strong>usage_type</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICaptchaSetup {\n    _id: string;\n    id: string;\n    captcha_name: string;\n    captcha_type: string;\n    disable: boolean;\n    client_id: string;\n    client_secret: string;\n    enabled_for: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["captcha-srv","captcha"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e71aa7d7-8c6c-4e04-892f-06be26443dee"},{"name":"Create New Captcha","id":"5a5518ee-7e8e-4585-8891-096500b5e2ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\":\"202b46d4-dc8c-4379-bef3-ff5e07047738\",\n  \"captcha_type\":\"GOOGLE\",\n  \"client_id\":\"xxxx\",\n  \"client_secret\":\"sadfasdf\"\n}"},"url":"{{baseurl}}/captcha-srv/captcha","description":"<h1 id=\"description\">Description</h1>\n<p>To create new captcha.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\",\"cidaas:captcha_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICaptchaSetup{\n    _id: string;\n    id: string;\n    captcha_name: string;\n    captcha_type: string; // *\n    disable: boolean;\n    client_id: string; // *\n    client_secret: string; // *\n    enabled_for: string[];\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICaptchaSetup{\n    _id: string;\n    id: string;\n    captcha_name: string;\n    captcha_type: string;\n    disable: boolean;\n    client_id: string;\n    client_secret: string;\n    enabled_for: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>: CONFLICT\n</code></pre>","urlObject":{"path":["captcha-srv","captcha"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a5518ee-7e8e-4585-8891-096500b5e2ff"},{"name":"Update Captcha","id":"f553c08b-2647-4de0-9955-cc215519e279","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"id\":\"202b46d4-dc8c-4379-bef3-ff5e07047738\",\n  \"captcha_type\":\"GOOGLE\",\n  \"client_id\":\"xxxx\",\n  \"client_secret\":\"sadfasdf\"\n}"},"url":"{{baseurl}}/captcha-srv/captcha/:id","description":"<h1 id=\"description\">Description</h1>\n<p>To update existing captch.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\",\"cidaas:captcha_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass <strong>id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICaptchaSetup {\n    _id: string;\n    id: string;\n    captcha_name: string;\n    captcha_type: string; // *\n    disable: boolean;\n    client_id: string; // *\n    client_secret: string; // *\n    enabled_for: string[];\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICaptchaSetup {\n    _id: string;\n    id: string;\n    captcha_name: string;\n    captcha_type: string;\n    disable: boolean;\n    client_id: string;\n    client_secret: string;\n    enabled_for: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>: CONFLICT\n</code></pre>","urlObject":{"path":["captcha-srv","captcha",":id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"94142258-e3fc-4b0c-a219-09031c5669ce","type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"f553c08b-2647-4de0-9955-cc215519e279"},{"name":"Get Captcha List Lite","id":"62cf41cf-0547-4406-942a-03717e1aa6f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/captcha-srv/captcha/list/lite","description":"<h1 id=\"description\">Description</h1>\n<p>To get captcha list lite data.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:captcha_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICaptchaSetup {\n    _id: string;\n    id: string;\n    captcha_name: string;\n    captcha_type: string;\n    disable: boolean;\n    client_id: string;\n    client_secret: string;\n    enabled_for: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["captcha-srv","captcha","list","lite"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"62cf41cf-0547-4406-942a-03717e1aa6f7"},{"name":"Get Captcha By Id","id":"20315395-5727-4659-ade9-7ecc6931225c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/captcha-srv/captcha/:id","description":"<h1 id=\"description\">Description</h1>\n<p>To get specific captcha details by id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:captcha_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass <strong>id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICaptchaSetup {\n    _id: string;\n    id: string;\n    captcha_name: string;\n    captcha_type: string;\n    disable: boolean;\n    client_id: string;\n    client_secret: string;\n    enabled_for: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["captcha-srv","captcha",":id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"01347e22-2435-45ef-80e0-dc2c0e6f05c1","type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"20315395-5727-4659-ade9-7ecc6931225c"},{"name":"Remove Captcha settings","id":"d1b55b1a-c2b9-4ee8-b99c-be8b936b71e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/captcha-srv/captcha/byid/:id","description":"<h1 id=\"description\">Description</h1>\n<p>To delete specific captcha settings by id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_delete\",\"cidaas:captcha_delete\",\"cidaas:delete\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass <strong>id</strong> in the url</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{data:true}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["captcha-srv","captcha","byid",":id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"3c0a719c-6bd6-4d31-9fdd-e222aa80fc5d","type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"d1b55b1a-c2b9-4ee8-b99c-be8b936b71e7"}],"id":"46e33442-c0c0-415f-b2f0-2b88b4fa7ed1","_postman_id":"46e33442-c0c0-415f-b2f0-2b88b4fa7ed1","description":""},{"name":"OptIn Remainder","item":[{"name":"Get Opt-In remainder setup","id":"e19209e5-a6b6-49e7-b1ea-17c7897a17f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/opt-in-setup-srv/setup","description":"<h1 id=\"description\">Description</h1>\n<p>To get Opt-in remainder setup details</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:cidaas_optin_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IOptInSetup{\n    _id: string;\n    id: string;\n    enabled: boolean;\n    action_type: string;\n    action_order: number;\n    action_timeout: number;\n    templateKey: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["opt-in-setup-srv","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"b06eafdd-adb9-4d2c-8df4-0b6313ce81b1","name":"http://localmanagement.cidaas.de/opt-in-setup-srv/setup/","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/opt-in-setup-srv/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"327","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 15 Feb 2018 09:06:32 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"147-JCd6zbTZVr6UIK0s5sncMR/kx+w\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"error\":null,\"status\":200,\"data\":{\"_id\":\"f200c2f8-43ea-4fb9-a3af-b9f1a8989279\",\"className\":\"de.cidaas.core.db.OptInSetup\",\"optInAction\":{\"className\":\"de.cidaas.core.db.OptInActionSetup\",\"_id\":\"055ed0c7-937f-4688-9af2-e27f56667343\",\"afterHours\":60,\"action\":\"PURGE\"},\"numberOfReminders\":2,\"__v\":0,\"enabled\":true}}"}],"_postman_id":"e19209e5-a6b6-49e7-b1ea-17c7897a17f3"},{"name":"Create opt-in remainder","id":"b54f1d12-f4eb-4262-9aa3-14f40a1b098b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"enabled\":true,\n  \"action_type\":\"PURGE\",\n  \"action_timeout\":6000\n}"},"url":"{{baseurl}}/opt-in-setup-srv/setup","description":"<h1 id=\"description\">Description</h1>\n<p>To create opt-in-remainder.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:cidaas_optin_write\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IOptInSetup{\n    _id: string;\n    id: string;\n    enabled: boolean;\n    action_type: string; // *\n    action_order: number;\n    action_timeout: number; // *\n    templateKey: string; // *\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IOptInSetup{\n    _id: string;\n    id: string;\n    enabled: boolean;\n    action_type: string;\n    action_order: number;\n    action_timeout: number;\n    templateKey: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["opt-in-setup-srv","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"a226cc1e-fb0d-42c3-a700-defdd9c61e96","name":"http://localmanagement.cidaas.de/opt-in-setup-srv/setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"optInSetup\":{\n\t\t\"enabled\":true,\n\t\t\"numberOfReminders\":2,\n\t\t\"optInAction\":{\n\t\t\t\"action\":\"PURGE\",\n\t\t\t\"afterHours\":60\n\t\t}\n\t},\n\t\"templates\":[{\n\t\t\"templateKey\":\"OPT_IN_REMINDER_1\",\n\t\t\"templateType\":\"EMAIL\",\n\t\t\"processingType\":\"LINK\",\n\t\t\"locale\":\"en_US\",\n\t\t\"language\":\"en\",\n\t\t\"subject\":\"hi {{name}}\",\n\t\t\"content\":\"hi {{name}}\"\n\t},{\n\t\t\"templateKey\":\"OPT_IN_REMINDER_2\",\n\t\t\"templateType\":\"EMAIL\",\n\t\t\"processingType\":\"LINK\",\n\t\t\"locale\":\"en_US\",\n\t\t\"language\":\"en\",\n\t\t\"subject\":\"hi {{name}}\",\n\t\t\"content\":\"hi {{name}}\"\n\t}]\n}"},"url":"http://localmanagement.cidaas.de/opt-in-setup-srv/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"327","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 15 Feb 2018 09:06:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"147-JCd6zbTZVr6UIK0s5sncMR/kx+w\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"error\":null,\"status\":200,\"data\":{\"_id\":\"f200c2f8-43ea-4fb9-a3af-b9f1a8989279\",\"className\":\"de.cidaas.core.db.OptInSetup\",\"optInAction\":{\"className\":\"de.cidaas.core.db.OptInActionSetup\",\"_id\":\"055ed0c7-937f-4688-9af2-e27f56667343\",\"afterHours\":60,\"action\":\"PURGE\"},\"numberOfReminders\":2,\"__v\":0,\"enabled\":true}}"}],"_postman_id":"b54f1d12-f4eb-4262-9aa3-14f40a1b098b"},{"name":"Create opt_in remainder template","id":"b69bd35a-f9c3-457c-bf23-185c8ec2999e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"templateKey\":\"OPTIN_REMINDER_1\",\n  \"templateType\":\"EMAIL\",\n  \"processingType\":\"LINK\",\n  \"usageType\":\"GENERAL\",\n  \"locale\":\"en\",\n  \"subject\":\"Verify your {{account_name}} account\",\n  \"content\": \"hi {{name}}, please verify your {{account_name}} account by clicking the following link {{verify_link}}.\"\n  \n}"},"url":"{{baseurl}}/templates-srv/template","description":"<h1 id=\"description\">Description</h1>\n<p>To create opt-in remainder template to notify users.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:templates_write\",\"cidaas:admin_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate {\n    _id: string;\n    id: string;\n    templateKey: string; // *\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate {\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","template"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b69bd35a-f9c3-457c-bf23-185c8ec2999e"},{"name":"Find opt_in remainder template","id":"15537e67-42de-4a03-949c-49e61e74d499","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"templateKey\":\"OPTIN_REMINDER_1\",\n  \"templateType\":\"EMAIL\",\n  \"processingType\":\"LINK\",\n  \"usageType\":\"GENERAL\",\n  \"locale\":\"en\"\n  \n}"},"url":"{{baseurl}}/templates-srv/template/find","description":"<h1 id=\"description\">Description</h1>\n<p>To find opt_in remainder template by using the templateKey.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [cidaas:templates_read\",\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>class TemplateQueryEntity {\n    _id?: string;\n    templateKey?: string;  // *\n    templateType?: string;\n    processingType?: string;\n    usageType?: string;\n    locale?: string;\n    templateOwner: string = TemplateOwner.CLIENT;\n    verificationType?: string;\n    language?: string;\n    acceptLanguage?: string;\n    group_id?: string;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ICustomTemplate {\n    _id: string;\n    id: string;\n    templateKey: string;\n    templateType: string;\n    processingType: string; // code/link\n    usageType: string; // AccountConfirmation/PasswordLess/MFA\n    verificationType: string; // EMAIL/SMS/IVR/PUSH/FACE/VOICE/PATTERN/TOUCHID\n    locale: string; // en-US/de-DE\n    language: string; // en/de\n    subject: string;\n    content: string;\n    templateOwner: string; // ADMIN/CLIENT/DEVELOPER\n\n    last_seeded_by: string;\n\n    group_id: string;\n    createdTime: Date;\n    updatedTime: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["templates-srv","template","find"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"15537e67-42de-4a03-949c-49e61e74d499"}],"id":"e4e40e7d-b291-49f4-9107-4954a5bf598c","_postman_id":"e4e40e7d-b291-49f4-9107-4954a5bf598c","description":""},{"name":"ConsentManagement","item":[{"name":"Classic","item":[{"name":"Setup Group","item":[{"name":"1. List of Consents","id":"3447fe57-e338-47f5-a209-a2b4b894e50a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/consent-management-srv/tenant/group/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get List consents details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITenantConsentGroup{\n    _id: string;\n    id: string;\n    name: string;\n    title: string;\n    description: string;\n    rule_name: string;\n    enabled: boolean;\n    type: string;\n    userAgreeText: string;\n\n    // view only\n    versions: ITenantConsentManagement[];\n}\n\ninterface ITenantConsentManagement{\n    _id: string;\n    id: string;\n    url: string;\n    content: string;\n    version: number;\n    consent_name: string;\n    matcher: any;\n    locale: string;\n    language: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["consent-management-srv","tenant","group","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"45689d61-2a38-4789-91ff-5fefc469e3db","name":"1. List of Consents","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/tenant/group/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"795","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 12:11:30 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"31b-yfccNNdOsMbnfOWvTEgn1TgcW/U\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"undefined","key":"cidaas_sid"},{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"45563cf8-a769-4cbe-83d3-269be88c5d65\",\"updatedTime\":\"2018-05-10T12:10:30.695Z\",\"createdTime\":\"2018-05-10T11:30:12.689Z\",\"className\":\"de.cidaas.core.db.TenantConsentGroup\",\"rule_name\":\"DENY\",\"name\":\"default\",\"__v\":0,\"type\":\"LOGIN\",\"enabled\":true},{\"_id\":\"304e6260-73b4-4b7b-a012-017d6c0c9c21\",\"updatedTime\":\"2018-05-10T11:30:14.526Z\",\"createdTime\":\"2018-05-10T11:30:14.526Z\",\"className\":\"de.cidaas.core.db.TenantConsentGroup\",\"rule_name\":\"DENY\",\"name\":\"test\",\"__v\":0,\"type\":\"LOGIN\",\"enabled\":true},{\"_id\":\"bfa986aa-f7ea-4f8d-8298-a60e66decb73\",\"updatedTime\":\"2018-05-10T11:33:18.510Z\",\"createdTime\":\"2018-05-10T11:32:47.374Z\",\"className\":\"de.cidaas.core.db.TenantConsentGroup\",\"rule_name\":\"DENY\",\"name\":\"test2\",\"__v\":0,\"type\":\"LOGIN\",\"enabled\":true}]}"}],"_postman_id":"3447fe57-e338-47f5-a209-a2b4b894e50a"},{"name":"3. Create Consent","id":"70480ecb-57a4-4fc8-9979-5a2009321b6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"cardemo\",\n\t\"type\":\"ACTION\"\n}"},"url":"{{baseurl}}/consent-management-srv/tenant/group","description":"<h1 id=\"description\">Description</h1>\n<p>To create a new consent.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITenantConsentGroup{\n    _id: string;\n    id: string; \n    name: string; // *\n    title: string;\n    description: string;\n    rule_name: string;\n    enabled: boolean;\n    type: string; // *\n    userAgreeText: string;\n\n    // view only\n    versions: ITenantConsentManagement[];\n}\n\ninterface ITenantConsentManagement{\n    _id: string;\n    id: string;\n    url: string;\n    content: string;\n    version: number;\n    consent_name: string;\n    matcher: any;\n    locale: string;\n    language: string;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITenantConsentGroup{\n    _id: string;\n    id: string;\n    name: string;\n    title: string;\n    description: string;\n    rule_name: string;\n    enabled: boolean;\n    type: string;\n    userAgreeText: string;\n\n    // view only\n    versions: ITenantConsentManagement[];\n}\n\ninterface ITenantConsentManagement{\n    _id: string;\n    id: string;\n    url: string;\n    content: string;\n    version: number;\n    consent_name: string;\n    matcher: any;\n    locale: string;\n    language: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","tenant","group"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1cb78960-1f9c-4711-b0fe-4329d5b4e1b1","name":"3. Create Consent","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"test2\",\n\t\"type\":\"LOGIN\",\n\t\"id\":\"bfa986aa-f7ea-4f8d-8298-a60e66decb73\"\n}"},"url":"http://localmanagement.cidaas.de/consent-management-srv/tenant/group"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"288","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 12:19:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"120-aRHFZUeJEhcoOEu/fbzZxslrKgU\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"undefined","key":"cidaas_sid"},{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"bfa986aa-f7ea-4f8d-8298-a60e66decb73\",\"updatedTime\":\"2018-05-10T12:18:55.591Z\",\"createdTime\":\"2018-05-10T11:32:47.374Z\",\"className\":\"de.cidaas.core.db.TenantConsentGroup\",\"rule_name\":\"DENY\",\"name\":\"test2\",\"__v\":0,\"type\":\"LOGIN\",\"enabled\":true}}"}],"_postman_id":"70480ecb-57a4-4fc8-9979-5a2009321b6d"},{"name":"3. Delete Consent","id":"b8b9db4e-3194-4340-bd29-31c000a225c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/tenant/group/test","description":"<h1 id=\"description\">Description</h1>\n<p>To delete consent by using  groupname.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\",\"cidaas_tenant_consent_read\", cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>it should pass <strong>groupname</strong> in the url</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{data:boolean}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","tenant","group","test"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1a44a8d7-5a93-4e41-956a-3db38f8af561","name":"3. Delete Consent","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":""},"url":"http://localmanagement.cidaas.de/consent-management-srv/tenant/group/test"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"41","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 12:18:48 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"29-oS3l/ciNgeB0vn3IAwUp9OUSHTo\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"undefined","key":"cidaas_sid"},{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":true}"}],"_postman_id":"b8b9db4e-3194-4340-bd29-31c000a225c1"}],"id":"d9a41d2e-48d0-45d8-80ad-5cee8a164517","_postman_id":"d9a41d2e-48d0-45d8-80ad-5cee8a164517","description":""},{"name":"Setup Version","item":[{"name":"1. Add Version","id":"bc26a508-7813-4ac3-8c2c-d9b91aa73d49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"consent_name\":\"cardemo\",\n\t\"version\":2,\n\t\"url\":\"https://google.com\",\n\t\"content\":\"test\",\n\t\"matcher\":{\n\t\t\"fleet\":\"1\"\n\t}\n}"},"url":"{{baseurl}}/consent-management-srv/tenant/version","description":"<h1 id=\"description\">Description</h1>\n<p>To create new consent version.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\naccepted-language:enUS\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITenantConsentManagement{\n    _id: string;\n    id: string;\n    url: string; // *\n    content: string; // *\n    version: number;\n    consent_name: string; // *\n    matcher: any;\n    locale: string;\n    language: string;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITenantConsentManagement{\n    _id: string;\n    id: string;\n    url: string;\n    content: string;\n    version: number;\n    consent_name: string;\n    matcher: any;\n    locale: string;\n    language: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","tenant","version"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"4c5054e2-a6e3-459d-bc05-47fa647f2b0f","name":"1. Add Version","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"consent_name\":\"test\",\n\t\"version\":\"1\",\n\t\"url\":\"https://google.com\",\n\t\"content\":\"test\"\n}"},"url":"http://localmanagement.cidaas.de/consent-management-srv/tenant/version"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"307","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 12:12:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"133-Y14muX7/LI3Ph70OxiGq5qe27ac\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"undefined","key":"cidaas_sid"},{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"3d5d8e0b-07bb-45f0-8268-321a2924e617\",\"updatedTime\":\"2018-05-10T12:11:55.202Z\",\"createdTime\":\"2018-05-10T11:45:44.842Z\",\"className\":\"de.cidaas.core.db.TenantConsentManagement\",\"url\":\"https://google.com\",\"consent_name\":\"test\",\"__v\":0,\"content\":\"test\",\"version\":1}}"}],"_postman_id":"bc26a508-7813-4ac3-8c2c-d9b91aa73d49"},{"name":"2. List Versions","id":"517e4165-90ca-4be8-8318-ad48e27e599e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/consent-management-srv/tenant/version/list?consent_name=cardemo","description":"<h1 id=\"description\">Description</h1>\n<p>To get List consent version in the particular consent by using consent_name.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass <strong>consent_name</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITenantConsentManagement{\n    _id: string;\n    id: string;\n    url: string;\n    content: string;\n    version: number;\n    consent_name: string;\n    matcher: any;\n    locale: string;\n    language: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["consent-management-srv","tenant","version","list"],"host":["{{baseurl}}"],"query":[{"key":"consent_name","value":"cardemo"}],"variable":[]}},"response":[{"id":"5c704305-e6cb-4736-b0fc-4ef92f8ea544","name":"2. List Versions","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"url":{"raw":"http://localmanagement.cidaas.de/consent-management-srv/tenant/version/list?consent_name=test","protocol":"http","host":["localmanagement","cidaas","de"],"path":["consent-management-srv","tenant","version","list"],"query":[{"key":"consent_name","value":"test"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"309","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 12:12:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"135-aswtHkzy6xMBPvDO5xZ8B3KA4oQ\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"undefined","key":"cidaas_sid"},{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"3d5d8e0b-07bb-45f0-8268-321a2924e617\",\"updatedTime\":\"2018-05-10T12:11:55.202Z\",\"createdTime\":\"2018-05-10T11:45:44.842Z\",\"className\":\"de.cidaas.core.db.TenantConsentManagement\",\"url\":\"https://google.com\",\"consent_name\":\"test\",\"__v\":0,\"content\":\"test\",\"version\":1}]}"}],"_postman_id":"517e4165-90ca-4be8-8318-ad48e27e599e"},{"name":"3. Get Version","id":"1e1acc12-7836-45bd-be4a-f69ecbb44cb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/consent-management-srv/tenant/version?consent_name=cardemo&version=1","description":"<h1 id=\"description\">Description</h1>\n<p>To get the particular consent version details by using consent_name and version in the query param.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass <strong>consent_name</strong> and <strong>version</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITenantConsentManagement{\n    _id: string;\n    id: string;\n    url: string;\n    content: string;\n    version: number;\n    consent_name: string;\n    matcher: any;\n    locale: string;\n    language: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","tenant","version"],"host":["{{baseurl}}"],"query":[{"key":"consent_name","value":"cardemo"},{"key":"version","value":"1"}],"variable":[]}},"response":[{"id":"7110ddea-1329-48c6-a776-2ed971660ff8","name":"3. Get Version","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"url":{"raw":"http://localmanagement.cidaas.de/consent-management-srv/tenant/version?consent_name=test&version=1","protocol":"http","host":["localmanagement","cidaas","de"],"path":["consent-management-srv","tenant","version"],"query":[{"key":"consent_name","value":"test"},{"key":"version","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"307","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 12:12:07 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"133-Y14muX7/LI3Ph70OxiGq5qe27ac\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"undefined","key":"cidaas_sid"},{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"3d5d8e0b-07bb-45f0-8268-321a2924e617\",\"updatedTime\":\"2018-05-10T12:11:55.202Z\",\"createdTime\":\"2018-05-10T11:45:44.842Z\",\"className\":\"de.cidaas.core.db.TenantConsentManagement\",\"url\":\"https://google.com\",\"consent_name\":\"test\",\"__v\":0,\"content\":\"test\",\"version\":1}}"}],"_postman_id":"1e1acc12-7836-45bd-be4a-f69ecbb44cb7"},{"name":"4. Delete Version","id":"fec73cf0-2ad4-426c-a774-2ebd10a6f7a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"consent_name\":\"test\",\n\t\"version\":\"1\",\n\t\"url\":\"https://google.com\"\n}"},"url":"{{baseurl}}/consent-management-srv/tenant/version/test/1","description":"<h1 id=\"description\">Description</h1>\n<p>To delete particular consent version by using consent_name and version.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass <strong>consent_name</strong> and <strong>version</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\ndata:true\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","tenant","version","test","1"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"f4e174b1-fd51-4839-9c54-583a8c932145","name":"4. Delete Version","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"consent_name\":\"test\",\n\t\"version\":\"1\",\n\t\"url\":\"https://google.com\"\n}"},"url":"http://localmanagement.cidaas.de/consent-management-srv/tenant/version/test/1"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"41","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 12:17:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"29-oS3l/ciNgeB0vn3IAwUp9OUSHTo\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"undefined","key":"cidaas_sid"},{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":true}"}],"_postman_id":"fec73cf0-2ad4-426c-a774-2ebd10a6f7a7"}],"id":"ca0f9919-4637-4df9-acee-48c67bdc9b26","_postman_id":"ca0f9919-4637-4df9-acee-48c67bdc9b26","description":""},{"name":"Usage User Side","item":[{"name":"1. Check","id":"c26a2c11-d54e-454e-b17a-77b07258b014","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"1\",\n\t\"name\":\"cardemo\",\n\t\"client_id\":\"1\",\n\t\"matcher\":{\"fleet\":\"1\"}\n}"},"url":"{{baseurl}}/consent-management-srv/tenant/user/status/check","description":"<h1 id=\"description\">Description</h1>\n<p>To check user consent status.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No scopes are required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITenantConsentUserMap  {\n    _id: string;\n    id: string;\n    name: string; // *\n    sub: string; // *\n    version: number;\n    client_id: string;\n    accepted: boolean;\n    createdTime: Date;\n    matcher: any;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{data:true}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","tenant","user","status","check"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"a97ece5b-b3a2-4b67-b5bd-e02261f90afd","name":"2. Check","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"1\",\n\t\"name\":\"test\",\n\t\"client_id\":\"1\"\n}"},"url":"http://localmanagement.cidaas.de/consent-management-srv/tenant/user/status/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"41","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 12:14:00 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"29-oS3l/ciNgeB0vn3IAwUp9OUSHTo\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"undefined","key":"cidaas_sid"},{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":true}"}],"_postman_id":"c26a2c11-d54e-454e-b17a-77b07258b014"},{"name":"2. Save User Reply","id":"f25de4b1-0967-47be-bd2c-77810637cbfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"name\":\"test2\",\n\t\"version\":\"1\",\n\t\"client_id\":\"c4364c44-ddda-4552-9fbc-d1281d9ad351\",\n\t\"accepted\":true,\n\t\"matcher\":{\"fleet\":\"1\"}\n\t\n}"},"url":"{{baseurl}}/consent-management-srv/tenant/user/status","description":"<h1 id=\"description\">Description</h1>\n<p>To update user reply consent status.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No scopes are required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITenantConsentUserMap  {\n    _id: string;\n    id: string;\n    name: string; // *\n    sub: string; // *\n    version: number;\n    client_id: string;\n    accepted: boolean;\n    createdTime: Date;\n    matcher: any;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITenantConsentUserMap {\n    _id: string;\n    id: string;\n    name: string;\n    sub: string;\n    version: number;\n    client_id: string;\n    accepted: boolean;\n    createdTime: Date;\n    matcher: any;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","tenant","user","status"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1b8eaf4e-3eb6-4665-a4b8-f9238951da5a","name":"1. Save User Reply","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"1\",\n\t\"name\":\"test\",\n\t\"version\":\"1\",\n\t\"client_id\":\"1\",\n\t\"accepted\":true\n}"},"url":"http://localmanagement.cidaas.de/consent-management-srv/tenant/user/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"108","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 12:14:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"6c-pLiGP+y0c2hUda2JcvyxPlf78G4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"undefined","key":"cidaas_sid"},{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"sub\":\"1\",\"name\":\"test\",\"version\":\"1\",\"client_id\":\"1\",\"accepted\":true}}"}],"_postman_id":"f25de4b1-0967-47be-bd2c-77810637cbfc"},{"name":"3. Get Page URL","id":"f93a252f-fa10-4d7d-903a-5776caa92560","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/consent-management-srv/tenant/version/pageurl?consent_name=test2&version=1","description":"<h1 id=\"description\">Description</h1>\n<p>To get page url by using consent_name and version.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass <strong>consent_name</strong> and <strong>version</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>class TenantConsentVersionQuery {\n    consent_name: string = \"\"; // *\n    version: number = 0; // *\n    locale: string = \"\";\n    language: string = \"\";\n    acceptLanguage: string = \"\";\n    skip?: number;\n    take?: number;\n    sub?: string;\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ITenantConsentManagement{\n    _id: string;\n    id: string;\n    url: string;\n    content: string;\n    version: number;\n    consent_name: string;\n    matcher: any;\n    locale: string;\n    language: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","tenant","version","pageurl"],"host":["{{baseurl}}"],"query":[{"key":"consent_name","value":"test2"},{"key":"version","value":"1"}],"variable":[]}},"response":[{"id":"7f8acf70-4a80-4f62-bd28-cdab2263479d","name":"1. Save User Reply","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"1\",\n\t\"name\":\"test\",\n\t\"version\":\"1\",\n\t\"client_id\":\"1\",\n\t\"accepted\":true\n}"},"url":"http://localmanagement.cidaas.de/consent-management-srv/tenant/user/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"108","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 12:14:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"6c-pLiGP+y0c2hUda2JcvyxPlf78G4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"undefined","key":"cidaas_sid"},{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"sub\":\"1\",\"name\":\"test\",\"version\":\"1\",\"client_id\":\"1\",\"accepted\":true}}"}],"_postman_id":"f93a252f-fa10-4d7d-903a-5776caa92560"}],"id":"a1f01732-e379-4361-bd82-0d3d95c24e67","_postman_id":"a1f01732-e379-4361-bd82-0d3d95c24e67","description":""},{"name":"App Association","item":[{"name":"1. Get Consent By Name","id":"e27b1c36-88c2-4033-8422-9341b69fb4c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/consent-management-srv/tenant/group/names/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get consent list by names.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:cidaas_admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET,APP_READ,APP_CREATE]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{val: string []}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["consent-management-srv","tenant","group","names","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"fab573f3-14c0-409d-91c8-9a110595a48a","name":"2. Get Consent By Name","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/tenant/group/names/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"63","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 12:11:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"3f-S9w3EdG1DsHaStwHdpHxUSWypOs\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"undefined","key":"cidaas_sid"},{"expires":"Mon Mar 04 2019 10:40:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[\"default\",\"test\",\"test2\"]}"}],"_postman_id":"e27b1c36-88c2-4033-8422-9341b69fb4c5"}],"id":"6a63c1d5-7224-4e25-accf-41af7e579285","_postman_id":"6a63c1d5-7224-4e25-accf-41af7e579285","description":""}],"id":"ca5c5028-4aee-416a-99b5-55d476663900","_postman_id":"ca5c5028-4aee-416a-99b5-55d476663900","description":""},{"name":"Scope Consent","item":[{"name":"1.Check the scope is already accepted","id":"2e8f6382-e508-400c-9a4a-7c72f7450b22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"\",\n\t\"client_id\":\"\",\n\t\"scopes\":[\"scopes\"]\n}"},"url":"{{baseurl}}/consent-management-srv/consent/scope/check","description":"<h1 id=\"description\">Description</h1>\n<p>To check scope consent is already accepted.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No scopes are required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>class ScopeUserConsentQuery {\n    sub: string = \"\"; // *\n    client_id: string = \"\"; // *\n    scopes: string[] = []; // *\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{val: string[]}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","consent","scope","check"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"2e752deb-d224-4310-b90a-0b25a7684103","name":"1. List of Consents","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/settings/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:05:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"151-2U0TimjEaTyOQfLNZfoU3HJG6k0\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"sensitive\":true,\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"jurisdiction\":\"DW\",\"services\":[{\"service\":\"Digital Subscription and News Alerts\"}],\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\"}]}"}],"_postman_id":"2e8f6382-e508-400c-9a4a-7c72f7450b22"},{"name":"2. Revoke Accepted Scope Consent","id":"c67b7c89-969f-4807-b9cb-aaeac0feb8e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"\",\n\t\"client_id\":\"\",\n\t\"scope\":\"scopes\"\n}"},"url":"{{baseurl}}/consent-management-srv/consent/scope/revoke","description":"<h1 id=\"description\">Description</h1>\n<p>To revoke accepted scope consent.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No scopes are required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IScopeUserConsent {\n    _id: string;\n    id: string;\n\n    client_id: string; // *\n    scope: string; // *\n    sub: string; // *\n    accepted: boolean;\n    revoked: boolean;\n    revoked_reason: string;\n\n    // view\n    scopes: string[];\n\n    q: string;\n\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{val: boolean}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","consent","scope","revoke"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"0311f91f-2b8d-4f43-ad32-db5de6f9e94f","name":"1. List of Consents","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/settings/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:05:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"151-2U0TimjEaTyOQfLNZfoU3HJG6k0\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"sensitive\":true,\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"jurisdiction\":\"DW\",\"services\":[{\"service\":\"Digital Subscription and News Alerts\"}],\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\"}]}"}],"_postman_id":"c67b7c89-969f-4807-b9cb-aaeac0feb8e9"}],"id":"b81a2f10-b7dc-4a0e-859a-9f4f1ab28d11","_postman_id":"b81a2f10-b7dc-4a0e-859a-9f4f1ab28d11","description":""},{"name":"KantaraStd","item":[{"name":"App Association","item":[{"name":"1. Get Consent By Name","id":"71fe7661-1209-42bd-af37-5d58c15ad3e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/consent-management-srv/settings/names/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get consent details by name .</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET, APP_READ, APP_CREATE ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{val: string[]}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["consent-management-srv","settings","names","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"fedde21a-772b-448d-a50f-4615ea2e912c","name":"1. Get Consent By Name","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/settings/names/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"51","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:32:12 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"33-nWgFFsojyoMHVn80rKlP4YKxYtw\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[\"unque name\"]}"}],"_postman_id":"71fe7661-1209-42bd-af37-5d58c15ad3e5"}],"id":"e991621e-c2a0-42e8-8616-fff440af1324","_postman_id":"e991621e-c2a0-42e8-8616-fff440af1324","description":""},{"name":"Usage User Side","item":[{"name":"1. Check","id":"623ae3de-47aa-42bc-9dd3-5bda7fe71dc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"1\",\n\t\"name\":\"Unque Name\",\n\t\"client_id\":\"1\",\n\t\"matcher\":{\"fleet\":\"1\"}\n}"},"url":"{{baseurl}}/consent-management-srv/user/status/check","description":"<h1 id=\"description\">Description</h1>\n<p>To check the accepting user status for the cosent.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No scopes are required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentReceiptUserMap {\n    _id: string;\n    id: string;\n\n    name: string; // *\n    sub: string; // *\n    client_id: string;\n    accepted: boolean;\n    createdTime: Date;\n    updatedTime: Date;\n    matcher: any;\n    consentReceiptID: string;\n    consent_receipt: IConsentReceiptSettings;\n}\n\ninterface IConsentReceiptSettings{\n    _id: string;\n    id: string;\n\n    version: string;\n    jurisdiction: string;\n    consentTimestamp: number;\n    collectionMethod: string;\n    consentReceiptID: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    language: string;\n    piiPrincipalId: string;\n    piiControllers: IPIIControllers[];\n    policyUrl: string;\n    services: IConsentServices[];\n    sensitive: boolean;\n    spiCat: string[];\n\n\n    // non standard\n    status: string;\n    consent_type: string;\n    enabled: boolean;\n    name: string;\n    description: string;\n    userAgreeText: string;\n\n}\n\ninterface IPIIControllers  {\n    _id: string;\n    id: string;\n    piiController: string;\n    onBehalf: boolean;\n    contact: string;\n    address: IConsentAddress;\n    email: boolean;\n    phone: string;\n    piiControllerUrl: string;\n}\n\ninterface IConsentServices {\n    _id: string;\n    id: string;\n    service: string;\n    purposes: IConsentPurposes[];\n\n}\n\nIConsentPurposes {\n    _id: string;\n    id: string;\n    purpose: string;\n    consentType: string;\n    purposeCategory: string[];\n    piiCategory: string[];\n    primaryPurpose: boolean;\n    termination: string;\n\n    thirdPartyDisclosure: boolean;\n    thirdPartyName: string;\n\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentReceiptUserMap  {\n    _id: string;\n    id: string;\n\n    name: string;\n    sub: string;\n    client_id: string;\n    accepted: boolean;\n    createdTime: Date;\n    updatedTime: Date;\n    matcher: any;\n    consentReceiptID: string;\n    consent_receipt: IConsentReceiptSettings;\n}\n\nIConsentReceiptSettings{\n    _id: string;\n    id: string;\n\n    version: string;\n    jurisdiction: string;\n    consentTimestamp: number;\n    collectionMethod: string;\n    consentReceiptID: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    language: string;\n    piiPrincipalId: string;\n    piiControllers: IPIIControllers[];\n    policyUrl: string;\n    services: IConsentServices[];\n    sensitive: boolean;\n    spiCat: string[];\n\n\n    // non standard\n    status: string;\n    consent_type: string;\n    enabled: boolean;\n    name: string;\n    description: string;\n    userAgreeText: string;\n\n}\n\ninterface IPIIControllers {\n    _id: string;\n    id: string;\n    piiController: string;\n    onBehalf: boolean;\n    contact: string;\n    address: IConsentAddress;\n    email: boolean;\n    phone: string;\n    piiControllerUrl: string;\n}\n\n interface IConsentServices {\n    _id: string;\n    id: string;\n    service: string;\n    purposes: IConsentPurposes[];\n\n}\n\n interface IConsentPurposes  {\n    _id: string;\n    id: string;\n    purpose: string;\n    consentType: string;\n    purposeCategory: string[];\n    piiCategory: string[];\n    primaryPurpose: boolean;\n    termination: string;\n\n    thirdPartyDisclosure: boolean;\n    thirdPartyName: string;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","user","status","check"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"05f3ee13-1862-4c8f-895f-735015fb6937","name":"1. Check","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"1\",\n\t\"name\":\"Unque Name\",\n\t\"client_id\":\"1\",\n\t\"matcher\":{\"fleet\":\"1\"}\n}"},"url":"http://localmanagement.cidaas.de/consent-management-srv/user/status/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"125","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:22:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"7d-RJuQs1FMqAtVLXjKD2npmhZMQrA\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"sub\":\"1\",\"name\":\"unque name\",\"client_id\":\"1\",\"matcher\":{\"fleet\":\"1\"},\"accepted\":false}}"}],"_postman_id":"623ae3de-47aa-42bc-9dd3-5bda7fe71dc3"},{"name":"2. Save User Reply","id":"4ec8d5d4-1101-4470-8ec8-bae54c26e3ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"name\":\"Unque Name\",\n\t\"client_id\":\"c4364c44-ddda-4552-9fbc-d1281d9ad351\",\n\t\"accepted\":true,\n\t\"matcher\":{\"fleet\":\"1\"}\n\t\n}"},"url":"{{baseurl}}/consent-management-srv/user/status","description":"<h1 id=\"description\">Description</h1>\n<p>To save the user reply.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentReceiptUserMap {\n    _id: string;\n    id: string;\n\n    name: string; // *\n    sub: string; // *\n    client_id: string;\n    accepted: boolean;\n    createdTime: Date;\n    updatedTime: Date;\n    matcher: any;\n    consentReceiptID: string;\n    consent_receipt: IConsentReceiptSettings;\n}\n\ninterface IConsentReceiptSettings{\n    _id: string;\n    id: string;\n\n    version: string;\n    jurisdiction: string;\n    consentTimestamp: number;\n    collectionMethod: string;\n    consentReceiptID: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    language: string;\n    piiPrincipalId: string;\n    piiControllers: IPIIControllers[];\n    policyUrl: string;\n    services: IConsentServices[];\n    sensitive: boolean;\n    spiCat: string[];\n\n\n    // non standard\n    status: string;\n    consent_type: string;\n    enabled: boolean;\n    name: string;\n    description: string;\n    userAgreeText: string;\n\n}\n\ninterface IPIIControllers  {\n    _id: string;\n    id: string;\n    piiController: string;\n    onBehalf: boolean;\n    contact: string;\n    address: IConsentAddress;\n    email: boolean;\n    phone: string;\n    piiControllerUrl: string;\n}\n\ninterface IConsentServices  {\n    _id: string;\n    id: string;\n    service: string;\n    purposes: IConsentPurposes[];\n\n}\n\ninterface IConsentPurposes {\n    _id: string;\n    id: string;\n    purpose: string;\n    consentType: string;\n    purposeCategory: string[];\n    piiCategory: string[];\n    primaryPurpose: boolean;\n    termination: string;\n\n    thirdPartyDisclosure: boolean;\n    thirdPartyName: string;\n\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentReceiptUserMap  {\n    _id: string;\n    id: string;\n\n    name: string;\n    sub: string;\n    client_id: string;\n    accepted: boolean;\n    createdTime: Date;\n    updatedTime: Date;\n    matcher: any;\n    consentReceiptID: string;\n    consent_receipt: IConsentReceiptSettings;\n}\n\ninterface IConsentReceiptSettings{\n    _id: string;\n    id: string;\n\n    version: string;\n    jurisdiction: string;\n    consentTimestamp: number;\n    collectionMethod: string;\n    consentReceiptID: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    language: string;\n    piiPrincipalId: string;\n    piiControllers: IPIIControllers[];\n    policyUrl: string;\n    services: IConsentServices[];\n    sensitive: boolean;\n    spiCat: string[];\n\n\n    // non standard\n    status: string;\n    consent_type: string;\n    enabled: boolean;\n    name: string;\n    description: string;\n    userAgreeText: string;\n\n}\n\ninterface IPIIControllers  {\n    _id: string;\n    id: string;\n    piiController: string;\n    onBehalf: boolean;\n    contact: string;\n    address: IConsentAddress;\n    email: boolean;\n    phone: string;\n    piiControllerUrl: string;\n}\n\ninterface IConsentServices  {\n    _id: string;\n    id: string;\n    service: string;\n    purposes: IConsentPurposes[];\n\n}\n\ninterface IConsentPurposes {\n    _id: string;\n    id: string;\n    purpose: string;\n    consentType: string;\n    purposeCategory: string[];\n    piiCategory: string[];\n    primaryPurpose: boolean;\n    termination: string;\n\n    thirdPartyDisclosure: boolean;\n    thirdPartyName: string;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","user","status"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"6aed8a20-6e64-4488-a9a9-714c718598f8","name":"2. Save User Reply","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"name\":\"Unque Name\",\n\t\"client_id\":\"c4364c44-ddda-4552-9fbc-d1281d9ad351\",\n\t\"accepted\":true,\n\t\"matcher\":{\"fleet\":\"1\"}\n\t\n}"},"url":"http://localmanagement.cidaas.de/consent-management-srv/user/status"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"41","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:27:15 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"29-oS3l/ciNgeB0vn3IAwUp9OUSHTo\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":true}"}],"_postman_id":"4ec8d5d4-1101-4470-8ec8-bae54c26e3ca"},{"name":"3. Reovke Consent","id":"6d4cc562-f3cf-41ae-a903-39da58b2f5a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"1\",\n\t\"name\":\"Unque Name\",\n\t\"client_id\":\"\",\n\t\"consentReceiptID\":\"\",\n\t\"matcher\":{\n\t\t\"key\":\"value\"\n\t}\n}"},"url":"{{baseurl}}/consent-management-srv/user/status/revoke","description":"<h1 id=\"description\">Description</h1>\n<p>To revoke consents.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentReceiptUserMap {\n    _id: string;\n    id: string;\n\n    name: string; // *\n    sub: string; // *\n    client_id: string;\n    accepted: boolean;\n    createdTime: Date;\n    updatedTime: Date;\n    matcher: any;\n    consentReceiptID: string;\n    consent_receipt: IConsentReceiptSettings;\n}\n\ninterface IConsentReceiptSettings{\n    _id: string;\n    id: string;\n\n    version: string;\n    jurisdiction: string;\n    consentTimestamp: number;\n    collectionMethod: string;\n    consentReceiptID: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    language: string;\n    piiPrincipalId: string;\n    piiControllers: IPIIControllers[];\n    policyUrl: string;\n    services: IConsentServices[];\n    sensitive: boolean;\n    spiCat: string[];\n\n\n    // non standard\n    status: string;\n    consent_type: string;\n    enabled: boolean;\n    name: string;\n    description: string;\n    userAgreeText: string;\n\n}\n\ninterface IPIIControllers  {\n    _id: string;\n    id: string;\n    piiController: string;\n    onBehalf: boolean;\n    contact: string;\n    address: IConsentAddress;\n    email: boolean;\n    phone: string;\n    piiControllerUrl: string;\n}\n\ninterface IConsentServices  {\n    _id: string;\n    id: string;\n    service: string;\n    purposes: IConsentPurposes[];\n\n}\n\ninterface IConsentPurposes {\n    _id: string;\n    id: string;\n    purpose: string;\n    consentType: string;\n    purposeCategory: string[];\n    piiCategory: string[];\n    primaryPurpose: boolean;\n    termination: string;\n\n    thirdPartyDisclosure: boolean;\n    thirdPartyName: string;\n\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentReceiptUserMap  {\n    _id: string;\n    id: string;\n\n    name: string;\n    sub: string;\n    client_id: string;\n    accepted: boolean;\n    createdTime: Date;\n    updatedTime: Date;\n    matcher: any;\n    consentReceiptID: string;\n    consent_receipt: IConsentReceiptSettings;\n}\n\ninterface IConsentReceiptSettings{\n    _id: string;\n    id: string;\n\n    version: string;\n    jurisdiction: string;\n    consentTimestamp: number;\n    collectionMethod: string;\n    consentReceiptID: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    language: string;\n    piiPrincipalId: string;\n    piiControllers: IPIIControllers[];\n    policyUrl: string;\n    services: IConsentServices[];\n    sensitive: boolean;\n    spiCat: string[];\n\n\n    // non standard\n    status: string;\n    consent_type: string;\n    enabled: boolean;\n    name: string;\n    description: string;\n    userAgreeText: string;\n\n}\n\ninterface IPIIControllers  {\n    _id: string;\n    id: string;\n    piiController: string;\n    onBehalf: boolean;\n    contact: string;\n    address: IConsentAddress;\n    email: boolean;\n    phone: string;\n    piiControllerUrl: string;\n}\n\ninterface IConsentServices  {\n    _id: string;\n    id: string;\n    service: string;\n    purposes: IConsentPurposes[];\n\n}\n\ninterface IConsentPurposes {\n    _id: string;\n    id: string;\n    purpose: string;\n    consentType: string;\n    purposeCategory: string[];\n    piiCategory: string[];\n    primaryPurpose: boolean;\n    termination: string;\n\n    thirdPartyDisclosure: boolean;\n    thirdPartyName: string;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","user","status","revoke"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"7d95506b-e856-4178-81ac-f3e77551b75a","name":"1. Check","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"1\",\n\t\"name\":\"Unque Name\",\n\t\"client_id\":\"1\",\n\t\"matcher\":{\"fleet\":\"1\"}\n}"},"url":"http://localmanagement.cidaas.de/consent-management-srv/user/status/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"125","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:22:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"7d-RJuQs1FMqAtVLXjKD2npmhZMQrA\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"sub\":\"1\",\"name\":\"unque name\",\"client_id\":\"1\",\"matcher\":{\"fleet\":\"1\"},\"accepted\":false}}"}],"_postman_id":"6d4cc562-f3cf-41ae-a903-39da58b2f5a2"}],"id":"d182fda1-58fe-4fdc-b734-69385df5c0da","_postman_id":"d182fda1-58fe-4fdc-b734-69385df5c0da","description":""},{"name":"Setup","item":[{"name":"1. List of Consents","id":"f8f65f1d-0101-4a89-a60e-5f86251308f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/consent-management-srv/settings/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get list of consents.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentReceiptSettings{\n    _id: string;\n    id: string;\n\n    version: string;\n    jurisdiction: string;\n    consentTimestamp: number;\n    collectionMethod: string;\n    consentReceiptID: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    language: string;\n    piiPrincipalId: string;\n    piiControllers: IPIIControllers[];\n    policyUrl: string;\n    services: IConsentServices[];\n    sensitive: boolean;\n    spiCat: string[];\n\n\n    // non standard\n    status: string;\n    consent_type: string;\n    enabled: boolean;\n    name: string;\n    description: string;\n    userAgreeText: string;\n\n}\n\ninterface IPIIControllers {\n    _id: string;\n    id: string;\n    piiController: string;\n    onBehalf: boolean;\n    contact: string;\n    address: IConsentAddress;\n    email: boolean;\n    phone: string;\n    piiControllerUrl: string;\n}\n\ninterface IConsentServices {\n    _id: string;\n    id: string;\n    service: string;\n    purposes: IConsentPurposes[];\n\n}\n\ninterface IConsentPurposes {\n    _id: string;\n    id: string;\n    purpose: string;\n    consentType: string;\n    purposeCategory: string[];\n    piiCategory: string[];\n    primaryPurpose: boolean;\n    termination: string;\n\n    thirdPartyDisclosure: boolean;\n    thirdPartyName: string;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["consent-management-srv","settings","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"346fe18d-cc0e-4a03-bafe-b546d8d543b8","name":"1. List of Consents","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/settings/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:05:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"151-2U0TimjEaTyOQfLNZfoU3HJG6k0\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"sensitive\":true,\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"jurisdiction\":\"DW\",\"services\":[{\"service\":\"Digital Subscription and News Alerts\"}],\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\"}]}"}],"_postman_id":"f8f65f1d-0101-4a89-a60e-5f86251308f5"},{"name":"2. Create Consent","id":"5776a6d5-00a7-4e9f-83e7-e62d5d9e01a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"jurisdiction\": \"DW\",\n  \"collectionMethod\": \"Web Subscription Form with opt-in for marketing\",\n  \"consentReceiptID\": \"c1befd3e-b7e5-4ea6-8688-e9a565aade21\",\n  \"language\": \"en\",\n  \"status\": \"EDITING\",\n  \"consent_type\": \"LOGIN\",\n  \"name\": \"Unque Name\",\n  \"description\": \"content\",\n  \"userAgreeText\": \"I agree this\",\n  \"piiControllers\": [\n    {\n      \"piiController\": \"Ankh-Morpork Times\",\n      \"contact\": \"William De Worde\",\n      \"address\": {\n        \"streetAddress\": \"Gleam Street\",\n        \"addressCountry\": \"DW\"\n      },\n      \"email\": \"william@times.ankh-morpork.xyz\",\n      \"phone\": \"(555) 555-DISC (3429)\"\n    }\n  ],\n  \"policyUrl\": \"https://times.ankh-morpork.xzy/privacy_2017\",\n  \"services\": [\n    {\n      \"service\": \"Digital Subscription and News Alerts\",\n      \"purposes\": [\n        {\n          \"purpose\": \"To provide contracted services\",\n          \"purposeCategory\": [\n            \"2 - Contracted Service\"\n          ],\n          \"consentType\": \"EXPLICIT\",\n          \"piiCategory\": [\n            \"1 - Biographical\",\n            \"2 - Contact\",\n            \"4 - Communications/Social\",\n            \"7 - Financial\"\n          ],\n          \"primaryPurpose\": true,\n          \"termination\": \"Subscription end date + 1 year\",\n          \"thirdPartyDisclosure\": true,\n          \"thirdPartyName\": \"The Ankh-morpork Deadbeat Debt Collectors Society\"\n        },\n        {\n          \"purpose\": \"To provide contracted services\",\n          \"purposeCategory\": [\n            \"1 - Core Function\"\n          ],\n          \"consentType\": \"EXPLICIT\",\n          \"piiCategory\": [\n            \"1 - Biographical\",\n            \"2 - Contact\",\n            \"4 - Communications/Social\",\n            \"7 - Financial\"\n          ],\n          \"primaryPurpose\": true,\n          \"termination\": \"Subscription end date + 1 year\",\n          \"thirdPartyDisclosure\": true,\n          \"thirdPartyName\": \"The Ankh-morpork Deadbeat Debt Collectors Society\"\n        }\n      ]\n    }\n  ],\n  \"sensitive\": true,\n  \"spiCat\": [\n    \"1 - Biographical\",\n    \"7 - Financial\"\n  ]\n}"},"url":"{{baseurl}}/consent-management-srv/settings","description":"<h1 id=\"description\">Description</h1>\n<p>To create new consent.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentReceiptSettings{\n    _id: string;\n    id: string;\n\n    version: string;\n    jurisdiction: string;\n    consentTimestamp: number;\n    collectionMethod: string;\n    consentReceiptID: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    language: string;\n    piiPrincipalId: string;\n    piiControllers: IPIIControllers[];\n    policyUrl: string;\n    services: IConsentServices[];\n    sensitive: boolean;\n    spiCat: string[];\n\n\n    // non standard\n    status: string;\n    consent_type: string; // *\n    enabled: boolean;\n    name: string; // *\n    description: string;\n    userAgreeText: string;\n\n}\n\n interface IPIIControllers  {\n    _id: string;\n    id: string;\n    piiController: string;\n    onBehalf: boolean;\n    contact: string;\n    address: IConsentAddress;\n    email: boolean;\n    phone: string;\n    piiControllerUrl: string;\n}\n\ninterface IConsentServices  {\n    _id: string;\n    id: string;\n    service: string;\n    purposes: IConsentPurposes[];\n\n}\n\n interface IConsentPurposes  {\n    _id: string;\n    id: string;\n    purpose: string;\n    consentType: string;\n    purposeCategory: string[];\n    piiCategory: string[];\n    primaryPurpose: boolean;\n    termination: string;\n\n    thirdPartyDisclosure: boolean;\n    thirdPartyName: string;\n\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\ninterface IConsentReceiptSettings{\n    _id: string;\n    id: string;\n\n    version: string;\n    jurisdiction: string;\n    consentTimestamp: number;\n    collectionMethod: string;\n    consentReceiptID: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    language: string;\n    piiPrincipalId: string;\n    piiControllers: IPIIControllers[];\n    policyUrl: string;\n    services: IConsentServices[];\n    sensitive: boolean;\n    spiCat: string[];\n\n\n    // non standard\n    status: string;\n    consent_type: string;\n    enabled: boolean;\n    name: string;\n    description: string;\n    userAgreeText: string;\n\n}\n\ninterface IPIIControllers {\n    _id: string;\n    id: string;\n    piiController: string;\n    onBehalf: boolean;\n    contact: string;\n    address: IConsentAddress;\n    email: boolean;\n    phone: string;\n    piiControllerUrl: string;\n}\n\ninterface IConsentServices  {\n    _id: string;\n    id: string;\n    service: string;\n    purposes: IConsentPurposes[];\n\n}\n\ninterface IConsentPurposes {\n    _id: string;\n    id: string;\n    purpose: string;\n    consentType: string;\n    purposeCategory: string[];\n    piiCategory: string[];\n    primaryPurpose: boolean;\n    termination: string;\n\n    thirdPartyDisclosure: boolean;\n    thirdPartyName: string;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","settings"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"bb035b10-1fc5-47b4-bfe0-9883ecd3148d","name":"3. Create Consent","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"jurisdiction\": \"DW\",\n  \"collectionMethod\": \"Web Subscription Form with opt-in for marketing\",\n  \"consentReceiptID\": \"c1befd3e-b7e5-4ea6-8688-e9a565aade21\",\n  \"language\": \"en\",\n  \"status\": \"EDITING\",\n  \"consent_type\": \"LOGIN\",\n  \"name\": \"Unque Name\",\n  \"description\": \"content\",\n  \"userAgreeText\": \"I agree this\",\n  \"piiControllers\": [\n    {\n      \"piiController\": \"Ankh-Morpork Times\",\n      \"contact\": \"William De Worde\",\n      \"address\": {\n        \"streetAddress\": \"Gleam Street\",\n        \"addressCountry\": \"DW\"\n      },\n      \"email\": \"william@times.ankh-morpork.xyz\",\n      \"phone\": \"(555) 555-DISC (3429)\"\n    }\n  ],\n  \"policyUrl\": \"https://times.ankh-morpork.xzy/privacy_2017\",\n  \"services\": [\n    {\n      \"service\": \"Digital Subscription and News Alerts\",\n      \"purposes\": [\n        {\n          \"purpose\": \"To provide contracted services\",\n          \"purposeCategory\": [\n            \"2 - Contracted Service\"\n          ],\n          \"consentType\": \"EXPLICIT\",\n          \"piiCategory\": [\n            \"1 - Biographical\",\n            \"2 - Contact\",\n            \"4 - Communications/Social\",\n            \"7 - Financial\"\n          ],\n          \"primaryPurpose\": true,\n          \"termination\": \"Subscription end date + 1 year\",\n          \"thirdPartyDisclosure\": true,\n          \"thirdPartyName\": \"The Ankh-morpork Deadbeat Debt Collectors Society\"\n        },\n        {\n          \"purpose\": \"To provide contracted services\",\n          \"purposeCategory\": [\n            \"1 - Core Function\"\n          ],\n          \"consentType\": \"EXPLICIT\",\n          \"piiCategory\": [\n            \"1 - Biographical\",\n            \"2 - Contact\",\n            \"4 - Communications/Social\",\n            \"7 - Financial\"\n          ],\n          \"primaryPurpose\": true,\n          \"termination\": \"Subscription end date + 1 year\",\n          \"thirdPartyDisclosure\": true,\n          \"thirdPartyName\": \"The Ankh-morpork Deadbeat Debt Collectors Society\"\n        }\n      ]\n    }\n  ],\n  \"sensitive\": true,\n  \"spiCat\": [\n    \"1 - Biographical\",\n    \"7 - Financial\"\n  ]\n}"},"url":"http://localmanagement.cidaas.de/consent-management-srv/settings"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"7025","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:05:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1b71-A+sUG0QKxrj0ClObLEkX8YI+AiU\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"__v\":0,\"updatedTime\":\"2018-08-02T11:05:46.417Z\",\"createdTime\":\"2018-08-02T11:05:46.417Z\",\"className\":\"de.cidaas.core.db.ConsentReceiptSettings\",\"privateKeyJWK\":{\"qi\":\"Y1K-azEQeu0Qy_f754c0klqhocdCy73kJIJDaHCgVVjXgWvy4Pv9F7JgQjwBz97Uh-CUCcac0myq3T6IOT4mzJ4-ufZDI2rzqhmBWb9bahHtpFGlWYJSTaXozXkUo0UfdmEPEvvJCrqFAtqwZTcxbyXEbWAhhehjL4XSYq09jLc\",\"dq\":\"tmREqzruLSgi-L8UlPKOuieNlw_fWEQNzxy-bnTANA6ng-2N_e2WwYUnacz1LI3JN7nRjYr904pi8IqMpskXJ0gyFxzKDMPC-0un_jlukh3BCJMSWfK4hoxhaGvrJQ-fg_BWmdiglNz0torycUnGrkv04CT6KDz7n1eHr8bRKAE\",\"dp\":\"BVhzmPhw_HqiuPyZB0n6PPjWGj8wlxkmDQfXl9B3r7f8AcHEmBNOOhQK7FF-aLiDS2r_RKShSdYdA7OSfvKqByidIIKs6FDbaT5Q7RCqlFLeO7RN7jVnID3FoqUVkes6CoejEjnqQnwrJh9bglPdDZ36v4UHa5rh54nANYS300E\",\"q\":\"ypKU5DuHZJvV8FI-j01X7wVPIFYIOegCTe27vrHnMBli7TXxeQoV3JS5Zq7H4pTHqNQrn8baF-oGFiHcrIT9J9dLYYWyb62apqhp1I2Fmm5QIa8Kd_hORShvA6rYF0zuUJbiDqSgZ9VIRoYCNHX4MPLTNfpIhqAWDsyGavYCJZE\",\"p\":\"0Id1Pslw5vOwGEcDB8W36oaQUUN63OmfavSDmtQJx9-nRl2dibyxlRHUK1b3zdrSRnHH3nXusxvc7JWrDPoNr_IGRDyPFZoq_JsmTkL-UoGb0hAYw444764AEEMUkmg49BCze-I1Fuwie4F3uTMbC279LkozS-6Nx0MCU6VivRU\",\"d\":\"PIfHFkwkZ-WOwX9DqyxDu76iHo9LDcLkibbNTNzxwOH5nGzgkivYx9wTjl4az1_0ydElImwpN3G-lCviLpVIJvFTX4GktnRP0m5zokGysvJ7L5iJnwQof1WLTste_aKBEOvJbQGIooLUe-KllHmTr3stpvz6ZIzvmZma4_BRE9aVJ0WYYvHZaLCRWmaalgVpp2RVhCmvRUYI7FRNvCdRlIDY-sOACcFxxJvxCAHyu1GHxIEDeKIMoTlowbHEEHDZU7jEZeG9wq5jYLnCBnfeqfc-fdLwserUM8cEM-I1rDy6u1IIgJm1_OpZ9zDGClqPuKxK7NgO3FrUwY0mkGjRQQ\",\"n\":\"pQJJDKGsMmjUnmK5ScLjLLeDrlzO2OM4aVPjizBXCe6gf4KSUjti00vSUqDpN6V9XLG7sjHaMZbrzIe6rvLg1ZThM-wRgdOT1zgg-agz7chJ4UP7cA0y7R7l53kfxm3QheG4LH_iZdCla8kG4VWFBXjMN95dkuN5biZnU_Rs3ybweBAeGwaBBY_JvYj87wx7PcxOtbuQB6_HwL_w_fM-nOc0f6loA6ahhBzc9Ipmxcr4yF8QUfLLHyqp-_k2pmXwKrX9Rl-Av6S8DgYhDJ09Bcrs6TmZj4gc39a9lHBmsN3IYHXhnd5ve0zosxhQ9XaLWoqQufJj3uTudd1xmmsh5Q\",\"e\":\"AQAB\",\"alg\":\"RS256\",\"use\":\"sig\",\"kid\":\"352b1a80-afab-41c4-9bfd-831bf37ccf62\",\"kty\":\"RSA\"},\"privateKey\":\"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIIEowIBAAKCAQEApQJJDKGsMmjUnmK5ScLjLLeDrlzO2OM4aVPjizBXCe6gf4KS\\r\\nUjti00vSUqDpN6V9XLG7sjHaMZbrzIe6rvLg1ZThM+wRgdOT1zgg+agz7chJ4UP7\\r\\ncA0y7R7l53kfxm3QheG4LH/iZdCla8kG4VWFBXjMN95dkuN5biZnU/Rs3ybweBAe\\r\\nGwaBBY/JvYj87wx7PcxOtbuQB6/HwL/w/fM+nOc0f6loA6ahhBzc9Ipmxcr4yF8Q\\r\\nUfLLHyqp+/k2pmXwKrX9Rl+Av6S8DgYhDJ09Bcrs6TmZj4gc39a9lHBmsN3IYHXh\\r\\nnd5ve0zosxhQ9XaLWoqQufJj3uTudd1xmmsh5QIDAQABAoIBADyHxxZMJGfljsF/\\r\\nQ6ssQ7u+oh6PSw3C5Im2zUzc8cDh+Zxs4JIr2MfcE45eGs9f9MnRJSJsKTdxvpQr\\r\\n4i6VSCbxU1+BpLZ0T9Juc6JBsrLyey+YiZ8EKH9Vi07LXv2igRDryW0BiKKC1Hvi\\r\\npZR5k697Lab8+mSM75mZmuPwURPWlSdFmGLx2WiwkVpmmpYFaadkVYQpr0VGCOxU\\r\\nTbwnUZSA2PrDgAnBccSb8QgB8rtRh8SBA3iiDKE5aMGxxBBw2VO4xGXhvcKuY2C5\\r\\nwgZ33qn3Pn3S8LHq1DPHBDPiNaw8urtSCICZtfzqWfcwxgpaj7isSuzYDtxa1MGN\\r\\nJpBo0UECgYEA0Id1Pslw5vOwGEcDB8W36oaQUUN63OmfavSDmtQJx9+nRl2dibyx\\r\\nlRHUK1b3zdrSRnHH3nXusxvc7JWrDPoNr/IGRDyPFZoq/JsmTkL+UoGb0hAYw444\\r\\n764AEEMUkmg49BCze+I1Fuwie4F3uTMbC279LkozS+6Nx0MCU6VivRUCgYEAypKU\\r\\n5DuHZJvV8FI+j01X7wVPIFYIOegCTe27vrHnMBli7TXxeQoV3JS5Zq7H4pTHqNQr\\r\\nn8baF+oGFiHcrIT9J9dLYYWyb62apqhp1I2Fmm5QIa8Kd/hORShvA6rYF0zuUJbi\\r\\nDqSgZ9VIRoYCNHX4MPLTNfpIhqAWDsyGavYCJZECgYAFWHOY+HD8eqK4/JkHSfo8\\r\\n+NYaPzCXGSYNB9eX0Hevt/wBwcSYE046FArsUX5ouINLav9EpKFJ1h0Ds5J+8qoH\\r\\nKJ0ggqzoUNtpPlDtEKqUUt47tE3uNWcgPcWipRWR6zoKh6MSOepCfCsmH1uCU90N\\r\\nnfq/hQdrmuHnicA1hLfTQQKBgQC2ZESrOu4tKCL4vxSU8o66J42XD99YRA3PHL5u\\r\\ndMA0DqeD7Y397ZbBhSdpzPUsjck3udGNiv3TimLwioymyRcnSDIXHMoMw8L7S6f+\\r\\nOW6SHcEIkxJZ8riGjGFoa+slD5+D8FaZ2KCU3PS2ivJxScauS/TgJPooPPufV4ev\\r\\nxtEoAQKBgGNSvmsxEHrtEMv3++eHNJJaoaHHQsu95CSCQ2hwoFVY14Fr8uD7/Rey\\r\\nYEI8Ac/e1IfglAnGnNJsqt0+iDk+JsyePrn2QyNq86oZgVm/W2oR7aRRpVmCUk2l\\r\\n6M15FKNFH3ZhDxL7yQq6hQLasGU3MW8lxG1gIYXoYy+F0mKtPYy3\\r\\n-----END RSA PRIVATE KEY-----\\r\\n\",\"publicKeyJWK\":{\"n\":\"pQJJDKGsMmjUnmK5ScLjLLeDrlzO2OM4aVPjizBXCe6gf4KSUjti00vSUqDpN6V9XLG7sjHaMZbrzIe6rvLg1ZThM-wRgdOT1zgg-agz7chJ4UP7cA0y7R7l53kfxm3QheG4LH_iZdCla8kG4VWFBXjMN95dkuN5biZnU_Rs3ybweBAeGwaBBY_JvYj87wx7PcxOtbuQB6_HwL_w_fM-nOc0f6loA6ahhBzc9Ipmxcr4yF8QUfLLHyqp-_k2pmXwKrX9Rl-Av6S8DgYhDJ09Bcrs6TmZj4gc39a9lHBmsN3IYHXhnd5ve0zosxhQ9XaLWoqQufJj3uTudd1xmmsh5Q\",\"e\":\"AQAB\",\"alg\":\"RS256\",\"use\":\"sig\",\"kid\":\"352b1a80-afab-41c4-9bfd-831bf37ccf62\",\"kty\":\"RSA\"},\"publicKey\":\"-----BEGIN PUBLIC KEY-----\\r\\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApQJJDKGsMmjUnmK5ScLj\\r\\nLLeDrlzO2OM4aVPjizBXCe6gf4KSUjti00vSUqDpN6V9XLG7sjHaMZbrzIe6rvLg\\r\\n1ZThM+wRgdOT1zgg+agz7chJ4UP7cA0y7R7l53kfxm3QheG4LH/iZdCla8kG4VWF\\r\\nBXjMN95dkuN5biZnU/Rs3ybweBAeGwaBBY/JvYj87wx7PcxOtbuQB6/HwL/w/fM+\\r\\nnOc0f6loA6ahhBzc9Ipmxcr4yF8QUfLLHyqp+/k2pmXwKrX9Rl+Av6S8DgYhDJ09\\r\\nBcrs6TmZj4gc39a9lHBmsN3IYHXhnd5ve0zosxhQ9XaLWoqQufJj3uTudd1xmmsh\\r\\n5QIDAQAB\\r\\n-----END PUBLIC KEY-----\\r\\n\",\"_id\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"consentTimestamp\":1533207944,\"sensitive\":true,\"policyUrl\":\"https://times.ankh-morpork.xzy/privacy_2017\",\"userAgreeText\":\"I agree this\",\"description\":\"content\",\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"collectionMethod\":\"Web Subscription Form with opt-in for marketing\",\"jurisdiction\":\"DW\",\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\",\"spiCat\":[\"1 - Biographical\",\"7 - Financial\"],\"services\":[{\"updatedTime\":\"2018-08-02T11:05:46.416Z\",\"createdTime\":\"2018-08-02T11:05:46.416Z\",\"className\":\"de.cidaas.core.db.ConsentServices\",\"_id\":\"fccf4911-4f93-45ca-8d7d-d02a0e20f4f9\",\"service\":\"Digital Subscription and News Alerts\",\"purposes\":[{\"updatedTime\":\"2018-08-02T11:05:46.417Z\",\"createdTime\":\"2018-08-02T11:05:46.417Z\",\"className\":\"de.cidaas.core.db.ConsentPurposes\",\"_id\":\"72d091fd-1e74-4a6d-b378-91395ea4f8ce\",\"purpose\":\"To provide contracted services\",\"purposeCategory\":\"2 - Contracted Service\",\"consentType\":\"EXPLICIT\",\"piiCategory\":\"1 - Biographical,2 - Contact,4 - Communications/Social,7 - Financial\",\"primaryPurpose\":true,\"termination\":\"Subscription end date + 1 year\",\"thirdPartyDisclosure\":true,\"thirdPartyName\":\"The Ankh-morpork Deadbeat Debt Collectors Society\"},{\"updatedTime\":\"2018-08-02T11:05:46.417Z\",\"createdTime\":\"2018-08-02T11:05:46.417Z\",\"className\":\"de.cidaas.core.db.ConsentPurposes\",\"_id\":\"a88438d6-bde4-45a9-bf6a-3b1056f63613\",\"purpose\":\"To provide contracted services\",\"purposeCategory\":\"1 - Core Function\",\"consentType\":\"EXPLICIT\",\"piiCategory\":\"1 - Biographical,2 - Contact,4 - Communications/Social,7 - Financial\",\"primaryPurpose\":true,\"termination\":\"Subscription end date + 1 year\",\"thirdPartyDisclosure\":true,\"thirdPartyName\":\"The Ankh-morpork Deadbeat Debt Collectors Society\"}]}],\"piiControllers\":[{\"updatedTime\":\"2018-08-02T11:05:46.416Z\",\"createdTime\":\"2018-08-02T11:05:46.416Z\",\"className\":\"de.cidaas.core.db.PIIControllers\",\"_id\":\"3cecae87-7de6-466b-9cb6-eecc521ff9a9\",\"piiController\":\"Ankh-Morpork Times\",\"contact\":\"William De Worde\",\"address\":{\"updatedTime\":\"2018-08-02T11:05:46.416Z\",\"createdTime\":\"2018-08-02T11:05:46.416Z\",\"className\":\"de.cidaas.core.db.ConsentAddress\",\"_id\":\"b7cfbceb-2760-4187-ac53-3150ff020b82\",\"streetAddress\":\"Gleam Street\",\"addressCountry\":\"DW\"},\"email\":\"william@times.ankh-morpork.xyz\",\"phone\":\"(555) 555-DISC (3429)\"}],\"version\":\"KI-CR-v1.1.0\"}}"}],"_postman_id":"5776a6d5-00a7-4e9f-83e7-e62d5d9e01a1"},{"name":"3. Delete Consent","id":"70f7cd9a-aedd-4f57-973f-35a194e5dffa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/settings?name=Unque Name","description":"<h1 id=\"description\">Description</h1>\n<p>To delete consent by using the name query param.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET, APP_READ, APP_CREATE ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass the <strong>name</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{val: boolean}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","settings"],"host":["{{baseurl}}"],"query":[{"key":"name","value":"Unque Name"}],"variable":[]}},"response":[{"id":"31a8c4cd-a135-4542-bbef-9a50028b525f","name":"3. Delete Consent","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":""},"url":{"raw":"http://localmanagement.cidaas.de/consent-management-srv/settings?name=Unque Name","protocol":"http","host":["localmanagement","cidaas","de"],"path":["consent-management-srv","settings"],"query":[{"key":"name","value":"Unque Name"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"41","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:11:04 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"29-oS3l/ciNgeB0vn3IAwUp9OUSHTo\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":true}"}],"_postman_id":"70f7cd9a-aedd-4f57-973f-35a194e5dffa"},{"name":"4. Get Consents By name","id":"3b237360-fab0-48a0-a5e3-4456569425d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/consent-management-srv/settings?name=Unque Name","description":"<h1 id=\"description\">Description</h1>\n<p>To get consents details by sending query param as a name.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET, APP_READ, APP_CREATE ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass the <strong>name</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentReceiptSettings{\n    _id: string;\n    id: string;\n\n    version: string;\n    jurisdiction: string;\n    consentTimestamp: number;\n    collectionMethod: string;\n    consentReceiptID: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    language: string;\n    piiPrincipalId: string;\n    piiControllers: IPIIControllers[];\n    policyUrl: string;\n    services: IConsentServices[];\n    sensitive: boolean;\n    spiCat: string[];\n\n\n    // non standard\n    status: string;\n    consent_type: string;\n    enabled: boolean;\n    name: string;\n    description: string;\n    userAgreeText: string;\n\n}\n\ninterface IPIIControllers  {\n    _id: string;\n    id: string;\n    piiController: string;\n    onBehalf: boolean;\n    contact: string;\n    address: IConsentAddress;\n    email: boolean;\n    phone: string;\n    piiControllerUrl: string;\n}\n\ninterface IConsentServices {\n    _id: string;\n    id: string;\n    service: string;\n    purposes: IConsentPurposes[];\n\n}\n\n interface IConsentPurposes {\n    _id: string;\n    id: string;\n    purpose: string;\n    consentType: string;\n    purposeCategory: string[];\n    piiCategory: string[];\n    primaryPurpose: boolean;\n    termination: string;\n\n    thirdPartyDisclosure: boolean;\n    thirdPartyName: string;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","settings"],"host":["{{baseurl}}"],"query":[{"key":"name","value":"Unque Name"}],"variable":[]}},"response":[{"id":"54f296da-788e-4981-ab27-f3ec527c12ac","name":"4. Get Consents By name","originalRequest":{"method":"GET","header":[],"url":{"raw":"http://localmanagement.cidaas.de/consent-management-srv/settings?name=Unque Name","protocol":"http","host":["localmanagement","cidaas","de"],"path":["consent-management-srv","settings"],"query":[{"key":"name","value":"Unque Name"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"7025","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:12:39 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1b71-jBnxLw3A5hKgjbVrBHDfGqNf4V0\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"_id\":\"b541752e-e7c3-4c40-9551-590792cb8489\",\"updatedTime\":\"2018-08-02T11:12:16.696Z\",\"createdTime\":\"2018-08-02T11:12:16.696Z\",\"className\":\"de.cidaas.core.db.ConsentReceiptSettings\",\"privateKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"91c97405-48ba-440a-904e-83845d62b8bc\",\"use\":\"sig\",\"alg\":\"RS256\",\"e\":\"AQAB\",\"n\":\"pz-zR5HY80lszLiGpRu6HIKLuAiM1ZE3X8NxV9mgl4KIHPFkvJ99s5UQPn0_Kr_DpjBa1qUpx_mZONyuAIZ3Irp1yatdGTqTwoQrJg0cYuAyBvud_EM33sscxmJ5tiKtvay0m-CprFtHBi5x5B6Dx1esP6ccRYEWD8IIhloED8T_BmViVghvjeywhptzezEAv4cKayDxLpvxVjaPtNhpmxFZAkNKo0xhh8RbyV3FoLNgd7_Mpmh75mGutyqDih5rJKf6k05q4-IWeCgiqO2x2rlJcuJw5KI2Z_OjLSLF2EkNNgyajhCmS9Eg10lNDHW31ZAahGMiBsU2sTvb0ex-bw\",\"d\":\"df7mIF9Qncw2u3SQYhpewtCDfJJjsiVi2OhNpfo_Z8VK_Ih-Vul7SOCo9j1s_F8QzMYewIMEKDb7l_dxt6MmmFTO1zpUU4FVUA3pV042sbeU9AI_YwOVflT0dy5wykRLKZ-YSMVHT_eR81V_Or8gn9pGBx6CPrMk-ncdhpQpe2mMcAwZI-SKFrvzigU-vwun15H2BcrIhyx8xWznwL99W_Fxd68Whxe158fvG-cz62N_XGQ84S0ZZ7nWYde3IPox3i_eanRswk4ay8FB2fkPfAkKqncer9krRiW9cQUy_UsV_j2sXhh5Ef6v5MAHpMBC8m5pQ_gDi_kYTV2sIeSiQQ\",\"p\":\"8H3j0fGatUegxq4fXHphIsMvoBd8jBEDbcC6DXGB-ITLsOIzIhuIP1H5kaoOpiz7kf5zqTU0BuDDm3W2QtAfcj0Tp7LRWoyUYdZzfzvn-0HOqaUc2JCfgWLXn9IVkpuVy4_oUJHyDRvuHEe0O-63eTh4hjlHWju2l77KofLN82E\",\"q\":\"sgixtFvTjZNLin4ut0RB-p1cUUv1VBzXugmrisOG_3jBGyejyC4JhmY9NLRa5n-TRXPQEh2Yb3sODeAzm0lPuzfc5TW6DgoNA6swjqgOFQwWfNCMAzmpibt7gExIGt4OO9hAKx0QUBP3cuYwCWNfg3KOqJgmaHT8VlNDNqEkk88\",\"dp\":\"PQsHV9PmvBrpUWUDKtsZatR2c0Fi6L6syx__Wcg1AFrcxRI1fnPUmpX5LiMnQsDqPj2DKDEL-q70l7JCSCVBxiKAqbF2-G_0ff0MJgCTurASf_ccIlBbXGE1cCjINwVs-VWW11SkRvWO8_izY_8M7SULWq6RUPMVPuE71-2knyE\",\"dq\":\"jEH7NhstxJipZ7dXOHym-jjk1QthgF2kuuUJZy35eeT5RVpqVremO2Lqj04TWwpgzNObtdnpENLCVL4wCgOss9MjzNQR-yOB80T34TuWtJAsWzK1S4ku_tpcRsxR9hDA5_bLPuwLwPqp9LRSXeMTCWzD5SDRCXQ4pA2-oxg6x9M\",\"qi\":\"HFPmfmrUdGxj-W_MKzAmqSRnJ4jv_SIO9rlhS15V_p0czA-PhEMaqw_TJiSWJa-FahtsTuitGQgr45EFYdAoVN1eYIb_NW1Gi_NPxbVQhFrOEYaEVhAK0iRNBCmo0RsKmn6TPXchMx-vLavi4gc_iCDGYdFH9rgtApDb2eTO9xk\"},\"privateKey\":\"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIIEowIBAAKCAQEApz+zR5HY80lszLiGpRu6HIKLuAiM1ZE3X8NxV9mgl4KIHPFk\\r\\nvJ99s5UQPn0/Kr/DpjBa1qUpx/mZONyuAIZ3Irp1yatdGTqTwoQrJg0cYuAyBvud\\r\\n/EM33sscxmJ5tiKtvay0m+CprFtHBi5x5B6Dx1esP6ccRYEWD8IIhloED8T/BmVi\\r\\nVghvjeywhptzezEAv4cKayDxLpvxVjaPtNhpmxFZAkNKo0xhh8RbyV3FoLNgd7/M\\r\\npmh75mGutyqDih5rJKf6k05q4+IWeCgiqO2x2rlJcuJw5KI2Z/OjLSLF2EkNNgya\\r\\njhCmS9Eg10lNDHW31ZAahGMiBsU2sTvb0ex+bwIDAQABAoIBAHX+5iBfUJ3MNrt0\\r\\nkGIaXsLQg3ySY7IlYtjoTaX6P2fFSvyIflbpe0jgqPY9bPxfEMzGHsCDBCg2+5f3\\r\\ncbejJphUztc6VFOBVVAN6VdONrG3lPQCP2MDlX5U9HcucMpESymfmEjFR0/3kfNV\\r\\nfzq/IJ/aRgcegj6zJPp3HYaUKXtpjHAMGSPkiha784oFPr8Lp9eR9gXKyIcsfMVs\\r\\n58C/fVvxcXevFocXtefH7xvnM+tjf1xkPOEtGWe51mHXtyD6Md4v3mp0bMJOGsvB\\r\\nQdn5D3wJCqp3Hq/ZK0YlvXEFMv1LFf49rF4YeRH+r+TAB6TAQvJuaUP4A4v5GE1d\\r\\nrCHkokECgYEA8H3j0fGatUegxq4fXHphIsMvoBd8jBEDbcC6DXGB+ITLsOIzIhuI\\r\\nP1H5kaoOpiz7kf5zqTU0BuDDm3W2QtAfcj0Tp7LRWoyUYdZzfzvn+0HOqaUc2JCf\\r\\ngWLXn9IVkpuVy4/oUJHyDRvuHEe0O+63eTh4hjlHWju2l77KofLN82ECgYEAsgix\\r\\ntFvTjZNLin4ut0RB+p1cUUv1VBzXugmrisOG/3jBGyejyC4JhmY9NLRa5n+TRXPQ\\r\\nEh2Yb3sODeAzm0lPuzfc5TW6DgoNA6swjqgOFQwWfNCMAzmpibt7gExIGt4OO9hA\\r\\nKx0QUBP3cuYwCWNfg3KOqJgmaHT8VlNDNqEkk88CgYA9CwdX0+a8GulRZQMq2xlq\\r\\n1HZzQWLovqzLH/9ZyDUAWtzFEjV+c9SalfkuIydCwOo+PYMoMQv6rvSXskJIJUHG\\r\\nIoCpsXb4b/R9/QwmAJO6sBJ/9xwiUFtcYTVwKMg3BWz5VZbXVKRG9Y7z+LNj/wzt\\r\\nJQtarpFQ8xU+4TvX7aSfIQKBgQCMQfs2Gy3EmKlnt1c4fKb6OOTVC2GAXaS65Qln\\r\\nLfl55PlFWmpWt6Y7YuqPThNbCmDM05u12ekQ0sJUvjAKA6yz0yPM1BH7I4HzRPfh\\r\\nO5a0kCxbMrVLiS7+2lxGzFH2EMDn9ss+7AvA+qn0tFJd4xMJbMPlINEJdDikDb6j\\r\\nGDrH0wKBgBxT5n5q1HRsY/lvzCswJqkkZyeI7/0iDva5YUteVf6dHMwPj4RDGqsP\\r\\n0yYkliWvhWobbE7orRkIK+ORBWHQKFTdXmCG/zVtRovzT8W1UIRazhGGhFYQCtIk\\r\\nTQQpqNEbCpp+kz13ITMfry2r4uIHP4ggxmHRR/a4LQKQ29nkzvcZ\\r\\n-----END RSA PRIVATE KEY-----\\r\\n\",\"publicKeyJWK\":{\"kty\":\"RSA\",\"kid\":\"91c97405-48ba-440a-904e-83845d62b8bc\",\"use\":\"sig\",\"alg\":\"RS256\",\"e\":\"AQAB\",\"n\":\"pz-zR5HY80lszLiGpRu6HIKLuAiM1ZE3X8NxV9mgl4KIHPFkvJ99s5UQPn0_Kr_DpjBa1qUpx_mZONyuAIZ3Irp1yatdGTqTwoQrJg0cYuAyBvud_EM33sscxmJ5tiKtvay0m-CprFtHBi5x5B6Dx1esP6ccRYEWD8IIhloED8T_BmViVghvjeywhptzezEAv4cKayDxLpvxVjaPtNhpmxFZAkNKo0xhh8RbyV3FoLNgd7_Mpmh75mGutyqDih5rJKf6k05q4-IWeCgiqO2x2rlJcuJw5KI2Z_OjLSLF2EkNNgyajhCmS9Eg10lNDHW31ZAahGMiBsU2sTvb0ex-bw\"},\"publicKey\":\"-----BEGIN PUBLIC KEY-----\\r\\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEApz+zR5HY80lszLiGpRu6\\r\\nHIKLuAiM1ZE3X8NxV9mgl4KIHPFkvJ99s5UQPn0/Kr/DpjBa1qUpx/mZONyuAIZ3\\r\\nIrp1yatdGTqTwoQrJg0cYuAyBvud/EM33sscxmJ5tiKtvay0m+CprFtHBi5x5B6D\\r\\nx1esP6ccRYEWD8IIhloED8T/BmViVghvjeywhptzezEAv4cKayDxLpvxVjaPtNhp\\r\\nmxFZAkNKo0xhh8RbyV3FoLNgd7/Mpmh75mGutyqDih5rJKf6k05q4+IWeCgiqO2x\\r\\n2rlJcuJw5KI2Z/OjLSLF2EkNNgyajhCmS9Eg10lNDHW31ZAahGMiBsU2sTvb0ex+\\r\\nbwIDAQAB\\r\\n-----END PUBLIC KEY-----\\r\\n\",\"consentTimestamp\":1533208334,\"sensitive\":true,\"policyUrl\":\"https://times.ankh-morpork.xzy/privacy_2017\",\"userAgreeText\":\"I agree this\",\"description\":\"content\",\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"b541752e-e7c3-4c40-9551-590792cb8489\",\"collectionMethod\":\"Web Subscription Form with opt-in for marketing\",\"jurisdiction\":\"DW\",\"__v\":0,\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\",\"spiCat\":[\"1 - Biographical\",\"7 - Financial\"],\"services\":[{\"updatedTime\":\"2018-08-02T11:12:16.694Z\",\"createdTime\":\"2018-08-02T11:12:16.694Z\",\"className\":\"de.cidaas.core.db.ConsentServices\",\"_id\":\"21778619-11ba-4c39-86ea-aeac6cca82f0\",\"service\":\"Digital Subscription and News Alerts\",\"purposes\":[{\"updatedTime\":\"2018-08-02T11:12:16.695Z\",\"createdTime\":\"2018-08-02T11:12:16.695Z\",\"className\":\"de.cidaas.core.db.ConsentPurposes\",\"_id\":\"27f83337-a48a-453b-9dde-47c63d01aabc\",\"purpose\":\"To provide contracted services\",\"purposeCategory\":\"2 - Contracted Service\",\"consentType\":\"EXPLICIT\",\"piiCategory\":\"1 - Biographical,2 - Contact,4 - Communications/Social,7 - Financial\",\"primaryPurpose\":true,\"termination\":\"Subscription end date + 1 year\",\"thirdPartyDisclosure\":true,\"thirdPartyName\":\"The Ankh-morpork Deadbeat Debt Collectors Society\"},{\"updatedTime\":\"2018-08-02T11:12:16.695Z\",\"createdTime\":\"2018-08-02T11:12:16.695Z\",\"className\":\"de.cidaas.core.db.ConsentPurposes\",\"_id\":\"0774930d-24b9-44a9-917b-6bfe3775bda8\",\"purpose\":\"To provide contracted services\",\"purposeCategory\":\"1 - Core Function\",\"consentType\":\"EXPLICIT\",\"piiCategory\":\"1 - Biographical,2 - Contact,4 - Communications/Social,7 - Financial\",\"primaryPurpose\":true,\"termination\":\"Subscription end date + 1 year\",\"thirdPartyDisclosure\":true,\"thirdPartyName\":\"The Ankh-morpork Deadbeat Debt Collectors Society\"}]}],\"piiControllers\":[{\"updatedTime\":\"2018-08-02T11:12:16.694Z\",\"createdTime\":\"2018-08-02T11:12:16.694Z\",\"className\":\"de.cidaas.core.db.PIIControllers\",\"_id\":\"eddbbc92-e6b4-401c-a684-904f25369dd3\",\"piiController\":\"Ankh-Morpork Times\",\"contact\":\"William De Worde\",\"address\":{\"updatedTime\":\"2018-08-02T11:12:16.694Z\",\"createdTime\":\"2018-08-02T11:12:16.694Z\",\"className\":\"de.cidaas.core.db.ConsentAddress\",\"_id\":\"50a97060-8537-499e-bd92-2ebad65379f0\",\"streetAddress\":\"Gleam Street\",\"addressCountry\":\"DW\"},\"email\":\"william@times.ankh-morpork.xyz\",\"phone\":\"(555) 555-DISC (3429)\"}],\"version\":\"KI-CR-v1.1.0\"}}"}],"_postman_id":"3b237360-fab0-48a0-a5e3-4456569425d4"}],"id":"ed0a4a41-74ad-45e7-95de-88035ff4016b","_postman_id":"ed0a4a41-74ad-45e7-95de-88035ff4016b","description":""}],"id":"f841e7ad-4214-47ae-8445-0f95d844959f","_postman_id":"f841e7ad-4214-47ae-8445-0f95d844959f","description":""},{"name":"V2","item":[{"name":"Groups","item":[{"name":"Create Consent Group","id":"ed372ece-c352-4f0d-b1b1-fb434fc55cbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_name\":\"g1\",\n\t\"description\":\"description\"\n}"},"url":"{{baseurl}}/consent-management-srv/v2/groups","description":"<h1 id=\"description\">Description</h1>\n<p>To create new consent groups .</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentGroup  {\n    _id: string;\n    id: string;\n    group_name: string; // *\n    description: string;\n    enabled: boolean;\n\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> interface IConsentGroup{\n    _id: string;\n    id: string;\n    group_name: string;\n    description: string;\n    enabled: boolean;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","groups"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"8f5f4079-d557-42b0-99a9-6bc7d42d8bde","name":"Create Consent Group","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"group_name\":\"g1\",\n\t\"description\":\"description\"\n}"},"url":"{{baseurl}}/consent-management-srv/v2/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 05 Mar 2019 12:33:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"323"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"143-J2k4aZXM9sStfA5v7itqGL8nNQo\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"enabled\": true,\n        \"className\": \"de.cidaas.core.db.ConsentGroup\",\n        \"_id\": \"fbd7588f-1dc3-4791-981b-64cdf5325fdf\",\n        \"group_name\": \"g1\",\n        \"description\": \"description\",\n        \"createdTime\": \"2019-03-05T11:43:13.559Z\",\n        \"updatedTime\": \"2019-03-05T12:33:12.779Z\",\n        \"__v\": 0,\n        \"id\": \"fbd7588f-1dc3-4791-981b-64cdf5325fdf\"\n    }\n}"}],"_postman_id":"ed372ece-c352-4f0d-b1b1-fb434fc55cbb"},{"name":"Get Only Group Names [Usage in apps]","id":"940915cd-534c-4a51-b6f9-ce6478d71be9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/groups/names/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get the consent group detailsf.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET, APP_READ, APP_CREATE ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code> interface IConsentGroup {\n    _id: string;\n    id: string;\n    group_name: string;\n    description: string;\n    enabled: boolean;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["consent-management-srv","v2","groups","names","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"7e252324-d255-4658-819b-adb0da2a04cb","name":"Get Only Group Names [Usage in apps]","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/groups/names/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 05 Mar 2019 12:33:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"147"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"93-2EW2T4pnAycv0VQO34MCc/ZyYWM\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"fbd7588f-1dc3-4791-981b-64cdf5325fdf\",\n            \"group_name\": \"g1\",\n            \"id\": \"fbd7588f-1dc3-4791-981b-64cdf5325fdf\"\n        }\n    ]\n}"}],"_postman_id":"940915cd-534c-4a51-b6f9-ce6478d71be9"},{"name":"List All Groups","id":"ba29a74c-220f-4b13-9627-68dd6b142a23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/groups/list","description":"<h1 id=\"description\">Description</h1>\n<p>To list all the consent groups.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentGroup  {\n    _id: string;\n    id: string;\n    group_name: string;\n    description: string;\n    enabled: boolean;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["consent-management-srv","v2","groups","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"36793f7c-f109-4276-a20a-b1c432ce92c4","name":"List All Groups","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/groups/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 05 Mar 2019 12:33:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"325"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"145-3gz9VJrsAbBUqeT+QcVYXDQ31hI\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"enabled\": true,\n            \"className\": \"de.cidaas.core.db.ConsentGroup\",\n            \"_id\": \"fbd7588f-1dc3-4791-981b-64cdf5325fdf\",\n            \"group_name\": \"g1\",\n            \"description\": \"description\",\n            \"createdTime\": \"2019-03-05T11:43:13.559Z\",\n            \"updatedTime\": \"2019-03-05T12:33:12.779Z\",\n            \"__v\": 0,\n            \"id\": \"fbd7588f-1dc3-4791-981b-64cdf5325fdf\"\n        }\n    ]\n}"}],"_postman_id":"ba29a74c-220f-4b13-9627-68dd6b142a23"},{"name":"Get One Group detail","id":"59f523d4-6581-4f26-aa2e-f814f7cea24e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/groups/:consent_group_id","description":"<h1 id=\"description\">Description</h1>\n<p>To get particular consent group details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass <strong>consent_group_id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentGroup {\n    _id: string;\n    id: string;\n    group_name: string;\n    description: string;\n    enabled: boolean;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["consent-management-srv","v2","groups",":consent_group_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"9b2de0e7-48ac-4905-8b81-7248e6103b04","type":"string","value":"fbd7588f-1dc3-4791-981b-64cdf5325fdf","key":"consent_group_id"}]}},"response":[{"id":"8b6a7e52-f6e3-4a42-b148-a566550b3945","name":"Get One Group detail","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{baseurl}}/consent-management-srv/v2/groups/:consent_group_id","host":["{{baseurl}}"],"path":["consent-management-srv","v2","groups",":consent_group_id"],"variable":[{"key":"consent_group_id","value":"fbd7588f-1dc3-4791-981b-64cdf5325fdf"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 05 Mar 2019 12:34:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"323"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"143-J2k4aZXM9sStfA5v7itqGL8nNQo\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"enabled\": true,\n        \"className\": \"de.cidaas.core.db.ConsentGroup\",\n        \"_id\": \"fbd7588f-1dc3-4791-981b-64cdf5325fdf\",\n        \"group_name\": \"g1\",\n        \"description\": \"description\",\n        \"createdTime\": \"2019-03-05T11:43:13.559Z\",\n        \"updatedTime\": \"2019-03-05T12:33:12.779Z\",\n        \"__v\": 0,\n        \"id\": \"fbd7588f-1dc3-4791-981b-64cdf5325fdf\"\n    }\n}"}],"_postman_id":"59f523d4-6581-4f26-aa2e-f814f7cea24e"},{"name":"Delete Group","id":"bc7a85ae-4ae2-4ee8-be83-a2e912e32dbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/groups/:consent_group_id","description":"<h1 id=\"description\">Description</h1>\n<p>To delete particular consent group.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass <strong>consent_group_id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{val:boolean}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["consent-management-srv","v2","groups",":consent_group_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"13078601-a5fd-430d-9ec9-3b74b538b0ba","type":"string","value":"fbd7588f-1dc3-4791-981b-64cdf5325fdf","key":"consent_group_id"}]}},"response":[{"id":"e01af699-cdd3-4044-9056-0f9ad9957045","name":"1. List of Consents","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/settings/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:05:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"151-2U0TimjEaTyOQfLNZfoU3HJG6k0\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"sensitive\":true,\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"jurisdiction\":\"DW\",\"services\":[{\"service\":\"Digital Subscription and News Alerts\"}],\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\"}]}"}],"_postman_id":"bc7a85ae-4ae2-4ee8-be83-a2e912e32dbb"}],"id":"ebf613cb-4e5d-4637-a79c-18810aa6f9c9","_postman_id":"ebf613cb-4e5d-4637-a79c-18810aa6f9c9","description":""},{"name":"Consent Instance","item":[{"name":"Create Consent Instance","id":"19692603-7302-4e4c-afd9-8b1fffe70b8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"consent_name\":\"g1\",\n\t\"consent_group_id\":\"fbd7588f-1dc3-4791-981b-64cdf5325fdf\"\n}"},"url":"{{baseurl}}/consent-management-srv/v2/consent/instance","description":"<h1 id=\"description\">Description</h1>\n<p>To create new consent instance.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentInstance{\n    _id: string;\n    id: string;\n    consent_name: string;\n    consent_group_id: string;\n    enabled: boolean;\n\n    action_type: string;\n\n    // view \n    consent_version: IConsentVersion;\n    consent_versions: IConsentVersion[];\n\n\n}\n\ninterface IConsentVersion{\n    _id: string;\n    id: string;\n    version: number;\n    scopes: string[];\n\n    consent_id: string;\n    consentType: string;\n    customField: string;\n\n    required_fields: string[];\n\n\n    // view \n\n    consent_locale: IConsentLocale;\n    consent_locales: IConsentLocale[];\n\n    allowed_fields: any[];\n\n}\n\ninterface IConsentLocale{\n    _id: string;\n    id: string;\n    title: string;\n    url: string;\n    content: string;\n    content_agrement_text: string;\n    locale: string;\n    consent_id: string;\n    consent_version_id: string;\n    consentType: string;\n}\n\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentInstance{\n    _id: string;\n    id: string;\n    consent_name: string;\n    consent_group_id: string;\n    enabled: boolean;\n\n    action_type: string;\n\n    // view \n    consent_version: IConsentVersion;\n    consent_versions: IConsentVersion[];\n\n\n}\n\ninterface IConsentVersion{\n    _id: string;\n    id: string;\n    version: number;\n    scopes: string[];\n\n    consent_id: string;\n    consentType: string;\n    customField: string;\n\n    required_fields: string[];\n\n\n    // view \n\n    consent_locale: IConsentLocale;\n    consent_locales: IConsentLocale[];\n\n    allowed_fields: any[];\n\n}\n\ninterface IConsentLocale{\n    _id: string;\n    id: string;\n    title: string;\n    url: string;\n    content: string;\n    content_agrement_text: string;\n    locale: string;\n    consent_id: string;\n    consent_version_id: string;\n    consentType: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","instance"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1fe3d038-f524-46e3-8ad3-9e18999d33c6","name":"1. List of Consents","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/settings/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:05:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"151-2U0TimjEaTyOQfLNZfoU3HJG6k0\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"sensitive\":true,\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"jurisdiction\":\"DW\",\"services\":[{\"service\":\"Digital Subscription and News Alerts\"}],\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\"}]}"}],"_postman_id":"19692603-7302-4e4c-afd9-8b1fffe70b8d"},{"name":"List Consent Instance By Group Id","id":"2cd59822-277c-45ee-9f5e-982b811e0000","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/consent/instance/:consent_group_id","description":"<h1 id=\"description\">Description</h1>\n<p>To list consent instance by group id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_write\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET, APP_READ, APP_CREATE ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass the <strong>consent_group_id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentInstance{\n    _id: string;\n    id: string;\n    consent_name: string;\n    consent_group_id: string;\n    enabled: boolean;\n\n    action_type: string;\n\n    // view \n    consent_version: IConsentVersion;\n    consent_versions: IConsentVersion[];\n\n\n}\n\ninterface IConsentVersion{\n    _id: string;\n    id: string;\n    version: number;\n    scopes: string[];\n\n    consent_id: string;\n    consentType: string;\n    customField: string;\n\n    required_fields: string[];\n\n\n    // view \n\n    consent_locale: IConsentLocale;\n    consent_locales: IConsentLocale[];\n\n    allowed_fields: any[];\n\n}\n\ninterface IConsentLocale{\n    _id: string;\n    id: string;\n    title: string;\n    url: string;\n    content: string;\n    content_agrement_text: string;\n    locale: string;\n    consent_id: string;\n    consent_version_id: string;\n    consentType: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","instance",":consent_group_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"62e4d513-c941-4fd0-9e9c-1255bf306230","type":"string","value":"fbd7588f-1dc3-4791-981b-64cdf5325fdf","key":"consent_group_id"}]}},"response":[{"id":"d7cb0715-16f7-4420-b39e-4392a3785d91","name":"1. List of Consents","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/settings/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:05:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"151-2U0TimjEaTyOQfLNZfoU3HJG6k0\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"sensitive\":true,\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"jurisdiction\":\"DW\",\"services\":[{\"service\":\"Digital Subscription and News Alerts\"}],\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\"}]}"}],"_postman_id":"2cd59822-277c-45ee-9f5e-982b811e0000"},{"name":"List Only Consent Instance Name By Group Id [usage]","id":"90dc3d76-69d1-4d18-a896-b211f8d42d81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/consent/instance/list/:consent_group_id","description":"<h1 id=\"description\">Description</h1>\n<p>To get only consent instance name details by group id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass the <strong>consent_group_id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentInstance{\n    _id: string;\n    id: string;\n    consent_name: string;\n    consent_group_id: string;\n    enabled: boolean;\n\n    action_type: string;\n\n    // view \n    consent_version: IConsentVersion;\n    consent_versions: IConsentVersion[];\n\n\n}\n\ninterface IConsentVersion{\n    _id: string;\n    id: string;\n    version: number;\n    scopes: string[];\n\n    consent_id: string;\n    consentType: string;\n    customField: string;\n\n    required_fields: string[];\n\n\n    // view \n\n    consent_locale: IConsentLocale;\n    consent_locales: IConsentLocale[];\n\n    allowed_fields: any[];\n\n}\n\ninterface IConsentLocale{\n    _id: string;\n    id: string;\n    title: string;\n    url: string;\n    content: string;\n    content_agrement_text: string;\n    locale: string;\n    consent_id: string;\n    consent_version_id: string;\n    consentType: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","instance","list",":consent_group_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"afd31f92-9508-477b-bce7-cff95c21a78e","type":"string","value":"fbd7588f-1dc3-4791-981b-64cdf5325fdf","key":"consent_group_id"}]}},"response":[{"id":"309b933e-4c2f-477e-8e09-df181345b8b1","name":"1. List of Consents","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/settings/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:05:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"151-2U0TimjEaTyOQfLNZfoU3HJG6k0\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"sensitive\":true,\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"jurisdiction\":\"DW\",\"services\":[{\"service\":\"Digital Subscription and News Alerts\"}],\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\"}]}"}],"_postman_id":"90dc3d76-69d1-4d18-a896-b211f8d42d81"},{"name":"Delete Consent instance","id":"d37f441d-bff8-438d-9328-ca6a5a230e56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/consent/instance/:consent_id","description":"<h1 id=\"description\">Description</h1>\n<p>To delete particular consent instance details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:tenant_consent_read\"\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET ]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass the <strong>consent_group_id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{val:boolean}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","instance",":consent_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"1ddeadbb-601f-4638-a82e-eb6f8fe03859","type":"string","value":"c0f7cdda-ec5b-46c5-af48-4df221e20eab","key":"consent_id"}]}},"response":[{"id":"81c26e08-6b92-4463-b93b-356ae9b1937b","name":"1. List of Consents","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/settings/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:05:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"151-2U0TimjEaTyOQfLNZfoU3HJG6k0\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"sensitive\":true,\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"jurisdiction\":\"DW\",\"services\":[{\"service\":\"Digital Subscription and News Alerts\"}],\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\"}]}"}],"_postman_id":"d37f441d-bff8-438d-9328-ca6a5a230e56"}],"id":"29157b38-4a9a-4e05-b1c7-cb2b4b8cc8b3","_postman_id":"29157b38-4a9a-4e05-b1c7-cb2b4b8cc8b3","description":""},{"name":"Consent Version","item":[{"name":"Create Consent Version","id":"d5c690f4-2f9f-422a-957f-66f60fc44a34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"version\":2,\n\t\"scopes\":[\"email\",\"profile\"],\n    \"consent_id\":\"ac6da9ec-ba76-48be-a08f-7d23721f6215\",\n    \"consent_locale\":{\n    \t\"content\":\"test\",\n    \t\"locale\":\"en-us\"\n    }\n}"},"url":"{{baseurl}}/consent-management-srv/v2/consent/versions","description":"<h1 id=\"description\">Description</h1>\n<p>To create new consent version.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentVersion {\n    _id: string;\n    id: string;\n    version: number; // *\n    scopes: string[];\n\n    consent_id: string; // *\n    consentType: string;\n    customField: string;\n\n    required_fields: string[];\n\n\n    // view \n\n    consent_locale: IConsentLocale; // *\n    consent_locales: IConsentLocale[];\n\n    allowed_fields: any[];\n\n}\n\ninterface IConsentLocale{\n    _id: string;\n    id: string;\n    title: string;\n    url: string;\n    content: string;\n    content_agrement_text: string;\n    locale: string;\n    consent_id: string;\n    consent_version_id: string;\n    consentType: string;\n}\n\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentVersion {\n    _id: string;\n    id: string;\n    version: number;\n    scopes: string[];\n\n    consent_id: string;\n    consentType: string;\n    customField: string;\n\n    required_fields: string[];\n\n\n    // view \n\n    consent_locale: IConsentLocale;\n    consent_locales: IConsentLocale[];\n\n    allowed_fields: any[];\n\n}\n\ninterface IConsentLocale{\n    _id: string;\n    id: string;\n    title: string;\n    url: string;\n    content: string;\n    content_agrement_text: string;\n    locale: string;\n    consent_id: string;\n    consent_version_id: string;\n    consentType: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","versions"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"b0d4a2cf-046a-4ec0-ab75-b877a1bb5b97","name":"1. List of Consents","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/settings/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:05:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"151-2U0TimjEaTyOQfLNZfoU3HJG6k0\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"sensitive\":true,\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"jurisdiction\":\"DW\",\"services\":[{\"service\":\"Digital Subscription and News Alerts\"}],\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\"}]}"}],"_postman_id":"d5c690f4-2f9f-422a-957f-66f60fc44a34"},{"name":"Get Latest Consent Version","id":"94540f4d-7e54-4352-b7ad-94e2a656b7fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/consent/versions/:consent_id?locale=en-us","description":"<h1 id=\"description\">Description</h1>\n<p>To get latest consent version details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\" \"cidaas:tenant_consent_read\",,\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET,APP_READ,APP_CREATE]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass the <strong>consent_id</strong></p>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass the <strong>locale</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentLocale {\n    _id: string;\n    id: string;\n    title: string;\n    url: string;\n    content: string;\n    content_agrement_text: string;\n    locale: string;\n    consent_id: string;\n    consent_version_id: string;\n    consentType: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","versions",":consent_id"],"host":["{{baseurl}}"],"query":[{"key":"locale","value":"en-us"}],"variable":[{"id":"1bc78587-073f-4a6d-9c0e-f6400b516113","type":"string","value":"ac6da9ec-ba76-48be-a08f-7d23721f6215","key":"consent_id"}]}},"response":[{"id":"e4b8c56d-04e0-4431-846d-b8005b23d193","name":"Get Latest Consent Version","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{baseurl}}/consent-management-srv/v2/consent/versions/:consent_id?locale=en-us","host":["{{baseurl}}"],"path":["consent-management-srv","v2","consent","versions",":consent_id"],"query":[{"key":"locale","value":"en-us"}],"variable":[{"key":"consent_id","value":"ac6da9ec-ba76-48be-a08f-7d23721f6215"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 05 Mar 2019 12:23:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"747"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"2eb-+FfZhm5zBjo+6sUYFbPghR5d7lA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"version\": 1,\n        \"scopes\": [\n            \"email\",\n            \"profile\"\n        ],\n        \"className\": \"de.cidaas.core.db.ConsentVersion\",\n        \"_id\": \"d213eb14-7969-425b-ba83-d315e29f2380\",\n        \"consent_id\": \"ac6da9ec-ba76-48be-a08f-7d23721f6215\",\n        \"createdTime\": \"2019-03-05T11:52:55.542Z\",\n        \"updatedTime\": \"2019-03-05T11:55:11.728Z\",\n        \"__v\": 0,\n        \"id\": \"d213eb14-7969-425b-ba83-d315e29f2380\",\n        \"consent_locale\": {\n            \"className\": \"de.cidaas.core.db.ConsentLocale\",\n            \"_id\": \"227d7d9e-f4de-44f1-bc4d-3d90e4d65120\",\n            \"content\": \"test\",\n            \"locale\": \"en-us\",\n            \"consent_id\": \"ac6da9ec-ba76-48be-a08f-7d23721f6215\",\n            \"consent_version_id\": \"d213eb14-7969-425b-ba83-d315e29f2380\",\n            \"createdTime\": \"2019-03-05T11:52:55.549Z\",\n            \"updatedTime\": \"2019-03-05T11:55:11.738Z\",\n            \"__v\": 0,\n            \"id\": \"227d7d9e-f4de-44f1-bc4d-3d90e4d65120\"\n        }\n    }\n}"}],"_postman_id":"94540f4d-7e54-4352-b7ad-94e2a656b7fa"},{"name":"Get Previous Consent Versions","id":"95b2aa2a-824a-476c-bd05-121cba98a34d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/consent/versions/previous/:consent_id","description":"<h1 id=\"description\">Description</h1>\n<p>To get previous consent version details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\" \"cidaas:tenant_consent_read\",,\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass the <strong>consent_id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentVersion{\n    _id: string;\n    id: string;\n    version: number;\n    scopes: string[];\n\n    consent_id: string;\n    consentType: string;\n    customField: string;\n\n    required_fields: string[];\n\n\n    // view \n\n    consent_locale: IConsentLocale;\n    consent_locales: IConsentLocale[];\n\n    allowed_fields: any[];\n\n}\n\ninterface IConsentLocale{\n    _id: string;\n    id: string;\n    title: string;\n    url: string;\n    content: string;\n    content_agrement_text: string;\n    locale: string;\n    consent_id: string;\n    consent_version_id: string;\n    consentType: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","versions","previous",":consent_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"25e5b35c-0185-41da-b861-f76bcb14c3c6","type":"string","value":"ac6da9ec-ba76-48be-a08f-7d23721f6215","key":"consent_id"}]}},"response":[{"id":"f5932b39-a990-4d53-82d6-bc46260f9607","name":"Get Latest Consent Version","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{baseurl}}/consent-management-srv/v2/consent/versions/:consent_id?locale=en-us","host":["{{baseurl}}"],"path":["consent-management-srv","v2","consent","versions",":consent_id"],"query":[{"key":"locale","value":"en-us"}],"variable":[{"key":"consent_id","value":"ac6da9ec-ba76-48be-a08f-7d23721f6215"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 05 Mar 2019 12:23:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"747"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"2eb-+FfZhm5zBjo+6sUYFbPghR5d7lA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"version\": 1,\n        \"scopes\": [\n            \"email\",\n            \"profile\"\n        ],\n        \"className\": \"de.cidaas.core.db.ConsentVersion\",\n        \"_id\": \"d213eb14-7969-425b-ba83-d315e29f2380\",\n        \"consent_id\": \"ac6da9ec-ba76-48be-a08f-7d23721f6215\",\n        \"createdTime\": \"2019-03-05T11:52:55.542Z\",\n        \"updatedTime\": \"2019-03-05T11:55:11.728Z\",\n        \"__v\": 0,\n        \"id\": \"d213eb14-7969-425b-ba83-d315e29f2380\",\n        \"consent_locale\": {\n            \"className\": \"de.cidaas.core.db.ConsentLocale\",\n            \"_id\": \"227d7d9e-f4de-44f1-bc4d-3d90e4d65120\",\n            \"content\": \"test\",\n            \"locale\": \"en-us\",\n            \"consent_id\": \"ac6da9ec-ba76-48be-a08f-7d23721f6215\",\n            \"consent_version_id\": \"d213eb14-7969-425b-ba83-d315e29f2380\",\n            \"createdTime\": \"2019-03-05T11:52:55.549Z\",\n            \"updatedTime\": \"2019-03-05T11:55:11.738Z\",\n            \"__v\": 0,\n            \"id\": \"227d7d9e-f4de-44f1-bc4d-3d90e4d65120\"\n        }\n    }\n}"}],"_postman_id":"95b2aa2a-824a-476c-bd05-121cba98a34d"}],"id":"5a293165-2a16-4608-b64b-7b3591364f16","_postman_id":"5a293165-2a16-4608-b64b-7b3591364f16","description":""},{"name":"Consent Locale","item":[{"name":"Create Consent Locale","id":"682bc150-207b-4f7b-ab5a-73eabe85f091","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"consent_id\":\"ac6da9ec-ba76-48be-a08f-7d23721f6215\",\n    \"consent_version_id\":\"2184909f-282d-4d50-a899-4f6a44526ed6\",\n    \"content\":\"test\",\n    \"locale\":\"en-us\"\n}"},"url":"{{baseurl}}/consent-management-srv/v2/consent/locale","description":"<h1 id=\"description\">Description</h1>\n<p>To create consent based on locale.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentLocale  {\n    _id: string;\n    id: string;\n    title: string;\n    url: string; // *\n    content: string; // *\n    content_agrement_text: string;\n    locale: string; // *\n    consent_id: string; // *\n    consent_version_id: string; // *\n    consentType: string;\n}\n  \n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentLocale {\n    _id: string;\n    id: string;\n    title: string;\n    url: string;\n    content: string;\n    content_agrement_text: string;\n    locale: string;\n    consent_id: string;\n    consent_version_id: string;\n    consentType: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","locale"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"d3e7d6a3-ca6c-4b29-992f-85603756db7f","name":"1. List of Consents","originalRequest":{"method":"GET","header":[],"url":"http://localmanagement.cidaas.de/consent-management-srv/settings/list"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"337","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 11:05:56 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"151-2U0TimjEaTyOQfLNZfoU3HJG6k0\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"c71093b5-92ad-4eb2-a57e-86638697949b","key":"cidaas_sid"},{"expires":"Sat May 25 2019 03:46:04 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"fe2f012e-48e2-4b9a-acf3-81da6cf82633","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"sensitive\":true,\"name\":\"unque name\",\"language\":\"en\",\"consentReceiptID\":\"731ff203-2962-4a0d-a8ce-2188376c8ed6\",\"jurisdiction\":\"DW\",\"services\":[{\"service\":\"Digital Subscription and News Alerts\"}],\"enabled\":true,\"consent_type\":\"LOGIN\",\"status\":\"EDITING\"}]}"}],"_postman_id":"682bc150-207b-4f7b-ab5a-73eabe85f091"},{"name":"Get Consent locale by verison id","id":"db081f16-4edb-457a-ac17-f2eaaad17842","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/consent-management-srv/v2/consent/locale/:consent_version_id?locale=en-us","description":"<h1 id=\"description\">Description</h1>\n<p>To get locale based consent by using version id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\" \"cidaas:tenant_consent_read\",,\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET,APP_READ,APP_CREATE]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass the <strong>consent_version_id</strong></p>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It should pass the <strong>locale</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentLocale {\n    _id: string;\n    id: string;\n    title: string;\n    url: string;\n    content: string;\n    content_agrement_text: string;\n    locale: string;\n    consent_id: string;\n    consent_version_id: string;\n    consentType: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","locale",":consent_version_id"],"host":["{{baseurl}}"],"query":[{"key":"locale","value":"en-us"}],"variable":[{"id":"9c8584e1-0621-4329-b0f9-7cdba6f70045","type":"string","value":"2184909f-282d-4d50-a899-4f6a44526ed6","key":"consent_version_id"}]}},"response":[{"id":"4eca2a33-dce3-409a-b4a1-4782dca5fc9f","name":"Get Latest Consent Version","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{baseurl}}/consent-management-srv/v2/consent/versions/:consent_id?locale=en-us","host":["{{baseurl}}"],"path":["consent-management-srv","v2","consent","versions",":consent_id"],"query":[{"key":"locale","value":"en-us"}],"variable":[{"key":"consent_id","value":"ac6da9ec-ba76-48be-a08f-7d23721f6215"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Tue, 05 Mar 2019 12:23:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"747"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"2eb-+FfZhm5zBjo+6sUYFbPghR5d7lA\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"version\": 1,\n        \"scopes\": [\n            \"email\",\n            \"profile\"\n        ],\n        \"className\": \"de.cidaas.core.db.ConsentVersion\",\n        \"_id\": \"d213eb14-7969-425b-ba83-d315e29f2380\",\n        \"consent_id\": \"ac6da9ec-ba76-48be-a08f-7d23721f6215\",\n        \"createdTime\": \"2019-03-05T11:52:55.542Z\",\n        \"updatedTime\": \"2019-03-05T11:55:11.728Z\",\n        \"__v\": 0,\n        \"id\": \"d213eb14-7969-425b-ba83-d315e29f2380\",\n        \"consent_locale\": {\n            \"className\": \"de.cidaas.core.db.ConsentLocale\",\n            \"_id\": \"227d7d9e-f4de-44f1-bc4d-3d90e4d65120\",\n            \"content\": \"test\",\n            \"locale\": \"en-us\",\n            \"consent_id\": \"ac6da9ec-ba76-48be-a08f-7d23721f6215\",\n            \"consent_version_id\": \"d213eb14-7969-425b-ba83-d315e29f2380\",\n            \"createdTime\": \"2019-03-05T11:52:55.549Z\",\n            \"updatedTime\": \"2019-03-05T11:55:11.738Z\",\n            \"__v\": 0,\n            \"id\": \"227d7d9e-f4de-44f1-bc4d-3d90e4d65120\"\n        }\n    }\n}"}],"_postman_id":"db081f16-4edb-457a-ac17-f2eaaad17842"}],"id":"7e62fbc1-1300-4e99-801c-78822b313cac","_postman_id":"7e62fbc1-1300-4e99-801c-78822b313cac","description":""},{"name":"Usages","item":[{"name":"Get Meta data","id":"d582b88b-f20f-4bd6-9476-eeae7f9b9f57","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/token-srv/prelogin/metadata/:track_id","urlObject":{"path":["token-srv","prelogin","metadata",":track_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"65e3a6a3-3130-475c-b2d1-cf65cf1b2a41","type":"string","value":"","key":"track_id"}]}},"response":[],"_postman_id":"d582b88b-f20f-4bd6-9476-eeae7f9b9f57"},{"name":"Get Public Info","id":"13704f45-3a55-4c72-b64b-dd05b4f11dc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"accept-language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"consent_id\": \"f0e7243e-28a0-47f3-a2d7-96b8c8bf27f5\",\n            \"consent_version_id\": \"c02430d2-fa49-4517-97f1-b7ed7ea59e69\",\n    \"sub\": \"5bdba9d2-0e12-4494-80b3-9d5d5f111a24\"\n}"},"url":"{{baseurl}}/consent-management-srv/v2/consent/usage/public/info","description":"<h1 id=\"description\">Description</h1>\n<p>To get consent public usage details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No scopes are required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentInfoEntity {\n    consent_id: string; // *\n    consent_version_id: string; // *\n    sub: string; // *\n    q: string;\n\n}\n  \n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentPublicInfo {\n    consent_id: string;\n    consent_version_id: string;\n    consent_name: string;\n    sub: string;\n    content: string;\n    title: string;\n    url: string;\n    content_agrement_text: string;\n    scopes: IFlatScope[];\n    track_id?: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR </p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","usage","public","info"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"4007ca3c-6615-4f05-b1dd-9e17ac0279d7","name":"Get Public Info","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"accept-language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"consent_id\": \"f0e7243e-28a0-47f3-a2d7-96b8c8bf27f5\",\n            \"consent_version_id\": \"c02430d2-fa49-4517-97f1-b7ed7ea59e69\",\n    \"sub\": \"5bdba9d2-0e12-4494-80b3-9d5d5f111a24\"\n}"},"url":"{{baseurl}}/consent-management-srv/v2/consent/usage/public/info"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 09 Mar 2019 09:37:44 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"232"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"e8-doqW+5K+5vB4tXz8wnx302KOCKw\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"consent_id\": \"f0e7243e-28a0-47f3-a2d7-96b8c8bf27f5\",\n        \"consent_version_id\": \"c02430d2-fa49-4517-97f1-b7ed7ea59e69\",\n        \"content\": \"test\",\n        \"sub\": \"5bdba9d2-0e12-4494-80b3-9d5d5f111a24\",\n        \"consent_name\": \"c1\"\n    }\n}"}],"_postman_id":"13704f45-3a55-4c72-b64b-dd05b4f11dc1"},{"name":"Accept Consent","id":"78f0a3e7-d3dc-4800-965a-f20367c92d7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"accept-language","type":"text","value":"en"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"95a8cb80-3789-486e-b417-d194a85abe5e\",\n    \"consent_id\": \"f0e7243e-28a0-47f3-a2d7-96b8c8bf27f5\",\n    \"consent_verison_id\": \"c02430d2-fa49-4517-97f1-b7ed7ea59e69\",\n    \"sub\": \"5bdba9d2-0e12-4494-80b3-9d5d5f111a24\"\n}"},"url":"{{baseurl}}/consent-management-srv/v2/consent/usage/accept","description":"<h1 id=\"description\">Description</h1>\n<p>To accept the consent by use this call.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No scopes are required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentAcceptEntity {\n    client_id: string; // *\n    consent_id: string; // *\n    consent_version_id: string; // *\n    sub: string; // *\n    scopes: string[];\n    matcher: any;\n    field_key: string;\n    accepted_fields: string[];\n    accepted_by: string;\n    skipped: boolean;\n    action_type: string;\n\n    q: string;\n}\n  \n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentVerifyResponseEntity {\n    consent_id: string;\n    accepted: boolean;\n    consent_version_id: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","usage","accept"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"0bb645e9-5da9-4f20-aef6-05445e904010","name":"Accept Consent","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"accept-language","type":"text","value":"en"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"95a8cb80-3789-486e-b417-d194a85abe5e\",\n    \"consent_id\": \"f0e7243e-28a0-47f3-a2d7-96b8c8bf27f5\",\n    \"consent_verison_id\": \"c02430d2-fa49-4517-97f1-b7ed7ea59e69\",\n    \"sub\": \"5bdba9d2-0e12-4494-80b3-9d5d5f111a24\"\n}"},"url":"{{baseurl}}/consent-management-srv/v2/consent/usage/accept"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Sat, 09 Mar 2019 09:39:23 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"166"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"a6-E5wfrtUvT6NN2JmM6ecOh50+8zo\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"consent_id\": \"f0e7243e-28a0-47f3-a2d7-96b8c8bf27f5\",\n        \"consent_version_id\": \"c02430d2-fa49-4517-97f1-b7ed7ea59e69\",\n        \"accepted\": true\n    }\n}"}],"_postman_id":"78f0a3e7-d3dc-4800-965a-f20367c92d7d"},{"name":"Verify Consent","id":"6c7d41e3-af14-48f1-a211-9f20530ec903","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"accept-language","type":"text","value":"en"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"\",\n    \"consent_refs\": [\"f0e7243e-28a0-47f3-a2d7-96b8c8bf27f5\"],\n    \"sub\": \"5bdba9d2-0e12-4494-80b3-9d5d5f111a24\"\n}"},"url":"{{baseurl}}/consent-management-srv/v2/consent/usage/verify/bysub","description":"<h1 id=\"description\">Description</h1>\n<p>To verify the particular consent details by using sub .</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentVerifyEntity {\n    client_id: string; // *\n    consent_refs: string[]; // *\n    sub: string;\n    scopes: string[];\n    matcher: any;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentVerifyResponseEntity {\n    consent_id: string;\n    accepted: boolean;\n    consent_version_id: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","usage","verify","bysub"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6c7d41e3-af14-48f1-a211-9f20530ec903"}],"id":"5c5b1c88-e934-4a5a-814e-be2e8715d9de","_postman_id":"5c5b1c88-e934-4a5a-814e-be2e8715d9de","description":""},{"name":"Accepted Consent","item":[{"name":"Get Accepted Consent By Version Id","id":"539128d1-5d39-41b4-bd24-8dbd8eade0b6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/consent-management-srv/v2/consent/usage/acceptted/list/:consent_version_id","description":"<h1 id=\"description\">Description</h1>\n<p>To get accepted consent details by passing consent version id.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET,APP_READ,APP_CREATE]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass the <strong>consent_version_id</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IConsentAcceptedMap  {\n    _id: string;\n    id: string;\n    consent_id: string;\n    consent_version_id: string;\n    client_id: string;\n    scopes: string[];\n    sub: string;\n\n    matcher: any;\n\n\n    given_name: string;\n    family_name: string;\n\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","usage","acceptted","list",":consent_version_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"883c78a3-40d2-4a72-b219-ecad80f574f5","type":"string","value":"ac59fb82-461c-485b-9e12-460fc343216a","key":"consent_version_id"}]}},"response":[],"_postman_id":"539128d1-5d39-41b4-bd24-8dbd8eade0b6"},{"name":"Get Accepted Consent By User Sub","id":"b28d8023-e30b-48f3-98ea-0d8d0050ea41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/consent-management-srv/v2/consent/usage/users/acceptted/list/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>To get accepted consent details by user sub.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [ \"cidaas:admin_write\",\"cidaas:admin_read\",\"cidaas:tenant_consent_write\",\"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET,APP_READ,APP_CREATE]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"path-param\">Path Param</h2>\n<p>It should pass the <strong>sub</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IUserAcceptedConsents {\n    sub: string;\n    client_id: string;\n    consent_id: string;\n    consent_version_id: string;\n    createdTime: string;\n    version: string;\n    consent_name: string;\n    consent_group_id: string;\n    consent_group_name: string;\n\n    consent_group_ids: string[];\n    consent_version_ids: string[];\n    consent_ids: string[];\n    client_ids: string[];\n    action_type: string;\n    skipped: boolean;\n    skip: number;\n    take: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["consent-management-srv","v2","consent","usage","users","acceptted","list",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"70ae7140-f7a4-4b4f-8c52-e77c8093677d","type":"string","value":"sub","key":"sub"}]}},"response":[],"_postman_id":"b28d8023-e30b-48f3-98ea-0d8d0050ea41"}],"id":"3414cc9d-38b2-4b69-811e-40f523d385a1","_postman_id":"3414cc9d-38b2-4b69-811e-40f523d385a1","description":""}],"id":"a8b28b16-0b88-439b-8527-d358a28f74c3","_postman_id":"a8b28b16-0b88-439b-8527-d358a28f74c3","description":""}],"id":"d7f238e3-a941-457c-a3a2-d5fc89219ce1","_postman_id":"d7f238e3-a941-457c-a3a2-d5fc89219ce1","description":""},{"name":"Communication Provider","item":[{"name":"SMS","item":[{"name":"Get SMS Provider List","id":"9246e179-ee16-4a8f-aaeb-04a6b8d64a5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36","type":"text"}],"url":"{{baseurl}}/settings-srv/provider/sms/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get all sms provider details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","provider","sms","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9246e179-ee16-4a8f-aaeb-04a6b8d64a5a"},{"name":"Get SMS Provider by Vendor","id":"bb23b401-ca9a-45c5-aa45-7532d9dd1576","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/settings-srv/provider/sms/:vendor","description":"<h1 id=\"description\">Description</h1>\n<p>To get vendor fields details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the <strong>provider</strong>.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISMSConfig {\n    from?: string;\n    accountSid?: string;\n    authToken?: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","provider","sms",":vendor"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"","key":"vendor"}]}},"response":[],"_postman_id":"bb23b401-ca9a-45c5-aa45-7532d9dd1576"},{"name":"Get SMS Provider Config List [Deprecated]","id":"0c247b0a-46cf-49e3-be03-1f96ea7c366a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/settings-srv/sms/configs/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured SMS provider list.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the tenantKey.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISMSConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n    dailCodes: string[];\n    isDefault: boolean;\n    owner: string;\n    enabled: boolean;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","sms","configs","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c247b0a-46cf-49e3-be03-1f96ea7c366a"},{"name":"Get SMS Provider Config List Lite","id":"79e02311-ad8f-4bbc-b260-760350a759e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/sms/configs/list/lite","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured SMS provider list lite.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IConfiguredProviderEntity[];\n}\ninterface IConfiguredProviderEntity {\n    id: string;\n    name: string;\n    display_name: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","sms","configs","list","lite"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"79e02311-ad8f-4bbc-b260-760350a759e2"},{"name":"Get by Name","id":"c453fdb6-274c-4768-8db6-c327d703d3ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/sms/find/byname?name=SYSTEM","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured SMS provider list.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the tenantKey.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISMSConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n    dailCodes: string[];\n    isDefault: boolean;\n    owner: string;\n    enabled: boolean;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","sms","find","byname"],"host":["{{baseurl}}"],"query":[{"key":"name","value":"SYSTEM"}],"variable":[]}},"response":[],"_postman_id":"c453fdb6-274c-4768-8db6-c327d703d3ba"},{"name":"Delete by Id","id":"53e02eb1-1d92-46b9-8a9c-7fcea346fad3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/sms/:id","description":"<h1 id=\"description\">Description</h1>\n<p>Delete by id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the id.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IDeletedEntity {\n    deleted:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","sms",":id"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"53e02eb1-1d92-46b9-8a9c-7fcea346fad3"},{"name":"Create SMS Provider","id":"bffe1f65-9cfd-4c6c-a90e-537623163605","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"vimalemail\",\n    \"vendor\": \"SMTP\",\n    \"key\": \"vimalprakashts@gmail.com\",\n    \"secret\": \"wlwwuelwffmqrnqn\"\n   \n}"},"url":"{{baseurl}}/settings-srv/sms/save","description":"<h1 id=\"description\">Description</h1>\n<p>To save the vendor fields details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISMSConfig {\n    _id: string;\n    id: string;\n    tenantKey: string; // *\n    vendor: string; // *\n    key: string;\n    secret: string; // *\n    from: string; // *\n    dailCodes: string[];\n    isDefault: boolean;\n    owner: string;\n    enabled: boolean;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISMSConfig{\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n    dailCodes: string[];\n    isDefault: boolean;\n    owner: string;\n    enabled: boolean;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","sms","save"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bffe1f65-9cfd-4c6c-a90e-537623163605"},{"name":"Change state of vendor [Deprecated]","id":"34c98c60-319f-4e5c-9551-be6da4db6f27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/settings-srv/sms/change/{{vendorId}}","description":"<h1 id=\"description\">Description</h1>\n<p>To change the state of the vendor enable or disable.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the <strong>tenantKey</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Request Entity Not Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{data:true}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","sms","change","{{vendorId}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"34c98c60-319f-4e5c-9551-be6da4db6f27"}],"id":"59b47bf7-3255-4c3f-9f77-7db75cc1f807","_postman_id":"59b47bf7-3255-4c3f-9f77-7db75cc1f807","description":""},{"name":"EMAIL","item":[{"name":"Get EMAIL Provider List","id":"88bdf569-785b-450a-a794-b217cd1dd9f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36","type":"text"}],"url":"{{baseurl}}/settings-srv/provider/email/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get all EMAIL provider details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IEmailConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    replyTo: string;\n    active: boolean;\n    owner: string;\n    smtp_host_name: string;\n    smtp_port: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","provider","email","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"88bdf569-785b-450a-a794-b217cd1dd9f2"},{"name":"Get EMAIL Provider Config List  [Deprecated]","id":"56d1f76f-3ced-4ba5-a690-41278525115a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/settings-srv/email/configs/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured EMAIL provider list.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the tenantKey.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IEmailConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    replyTo: string;\n    active: boolean;\n    owner: string;\n    smtp_host_name: string;\n    smtp_port: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","email","configs","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"56d1f76f-3ced-4ba5-a690-41278525115a"},{"name":"Get EMAIL Provider by Vendor  [Deprecated]","id":"0a463b18-a344-4d61-abc1-40eef0144e8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36","type":"text"}],"url":"{{baseurl}}/settings-srv/provider/email/SENDGRID","description":"<h1 id=\"description\">Description</h1>\n<p>To get vendor fields details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the <strong>vendor</strong>.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IEmailConfig{\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    replyTo: string;\n    active: boolean;\n    owner: string;\n    smtp_host_name: string;\n    smtp_port: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","provider","email","SENDGRID"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a463b18-a344-4d61-abc1-40eef0144e8e"},{"name":"Create EMAIL Provider","id":"fef3ad9f-cc46-4a51-87e0-f8a0b922100b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"vimalemail\",\n    \"vendor\": \"SMTP\",\n    \"replyTo\":\"vimalprakashts@gmail.com\",\n    \"key\": \"vimalprakashts@gmail.com\",\n    \"secret\": \"wlwwuelwffmqrnqn\",\n    \"smtp_host_name\": \"smtp.gmail.com\",\n    \"smtp_port\": \"465\"\n}"},"url":"{{baseurl}}/settings-srv/email/save","description":"<h1 id=\"description\">Description</h1>\n<p>To save the vendor fields details</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IEmailConfig {\n    _id: string;\n    id: string;\n    tenantKey: string; // *\n    vendor: string; // *\n    key: string;\n    secret: string; // *\n    replyTo: string; // *\n    active: boolean;\n    owner: string;\n    smtp_host_name: string;\n    smtp_port: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IEmailConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    replyTo: string;\n    active: boolean;\n    owner: string;\n    smtp_host_name: string;\n    smtp_port: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","email","save"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fef3ad9f-cc46-4a51-87e0-f8a0b922100b"},{"name":"Change state of vendor  [Deprecated]","id":"03763eb3-fb09-4ad0-a45f-2d688887a7df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/settings-srv/email/change/{{vendorId}}","description":"<h1 id=\"description\">Description</h1>\n<p>To change the state of the vendor enable or disable</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass <strong>vendorid</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Request Entity Not Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{data:true}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","email","change","{{vendorId}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"03763eb3-fb09-4ad0-a45f-2d688887a7df"},{"name":"Get Email Provider Config List Lite","id":"6f8ba34b-46b7-43eb-857e-524c334d720e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/email/configs/list/lite","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured Email provider list lite.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IConfiguredProviderEntity[];\n}\ninterface IConfiguredProviderEntity {\n    id: string;\n    name: string;\n    display_name: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","email","configs","list","lite"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f8ba34b-46b7-43eb-857e-524c334d720e"},{"name":"Get by Name","id":"33abd05a-187c-4cf6-896b-e5a1f43af3a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/email/find/byname?name=vimalemail","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured SMS provider list.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the tenantKey.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISMSConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n    dailCodes: string[];\n    isDefault: boolean;\n    owner: string;\n    enabled: boolean;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","email","find","byname"],"host":["{{baseurl}}"],"query":[{"key":"name","value":"vimalemail"}],"variable":[]}},"response":[],"_postman_id":"33abd05a-187c-4cf6-896b-e5a1f43af3a1"},{"name":"Delete by Id","id":"192ccfe6-e686-42c3-afb5-aa7dc3c5e0b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/email/:id","description":"<h1 id=\"description\">Description</h1>\n<p>Delete by id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the id.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IDeletedEntity {\n    deleted:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","email",":id"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"192ccfe6-e686-42c3-afb5-aa7dc3c5e0b0"}],"id":"37046c92-174a-47c3-b5c7-3ac81f81ef96","_postman_id":"37046c92-174a-47c3-b5c7-3ac81f81ef96","description":""},{"name":"IVR","item":[{"name":"Get IVR Provider List","id":"a7b627b2-e00a-4494-8008-7dccb8e96a2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/settings-srv/provider/ivr/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get all IVR provider details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IIVRConfig  {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n    dailCodes: string[];\n    isDefault: boolean;\n    enabled: boolean;\n    owner: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","provider","ivr","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a7b627b2-e00a-4494-8008-7dccb8e96a2f"},{"name":"Get IVR Provider Config List  [Deprecated]","id":"41ac6f5e-c732-42c3-ac54-797abdf3fbd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/settings-srv/ivr/configs/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured IVR provider list.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IIVRConfig{\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n    dailCodes: string[];\n    isDefault: boolean;\n    enabled: boolean;\n    owner: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","ivr","configs","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"41ac6f5e-c732-42c3-ac54-797abdf3fbd5"},{"name":"Get IVR Provider by Vendor  [Deprecated]","id":"bc881472-0728-4854-ae20-f80201d6f18d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/settings-srv/provider/ivr/{{vendor}}","description":"<h1 id=\"description\">Description</h1>\n<p>To get vendor fields details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the <strong>vendor</strong>.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IIVRConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n    dailCodes: string[];\n    isDefault: boolean;\n    enabled: boolean;\n    owner: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","provider","ivr","{{vendor}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc881472-0728-4854-ae20-f80201d6f18d"},{"name":"Create IVR Provider","id":"3a3d8d5f-a611-4aea-a848-91e184d37c5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/settings-srv/ivr/save","description":"<h1 id=\"description\">Description</h1>\n<p>To save the vendor fields details</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IIVRConfig{\n    _id: string;\n    id: string;\n    tenantKey: string; // *\n    vendor: string; // *\n    key: string;\n    secret: string; // *\n    from: string; // *\n    dailCodes: string[];\n    isDefault: boolean;\n    enabled: boolean;\n    owner: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IIVRConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n    dailCodes: string[];\n    isDefault: boolean;\n    enabled: boolean;\n    owner: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","ivr","save"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3a3d8d5f-a611-4aea-a848-91e184d37c5f"},{"name":"Change state of vendor  [Deprecated]","id":"25f1544d-a5e9-4f65-9be9-91cc96a0aad5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/settings-srv/ivr/change/{{vendorId}}","description":"<h1 id=\"description\">Description</h1>\n<p>To change the state of the vendor enable or disable</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the <strong>vendorid</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Request Entity Not Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{data:true}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","ivr","change","{{vendorId}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"25f1544d-a5e9-4f65-9be9-91cc96a0aad5"},{"name":"Get IVR Provider Config List Lite","id":"3514b902-671c-4ac3-bc6d-461df23909ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/ivr/configs/list/lite","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured IVR provider list lite.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IConfiguredProviderEntity[];\n}\ninterface IConfiguredProviderEntity {\n    id: string;\n    name: string;\n    display_name: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","ivr","configs","list","lite"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3514b902-671c-4ac3-bc6d-461df23909ab"},{"name":"Get by Name","id":"cefb53a4-2ad5-4f10-b079-3d52e6b0a9e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/ivr/find/byname?name=SYSTEM","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured SMS provider list.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the tenantKey.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISMSConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n    dailCodes: string[];\n    isDefault: boolean;\n    owner: string;\n    enabled: boolean;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","ivr","find","byname"],"host":["{{baseurl}}"],"query":[{"key":"name","value":"SYSTEM"}],"variable":[]}},"response":[],"_postman_id":"cefb53a4-2ad5-4f10-b079-3d52e6b0a9e8"},{"name":"Delete by Id","id":"12cf8fa5-077c-454e-b1f7-2266e2258c0c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/ivr/:id","description":"<h1 id=\"description\">Description</h1>\n<p>Delete by id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the id.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IDeletedEntity {\n    deleted:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","ivr",":id"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"12cf8fa5-077c-454e-b1f7-2266e2258c0c"}],"id":"6ac3d411-4a07-44e5-99c0-d7c74c01e955","_postman_id":"6ac3d411-4a07-44e5-99c0-d7c74c01e955","description":""},{"name":"PUSH","item":[{"name":"Get PUSH Provider List","id":"09b2dad9-3765-4127-ae90-63d11c5dd36e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/settings-srv/provider/push/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get all PUSH provider details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IPushConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    active: boolean;\n    owner: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","provider","push","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"09b2dad9-3765-4127-ae90-63d11c5dd36e"},{"name":"Get PUSH Provider Config List  [Deprecated]","id":"a13c7721-0af7-4bf7-8a9a-1ec65254b911","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/settings-srv/push/configs/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured PUSH provider list.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IPushConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    active: boolean;\n    owner: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","push","configs","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a13c7721-0af7-4bf7-8a9a-1ec65254b911"},{"name":"Get PUSH Provider by Vendor  [Deprecated]","id":"bb351bde-47ba-4e4c-95a8-94eacebce2f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/settings-srv/provider/push/{{vendor}}","description":"<h1 id=\"description\">Description</h1>\n<p>To get vendor fields details.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the <strong>vendor</strong>.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IPushConfig{\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    active: boolean;\n    owner: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","provider","push","{{vendor}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bb351bde-47ba-4e4c-95a8-94eacebce2f5"},{"name":"Create PUSH Provider","id":"1b391c6f-8c3e-45d6-9494-64a0afda1669","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/settings-srv/push/save","description":"<h1 id=\"description\">Description</h1>\n<p>To save the vendor fields details</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IPushConfig {\n    _id: string;\n    id: string; // *\n    tenantKey: string; // *\n    vendor: string; // *\n    key: string;\n    secret: string; // *\n    active: boolean;\n    owner: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IPushConfig  {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    active: boolean;\n    owner: string;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","push","save"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1b391c6f-8c3e-45d6-9494-64a0afda1669"},{"name":"Change state of vendor  [Deprecated]","id":"8feb2528-f736-420d-b6f7-79579c0495d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/settings-srv/push/change/{{vendorId}}","description":"<h1 id=\"description\">Description</h1>\n<p>To change the state of the vendor enable or disable</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass <strong>vendorid</strong></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Request Entity Not Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{data:true}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n","urlObject":{"path":["settings-srv","push","change","{{vendorId}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8feb2528-f736-420d-b6f7-79579c0495d2"},{"name":"Get Push Provider Config List Lite","id":"53bae745-0188-43c3-a110-67ef0cb45102","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/push/configs/list/lite","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured Push provider list lite.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IConfiguredProviderEntity[];\n}\ninterface IConfiguredProviderEntity {\n    id: string;\n    name: string;\n    display_name: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","push","configs","list","lite"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"53bae745-0188-43c3-a110-67ef0cb45102"},{"name":"Get by Name","id":"dd340af0-671b-41bb-8b0a-6d4eda9d537c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/push/find/byname?name=SYSTEM","description":"<h1 id=\"description\">Description</h1>\n<p>To get configured SMS provider list.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_writ]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the tenantKey.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface ISMSConfig {\n    _id: string;\n    id: string;\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n    dailCodes: string[];\n    isDefault: boolean;\n    owner: string;\n    enabled: boolean;\n\n    className: string,\n    createdTime: Date,\n    updatedTime: Date\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","push","find","byname"],"host":["{{baseurl}}"],"query":[{"key":"name","value":"SYSTEM"}],"variable":[]}},"response":[],"_postman_id":"dd340af0-671b-41bb-8b0a-6d4eda9d537c"},{"name":"Delete by Id","id":"57b7f486-860d-44de-8533-ea517e039495","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"url":"{{baseurl}}/settings-srv/push/:id","description":"<h1 id=\"description\">Description</h1>\n<p>Delete by id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas_admin_read\",\"cidaas:admin_write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>                groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [ADMIN, SECONDARY_ADMIN, SETTINGS_CREATE, SETTINGS_READ, SETTINGS_RESET]\n                    }\n                ]\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"param\">Param</h2>\n<p>It should pass the id.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request Entity Required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IDeletedEntity {\n    deleted:boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["settings-srv","push",":id"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"57b7f486-860d-44de-8533-ea517e039495"}],"id":"fc306f31-7d92-41ac-b3dc-8e89ba98c9e5","_postman_id":"fc306f31-7d92-41ac-b3dc-8e89ba98c9e5","description":""}],"id":"d662761a-5db7-4345-8ae2-ff20683fd52c","_postman_id":"d662761a-5db7-4345-8ae2-ff20683fd52c","description":""}],"id":"c38b9855-9ff3-4517-ab30-feeb74c8ed6f","_postman_id":"c38b9855-9ff3-4517-ab30-feeb74c8ed6f","description":""},{"name":"Groups","item":[{"name":"GroupTypes","item":[{"name":"Read All Group Types","id":"d0da9340-affe-47dc-9d79-0c2e365a8477","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/groups-srv/grouptype/list","description":"<h1 id=\"description\">Description</h1>\n<p>To read all the group types in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:group_type_read\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>access_token</code> or <code>Authorization</code> in the header section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroupType[];\n}\n\ninterface IUserGroupType {\n    _id: string;\n    id: string;\n    groupType: string;\n    description: string;\n    allowedRoles: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","grouptype","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d0da9340-affe-47dc-9d79-0c2e365a8477"},{"name":"Read Group by groupType","id":"ffbb25c7-fc9e-419c-bf73-c8cab5a22800","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/groups-srv/grouptype?groupType=test","description":"<h1 id=\"description\">Description</h1>\n<p>To read the group type based on groupTypeId in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:group_type_read\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>groupType</code> as a query param</p>\n<h2 id=\"query-params\">Query Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groupType: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroupType;\n}\n\ninterface IUserGroupType {\n    _id: string;\n    id: string;\n    groupType: string;\n    description: string;\n    allowedRoles: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","grouptype"],"host":["{{baseurl}}"],"query":[{"key":"groupType","value":"test"}],"variable":[]}},"response":[],"_postman_id":"ffbb25c7-fc9e-419c-bf73-c8cab5a22800"},{"name":"Add Group Type","id":"3aa447b5-9f31-4680-98be-05da8d2910a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"groupType\":\"test\",\n  \"description\":\"\",\n  \"allowedRoles\":[\"ADMIN\"]\n}"},"url":"{{baseurl}}/groups-srv/grouptype","description":"<h1 id=\"description\">Description</h1>\n<p>To add a new group type in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:group_type_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IUserGroupType</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserGroupType {\n    groupType: string; // *\n    description: string;\n    allowedRoles: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroupType;\n}\n\ninterface IUserGroupType {\n    _id: string;\n    id: string;\n    groupType: string;\n    description: string;\n    allowedRoles: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","grouptype"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3aa447b5-9f31-4680-98be-05da8d2910a1"},{"name":"Update Group Type","id":"a31046b5-cecf-4b22-89b5-af1e2c66419c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"groupType\":\"test\",\n  \"description\":\"\",\n  \"allowedRoles\":[\"ADMIN\"]\n}"},"url":"{{baseurl}}/groups-srv/grouptype","description":"<h1 id=\"description\">Description</h1>\n<p>To update an existing group type in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:group_type_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IUserGroupType</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserGroupType {\n    groupType: string; // *\n    description: string;\n    allowedRoles: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroupType;\n}\n\ninterface IUserGroupType {\n    _id: string;\n    id: string;\n    groupType: string;\n    description: string;\n    allowedRoles: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","grouptype"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a31046b5-cecf-4b22-89b5-af1e2c66419c"},{"name":"Delete Group Type","id":"ab84ffa3-a11d-4ca4-b9e1-e1c72e065749","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/groups-srv/grouptype/:group_type","description":"<h1 id=\"description\">Description</h1>\n<p>To delete an existing group type in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_delete\", \"cidaas:captcha_delete\", \"cidaas:delete\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>groupType</code> as a path param</p>\n<h2 id=\"path-params\">Path Params'.</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groupType: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IResponseDeletedEntity;\n}\n\ninterface IResponseDeletedEntity {\n   deleted: boolean\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","grouptype",":group_type"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"82ed3fa2-b554-4623-bd0d-c98ef0caabd9","type":"string","value":"","key":"group_type"}]}},"response":[],"_postman_id":"ab84ffa3-a11d-4ca4-b9e1-e1c72e065749"}],"id":"b0eb7e7c-8794-4c18-8e34-cbe210e796bc","_postman_id":"b0eb7e7c-8794-4c18-8e34-cbe210e796bc","description":""},{"name":"UserGroups","item":[{"name":"Read All Groups","id":"f9b89204-1582-4b29-818a-d7711508bbc1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/groups-srv/usergroup/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get all user groups in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:groups_read\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\", \"APP_READ\", \"APP_CREATE\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>access_token</code> or <code>Authorization</code> in the header section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroup;\n}\n\ninterface IUserGroup {\n    _id: string;\n    id: string;\n    groupId: string,\n    groupType: string,\n    groupName: string,\n    description: string,\n    logoUrl: string,\n    customFields: any,\n    path: string,\n    parentId: string,\n    groupOwner: string,\n    make_first_user_admin: boolean;\n    childGroupsCount: number,\n    childGroups: IUserGroup[],\n    roles: string[]\n    users: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    _id: string;\n    id: string;\n    sub: string,\n    groupId: string,\n    roles: string[],\n    appendRole: boolean,\n    userId: string;\n    eventType: string;\n    status: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9b89204-1582-4b29-818a-d7711508bbc1"},{"name":"Search Groups","id":"57ece094-7794-45f4-8d19-1f5c3c518a09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"term\":\"HTes\",\n\t\"skip\":0,\n\t\"take\":10\n}"},"url":"{{baseurl}}/groups-srv/usergroup/list/search","description":"<h1 id=\"description\">Description</h1>\n<p>To search user groups in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:groups_read\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\", \"APP_READ\", \"APP_CREATE\", \"USER_READ\", \"USER_CREATE\", \"USER_INVITE\", \"USER_INVITE_READ\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>GroupQueryEntity</code> in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class GroupQueryEntity extends QueryEntity {\n    public parentId?: string;\n    public groupId?: string;\n    public groupType?: string;\n    public groupName?: string | SearchFieldOptions;\n    public createdDateStart?: string;\n    public createdDateStartObj?: Date;\n    public createdDateEnd?: string;\n    public createdDateEndObj?: Date;\n    public skip?: number;\n    public take?: number;\n    public includeChildGroupCount?: boolean;\n    public term?: string | SearchFieldOptions;\n}\n\nclass QueryEntity {\n    public lastQueryTime?: Date;\n    public fields?: string[] | any;\n    public justCount: boolean = false;\n    public deleted: boolean | null = null;\n}\n\nclass SearchFieldOptions {\n    value?: any;\n    match: SearchMatchOptions = \"STARTS_WITH\";\n    ignore_case: boolean = true;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: GroupSearchResponse;\n}\n\nclass GroupSearchResponse {\n    count: number = 0;\n    groups?: IUserGroup[];\n}\n\ninterface IUserGroup {\n    _id: string;\n    id: string;\n    groupId: string,\n    groupType: string,\n    groupName: string,\n    description: string,\n    logoUrl: string,\n    customFields: any,\n    path: string,\n    parentId: string,\n    groupOwner: string,\n    make_first_user_admin: boolean;\n    childGroupsCount: number,\n    childGroups: IUserGroup[],\n    roles: string[]\n    users: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    _id: string;\n    id: string;\n    sub: string,\n    groupId: string,\n    roles: string[],\n    appendRole: boolean,\n    userId: string;\n    eventType: string;\n    status: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup","list","search"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"57ece094-7794-45f4-8d19-1f5c3c518a09"},{"name":"Get Group By Group ID","id":"0a400a21-467c-4075-a245-e14d3a45e70d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/groups-srv/usergroup/?groupId=group1","description":"<h1 id=\"description\">Description</h1>\n<p>To get a group by groupId</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:groups_read\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>groupId</code> in the query param</p>\n<h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groupId: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroup;\n}\n\ninterface IUserGroup {\n    _id: string;\n    id: string;\n    groupId: string,\n    groupType: string,\n    groupName: string,\n    description: string,\n    logoUrl: string,\n    customFields: any,\n    path: string,\n    parentId: string,\n    groupOwner: string,\n    make_first_user_admin: boolean;\n    childGroupsCount: number,\n    childGroups: IUserGroup[],\n    roles: string[]\n    users: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    _id: string;\n    id: string;\n    sub: string,\n    groupId: string,\n    roles: string[],\n    appendRole: boolean,\n    userId: string;\n    eventType: string;\n    status: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup",""],"host":["{{baseurl}}"],"query":[{"key":"groupId","value":"group1"}],"variable":[]}},"response":[],"_postman_id":"0a400a21-467c-4075-a245-e14d3a45e70d"},{"name":"Create Group","id":"7352708d-c39c-4c4c-8fb8-765f06d2f546","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"groupId\":\"g2\",\n  \"groupType\":\"test\",\n  \"groupName\":\"g2\"\n  \n}"},"url":"{{baseurl}}/groups-srv/usergroup","description":"<h1 id=\"description\">Description</h1>\n<p>To add a new group in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:groups_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IUserGroup</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserGroup {\n    groupId: string,\n    groupType: string, \n    groupName: string, // *\n    description: string,\n    logoUrl: string,\n    customFields: any,\n    path: string,\n    parentId: string,\n    groupOwner: string,\n    make_first_user_admin: boolean;\n    childGroupsCount: number,\n    childGroups: IUserGroup[],\n    roles: string[]\n    users: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    sub: string,\n    groupId: string,\n    roles: string[],\n    appendRole: boolean,\n    userId: string;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroup;\n}\n\ninterface IUserGroup {\n    _id: string;\n    id: string;\n    groupId: string,\n    groupType: string,\n    groupName: string,\n    description: string,\n    logoUrl: string,\n    customFields: any,\n    path: string,\n    parentId: string,\n    groupOwner: string,\n    make_first_user_admin: boolean;\n    childGroupsCount: number,\n    childGroups: IUserGroup[],\n    roles: string[]\n    users: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    _id: string;\n    id: string;\n    sub: string,\n    groupId: string,\n    roles: string[],\n    appendRole: boolean,\n    userId: string;\n    eventType: string;\n    status: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7352708d-c39c-4c4c-8fb8-765f06d2f546"},{"name":"Update Group","id":"bc6b4f01-3763-4ae5-818e-2a00131f590f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"groupId\":\"g2\",\n  \"groupType\":\"test\",\n  \"groupName\":\"g2\"\n}"},"url":"{{baseurl}}/groups-srv/usergroup","description":"<h1 id=\"description\">Description</h1>\n<p>To update an existing group in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:groups_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IUserGroup</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserGroup {\n    groupId: string,\n    groupType: string, \n    groupName: string, // *\n    description: string,\n    logoUrl: string,\n    customFields: any,\n    path: string,\n    parentId: string,\n    groupOwner: string,\n    make_first_user_admin: boolean;\n    childGroupsCount: number,\n    childGroups: IUserGroup[],\n    roles: string[]\n    users: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    sub: string,\n    groupId: string,\n    roles: string[],\n    appendRole: boolean,\n    userId: string;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroup;\n}\n\ninterface IUserGroup {\n    _id: string;\n    id: string;\n    groupId: string,\n    groupType: string,\n    groupName: string,\n    description: string,\n    logoUrl: string,\n    customFields: any,\n    path: string,\n    parentId: string,\n    groupOwner: string,\n    make_first_user_admin: boolean;\n    childGroupsCount: number,\n    childGroups: IUserGroup[],\n    roles: string[]\n    users: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    _id: string;\n    id: string;\n    sub: string,\n    groupId: string,\n    roles: string[],\n    appendRole: boolean,\n    userId: string;\n    eventType: string;\n    status: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc6b4f01-3763-4ae5-818e-2a00131f590f"},{"name":"Create Multiple Groups","id":"f9be81c7-8c4e-4fa6-999e-ac79b47bc96e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[{\n  \"groupId\":\"g23\",\n  \"groupType\":\"test\",\n  \"groupName\":\"g2\"\n},{\n  \"groupId\":\"g234\",\n  \"groupType\":\"test\",\n  \"groupName\":\"g2\"\n}]"},"url":"{{baseurl}}/groups-srv/usergroup/multiple","description":"<h1 id=\"description\">Description</h1>\n<p>To create multiple user groups in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:groups_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IUserGroup[]</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserGroup {\n    groupId: string,\n    groupType: string, \n    groupName: string, // *\n    description: string,\n    logoUrl: string,\n    customFields: any,\n    path: string,\n    parentId: string,\n    groupOwner: string,\n    make_first_user_admin: boolean;\n    childGroupsCount: number,\n    childGroups: IUserGroup[],\n    roles: string[]\n    users: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    sub: string,\n    groupId: string,\n    roles: string[],\n    appendRole: boolean,\n    userId: string;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroupDetailsList[];\n}\n\ninterface IUserGroupDetailsList {\n    groupId: string;\n    status: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup","multiple"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9be81c7-8c4e-4fa6-999e-ac79b47bc96e"},{"name":"Update Multiple","id":"47508995-c5d1-4642-a2c7-d6d6246a40ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"[{\n  \"groupId\":\"g23\",\n  \"groupType\":\"test\",\n  \"groupName\":\"g2\"\n},{\n  \"groupId\":\"g234\",\n  \"groupType\":\"test\",\n  \"groupName\":\"g2\"\n}]"},"url":"{{baseurl}}/groups-srv/usergroup/multiple","description":"<h1 id=\"description\">Description</h1>\n<p>To update multiple user groups in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\", \"cidaas:groups_write\", \"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IUserGroup[]</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserGroup {\n    groupId: string,\n    groupType: string, \n    groupName: string, // *\n    description: string,\n    logoUrl: string,\n    customFields: any,\n    path: string,\n    parentId: string,\n    groupOwner: string,\n    make_first_user_admin: boolean;\n    childGroupsCount: number,\n    childGroups: IUserGroup[],\n    roles: string[]\n    users: IUserGroupMap[]\n}\n\ninterface IUserGroupMap {\n    sub: string,\n    groupId: string,\n    roles: string[],\n    appendRole: boolean,\n    userId: string;\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroupDetailsList[];\n}\n\ninterface IUserGroupDetailsList {\n    groupId: string;\n    status: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup","multiple"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"47508995-c5d1-4642-a2c7-d6d6246a40ce"},{"name":"Delete Group","id":"777e6170-6940-4c8b-8453-6ce0489eb04c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"groupId\":\"g2\",\n  \"groupType\":\"test\",\n  \"groupName\":\"g2\",\n  \"parentId\":\"g1\"\n}"},"url":"{{baseurl}}/groups-srv/usergroup/:group_id","description":"<h1 id=\"description\">Description</h1>\n<p>To delete user group based on groupId</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_delete\", \"cidaas:groups_delete\", \"cidaas:delete\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>groupId</code> in the path Param</p>\n<h2 id=\"path-param\">Path Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groupId: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IResponseDeletedEntity;\n}\n\ninterface IResponseDeletedEntity {\n   deleted: boolean\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup",":group_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"524a39dc-82ea-4443-bd73-99bb3817b197","type":"string","value":"","key":"group_id"}]}},"response":[],"_postman_id":"777e6170-6940-4c8b-8453-6ce0489eb04c"},{"name":"Allowed Roles","id":"a5a4154d-5558-4085-9791-bb4c73af066d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/groups-srv/usergroup/allowedroles/:group_id","description":"<h1 id=\"description\">Description</h1>\n<p>To get allowed roles for the group based on groupId</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:groups_read\", \"cidaas:write\", \"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\", \"GROUP_DELETE\"]\n            }\n        ]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>groupId</code> in the Path Param</p>\n<h2 id=\"path-param\">Path Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groupId: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup","allowedroles",":group_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"dae56790-db6d-48e2-b040-b0457683fda5","type":"string","value":"","key":"group_id"}]}},"response":[],"_postman_id":"a5a4154d-5558-4085-9791-bb4c73af066d"},{"name":"Get Unique Custom Fields","id":"81c42316-4809-42fb-9ede-9a677491edbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/groups-srv/usergroup/configuredfields/list","description":"<h1 id=\"description\">Description</h1>\n<p>To get the unique custom fields configured in the group</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>access_token</code> or <code>Authorization</code> in the header section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: string[];\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup","configuredfields","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"81c42316-4809-42fb-9ede-9a677491edbb"}],"id":"7ba7edf4-d9c6-4195-8fed-cf46041268d4","_postman_id":"7ba7edf4-d9c6-4195-8fed-cf46041268d4","description":""},{"name":"UserGroupMap","item":[{"name":"Util","item":[{"name":"Get Group details by access token","id":"bbb54a66-4855-4a24-ac1a-2c32f1b53d46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseurl}}/groups-srv/usergroup/groupinfo","description":"<h1 id=\"description\">Description</h1>\n<p>Get Group details by access token</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [  \"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:groups_user_map_read\",\"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\",\"GROUP_DELETE\",\"USER_READ\",\"USER_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>sub</code> value in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroupMap;\n}\ninterface IUserGroupMap {\n    _id: string;\n    id: string;\n    sub: string, // *\n    groupId: string, // *\n    roles: string[],\n\n    // view\n    appendRole: boolean,\n\n    userId: string;\n\n    // internal use\n    eventType: string;\n    status: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup","groupinfo"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bbb54a66-4855-4a24-ac1a-2c32f1b53d46"}],"id":"cbb040f2-b4b6-4b56-bfde-9447e33a8c5b","_postman_id":"cbb040f2-b4b6-4b56-bfde-9447e33a8c5b","description":""},{"name":"Add Or update Group Map","id":"a0c9fb00-d3ca-40ca-988e-7af188c5b5d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sub\":\"c932b3b2-f952-469c-ac35-3cbb1836d64d\",\n  \"groupId\":\"00007\",\n  \"roles\":[\"GROUP_ADMIN\"]\n}"},"url":"{{baseurl}}/groups-srv/usergroupmap/assign","description":"<h1 id=\"description\">Description</h1>\n<p>Add Or update Group Map</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [  \"cidaas:admin_write\",\"cidaas:groups_user_map_write\",\"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\",\"GROUP_DELETE\",\"USER_READ\",\"USER_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IUserGroupMap</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserGroupMap {\n    _id: string;\n    id: string;\n    sub: string, // *\n    groupId: string, // *\n    roles: string[],\n\n    // view\n    appendRole: boolean,\n\n    userId: string;\n\n    // internal use\n    eventType: string;\n    status: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroupMap;\n}\ninterface IUserGroupMap {\n    _id: string;\n    id: string;\n    sub: string, // *\n    groupId: string, // *\n    roles: string[],\n\n    // view\n    appendRole: boolean,\n\n    userId: string;\n\n    // internal use\n    eventType: string;\n    status: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroupmap","assign"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0c9fb00-d3ca-40ca-988e-7af188c5b5d4"},{"name":"Get Group Map","id":"e8749080-892c-46a9-a419-4e8dfb411653","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/groups-srv/usergroupmap/flat/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Get Group Map details by sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [  \"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:groups_user_map_read\",\"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\",\"GROUP_DELETE\",\"USER_READ\",\"USER_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>sub</code> value in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserGroupMap;\n}\ninterface IUserGroupMap {\n    _id: string;\n    id: string;\n    sub: string, // *\n    groupId: string, // *\n    roles: string[],\n\n    // view\n    appendRole: boolean,\n\n    userId: string;\n\n    // internal use\n    eventType: string;\n    status: number;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroupmap","flat",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"1535fc3c-f5ac-4615-889b-b697025cab96","type":"string","value":"","key":"sub"}]}},"response":[],"_postman_id":"e8749080-892c-46a9-a419-4e8dfb411653"},{"name":"Delete Group Map","id":"81b7c969-f957-4bcd-bb9d-584e09c4b116","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/groups-srv/usergroupmap/:groupid/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Delete Group Map by groupId &amp; sub.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [  \"cidaas:admin_delete\",\"cidaas:groups_user_map_delete\",\"cidaas:delete\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\",\"GROUP_DELETE\",\"USER_READ\",\"USER_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>groupId</code> &amp; <code>sub</code> value in the path param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groupId\nsub\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\n{\n   \"success\":true,\n   \"status\":200,\n   \"data\":{\n    \"deleted\":true  \n    }\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroupmap",":groupid",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"34669570-945e-499e-9664-62e388c5ebfa","type":"string","value":"","key":"groupid"},{"id":"5e0ac61f-a7c3-4ed4-8d9f-be416f9ed439","type":"string","value":"","key":"sub"}]}},"response":[],"_postman_id":"81b7c969-f957-4bcd-bb9d-584e09c4b116"}],"id":"f1ec9689-9836-49de-be9f-bdc1d7694883","_postman_id":"f1ec9689-9836-49de-be9f-bdc1d7694883","description":""},{"name":"Search","item":[{"name":"Search By group Id","id":"27312e93-3b6e-4edc-8dde-90cc315590e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"groupId\":\"g2\",\n\t\"includeChildGroups\":true\n}"},"url":"{{baseurl}}/groups-srv/usergroup/search","description":"<h1 id=\"description\">Description</h1>\n<p>Search By group Id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [  \"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:groups_user_map_read\",\"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\",\"GROUP_DELETE\",\"USER_READ\",\"USER_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserGroupSearchEntity</code> entity in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export class UserGroupSearchEntity {\n    includingRoles?: boolean;\n    includingUserInfo?: boolean;\n    skip?: number;\n    take?: number;\n    includingChildGroups?: boolean;\n    groupId?: string;\n    groupIds?: string[];\n    groupType?: string;\n    roles?: string[];\n    sub?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserGroupSearchResultEntity[];\n}\n\nclass UserGroupSearchResultEntity {\n    email?: string;\n    sub?: string;\n    given_name?: string;\n    family_name?: string;\n\n    userId?: string;\n    displayName?: string;\n    groupsList?: any[];\n    groups?: any;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup","search"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"27312e93-3b6e-4edc-8dde-90cc315590e3"},{"name":"Search user by group","id":"db0738be-6e64-4df0-9deb-7aafd75d04bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"groupIds\":[\"g2\"],\n  \"includingChildGroups\":true,\n  \"includingUserInfo\":true,\n  \"skip\":0,\n  \"take\":3\n}"},"url":"{{baseurl}}/groups-srv/usergroupmap/search","description":"<h1 id=\"description\">Description</h1>\n<p>Search user by group</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [  \"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:groups_user_map_read\",\"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\",\"GROUP_DELETE\",\"USER_READ\",\"USER_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserGroupSearchEntity</code> entity in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export class UserGroupSearchEntity {\n    includingRoles?: boolean;\n    includingUserInfo?: boolean;\n    skip?: number;\n    take?: number;\n    includingChildGroups?: boolean;\n    groupId?: string;\n    groupIds?: string[];\n    groupType?: string;\n    roles?: string[];\n    sub?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserGroupSearchResultEntity[];\n}\n\nclass UserGroupSearchResultEntity {\n    email?: string;\n    sub?: string;\n    given_name?: string;\n    family_name?: string;\n\n    userId?: string;\n    displayName?: string;\n    groupsList?: any[];\n    groups?: any;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroupmap","search"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"db0738be-6e64-4df0-9deb-7aafd75d04bd"},{"name":"Verify Group User","id":"f0d5eaf2-d661-4a8c-8138-6dfb68b02238","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"44ee0c4f-9767-4e96-b65c-4394e803e4c1\",\n  \"groupId\":\"g3\",\n  \"groupType\":\"\",\n  \"roles\":[\"test\"]\n}"},"url":"{{baseurl}}/groups-srv/usergroupmap/verify","description":"<h1 id=\"description\">Description</h1>\n<p>Verify Group User</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [  \"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:groups_write\",\"cidaas:groups_read\",\"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\",\"GROUP_DELETE\",\"USER_READ\",\"USER_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>UserVerificationEntity</code> entity in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export class UserVerificationEntity {\n    userId?: string;\n    sub?: string; // *\n    groupId?: string; // *\n    groupType?: string;\n    roles?: string[];\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroupmap","verify"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f0d5eaf2-d661-4a8c-8138-6dfb68b02238"},{"name":"Search Group","id":"19376b91-cf45-4069-acf0-1660dedef035","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"skip\": 0,\n  \"take\": 15,\n  \"groupType\": \"\",\n  \"groupName\": \"t\",\n  \"includeChildGroupCount\":true,\n  \"parentId\":\"root\"\n}"},"url":"{{baseurl}}/groups-srv/usergroup/list/search","description":"<h1 id=\"description\">Description</h1>\n<p>Search Group</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [  \"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:groups_read\",\"cidaas:write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles:  [\"ADMIN\", \"SECONDARY_ADMIN\", \"GROUP_ADMIN\", \"GROUP_CREATE\", \"GROUP_READ\",\"GROUP_DELETE\",\"USER_READ\",\"USER_CREATE\",\"USER_INVITE\",\"USER_INVITE_READ\",\"APP_READ\",\"APP_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>GroupQueryEntity</code> entity in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class GroupQueryEntity extends QueryEntity {\n    public parentId?: string;\n    public groupId?: string;\n    public groupType?: string;\n    public groupName?: string | SearchFieldOptions;\n    public createdDateStart?: string;\n    public createdDateStartObj?: Date;\n    public createdDateEnd?: string;\n    public createdDateEndObj?: Date;\n    public skip?: number;\n    public take?: number;\n    public includeChildGroupCount?: boolean;\n\n    public term?: string | SearchFieldOptions;\n}\n\n\nclass QueryEntity {\n    public lastQueryTime?: Date;\n    public fields?: string[] | any;\n    public justCount: boolean = false;\n    public deleted: boolean | null = null;\n}\n\nclass SearchFieldOptions {\n    value?: any;\n    match: SearchMatchOptions = SearchMatchOptions.STARTS_WITH;\n    ignore_case: boolean = true;\n}\n\nenum SearchMatchOptions {\n    STARTS_WITH = \"STARTS_WITH\",\n    EXACT = \"EXACT\",\n    CONTAINS = \"CONTAINS\"\n}\n\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: GroupSearchResponse[];\n}\n\nclass GroupSearchResponse {\n    count: number = 0;\n    groups?: IUserGroup[];\n}\n\nexport interface IUserGroup {\n    _id: string;\n    id: string;\n    groupId: string,\n    groupType: string,\n    groupName: string,\n    description: string,\n    logoUrl: string,\n    customFields: any,\n    path: string,\n    parentId: string,\n\n    groupOwner: string,\n    make_first_user_admin: boolean;\n\n    // view\n    childGroupsCount: number,\n    childGroups: IUserGroup[],\n    roles: string[]\n    users: IUserGroupMap[]\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["groups-srv","usergroup","list","search"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"19376b91-cf45-4069-acf0-1660dedef035"}],"id":"525c9af6-6c82-4605-b907-b920bf3818fa","_postman_id":"525c9af6-6c82-4605-b907-b920bf3818fa","description":""},{"name":"Backward Compatability Services [Deprecated]","item":[{"name":"Remove role","id":"760d70ca-c188-4c80-b7ef-da4817bd0c03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"44ee0c4f-9767-4e96-b65c-4394e803e4c1\",\n  \"groupId\":\"g3\",\n  \"roles\":[\"test\"]\n}"},"url":"{{baseurl}}/groups-srv/usergroupmap/removerole","urlObject":{"path":["groups-srv","usergroupmap","removerole"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"760d70ca-c188-4c80-b7ef-da4817bd0c03"},{"name":"Append role","id":"28c94167-f54c-4496-984e-d131bc70374a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"44ee0c4f-9767-4e96-b65c-4394e803e4c1\",\n  \"groupId\":\"g3\",\n  \"roles\":[\"test\"]\n}"},"url":"{{baseurl}}/groups-srv/usergroupmap/appendrole","urlObject":{"path":["groups-srv","usergroupmap","appendrole"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"28c94167-f54c-4496-984e-d131bc70374a"},{"name":"Get User Group with parant metadata","id":"b134d743-5405-41d0-b579-303e2e742f31","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"44ee0c4f-9767-4e96-b65c-4394e803e4c1\",\n  \"groupId\":\"g3\",\n  \"roles\":[\"test\"]\n}"},"url":"{{baseurl}}/groups-srv/usergroupmap/userwithmetadata/:sub","urlObject":{"path":["groups-srv","usergroupmap","userwithmetadata",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"5406bc9b-6ad1-44e2-9a67-b3290e789a92","type":"string","value":"","key":"sub"}]}},"response":[],"_postman_id":"b134d743-5405-41d0-b579-303e2e742f31"}],"id":"75345dea-516a-4a0d-88c1-7acb2f51b2cf","_postman_id":"75345dea-516a-4a0d-88c1-7acb2f51b2cf","description":""}],"id":"c5b632ef-4e27-4b65-a6ca-5c3bcc1aabfb","_postman_id":"c5b632ef-4e27-4b65-a6ca-5c3bcc1aabfb","description":""},{"name":"Openid Connect Endpoints","item":[{"name":".well-known openid-configuration","id":"5a580e1d-e4c7-4395-b2ee-53f1946aa03d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/.well-known/openid-configuration","description":"<h1 id=\"description\">Description</h1>\n<p>.well-known openid-configuration</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export class WellknownConfigResponse {\n    issuer?: string;\n    authorization_endpoint?: string;\n    token_endpoint?: string;\n    userinfo_endpoint?: string;\n    jwks_uri?: string;\n    scopes_supported?: string[];\n    response_types_supported?: string[];\n    response_modes_supported?: string[];\n    subject_types_supported?: string[];\n    id_token_signing_alg_values_supported?: string[];\n    token_endpoint_auth_methods_supported?: string[];\n    claims_supported?: string[];\n    token_endpoint_auth_signing_alg_values_supported?: string[];\n    check_session_iframe?: string;\n    end_session_endpoint?: string;\n    social_provider_token_resolver_endpoint?: string;\n    registration_endpoint?: string;\n    acr_values_supported?: string[];\n    userinfo_signing_alg_values_supported?: string[];\n    userinfo_encryption_alg_values_supported?: string[];\n    userinfo_encryption_enc_values_supported?: string[];\n    id_token_encryption_alg_values_supported?: string[];\n    id_token_encryption_enc_values_supported?: string[];\n    request_object_signing_alg_values_supported?: string[];\n    request_object_encryption_alg_values_supported?: string[];\n    request_object_encryption_enc_values_supported?: string[];\n    display_values_supported?: string[];\n    claim_types_supported?: string[];\n    claims_parameter_supported?: boolean;\n    service_documentation?: string;\n    ui_locales_supported?: string[];\n    introspection_endpoint?: string;\n    introspection_async_update_endpoint?: string;\n    revocation_endpoint?: string;\n    claims_locales_supported?: string[];\n    request_parameter_supported?: boolean;\n    request_uri_parameter_supported?: boolean;\n    require_request_uri_registration?: boolean;\n    op_policy_uri?: string;\n    op_tos_uri?: string;\n    grant_types_supported?: string[];\n    code_challenge_methods_supported?: string[];\n    device_authorization_endpoint?: string;\n\n    scim_endpoint?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":[".well-known","openid-configuration"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a580e1d-e4c7-4395-b2ee-53f1946aa03d"},{"name":".well-known jwks.json","id":"b82e18a8-d902-445d-8102-450bbf2c8366","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/.well-known/jwks.json","description":"<h1 id=\"description\">Description</h1>\n<p>.well-known jwks.json</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path param</h2>\n<h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":[".well-known","jwks.json"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b82e18a8-d902-445d-8102-450bbf2c8366"}],"id":"0fe0650c-0aa2-495b-857a-988dd80ac859","event":[{"listen":"prerequest","script":{"exec":[""],"id":"9c10ff7c-c442-4810-b580-c5e92869c105","type":"text/javascript"}},{"listen":"test","script":{"exec":[""],"id":"dc348616-05dc-41ce-9d2b-7b54956e22d9","type":"text/javascript"}}],"_postman_id":"0fe0650c-0aa2-495b-857a-988dd80ac859","description":""},{"name":"HostedPages","item":[{"name":"Pages","item":[{"name":"Get hosted page by accept-language","id":"97432191-f4e0-4006-bc92-e912f9a28a92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"hosted_page_group\":\"default\",\n\"hosted_page_id\":\"LOGIN\",\n\"acceptLanguage\":\"en,de\"\n}\n"},"url":"{{baseurl}}/hosted-srv/hosted/bylang","description":"<h1 id=\"description\">Description</h1>\n<p>Get hosted page by accept-language</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:hosted_pages_read\",\"cidaas:write\",\"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                    groupId: \"CIDAAS_ADMINS\",\n                    roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",\"SETTINGS_READ\",\"SETTINGS_RESET\"]\n                }\n]\n\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"HostedPageQueryEntity\" in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class HostedPageQueryEntity {\n    hosted_page_group: string = \"\";\n    hosted_page_id: string = \"\";\n    locale: string = \"\";\n    language: string = \"\";\n    acceptLanguage: string = \"\";\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IHostedPage;\n}\ninterface IHostedPage {\n    _id: string;\n    id: string;\n    hosted_page_group: string;\n    hosted_page_id: string;\n    url: string;\n    content: string;\n    locale: string;\n    language: string;\n    createdTime: string,\n    updatedTime: string\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["hosted-srv","hosted","bylang"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"97432191-f4e0-4006-bc92-e912f9a28a92"},{"name":"Get hosted page by locale","id":"ca287e94-50c1-4bc9-9ee4-83beabbc9914","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"hosted_page_group\":\"default\",\n\"hosted_page_id\":\"LOGIN\",\n\"locale\":\"en_US\"\n}"},"url":"{{baseurl}}/hosted-srv/hosted/bylocalekey","description":"<h1 id=\"description\">Description</h1>\n<p>Get hosted page by locale</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:hosted_pages_read\",\"cidaas:write\",\"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                    groupId: \"CIDAAS_ADMINS\",\n                    roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",\"SETTINGS_READ\",\"SETTINGS_RESET\"]\n                }\n]\n\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"HostedPageQueryEntity\" in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class HostedPageQueryEntity {\n    hosted_page_group: string = \"\";\n    hosted_page_id: string = \"\";\n    locale: string = \"\";\n    language: string = \"\";\n    acceptLanguage: string = \"\";\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IHostedPage;\n}\ninterface IHostedPage {\n    _id: string;\n    id: string;\n    hosted_page_group: string;\n    hosted_page_id: string;\n    url: string;\n    content: string;\n    locale: string;\n    language: string;\n    createdTime: string,\n    updatedTime: string\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["hosted-srv","hosted","bylocalekey"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ca287e94-50c1-4bc9-9ee4-83beabbc9914"},{"name":"Update hosted page","id":"d132122b-68be-46d7-8457-c4957a9d6efc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"hosted_page_group\":\"default\",\n  \"hosted_page_id\":\"LOGIN\",\n  \"content\":\"<html>hi</html>\",\n  \"locale\":\"en_US\"\n\n}"},"url":"{{baseurl}}/hosted-srv/hosted","description":"<h1 id=\"description\">Description</h1>\n<p>Update hosted page</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\",\"cidaas:hosted_pages_write\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                    groupId: \"CIDAAS_ADMINS\",\n                    roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",\"SETTINGS_READ\",\"SETTINGS_RESET\"]\n                }\n]\n\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"IHostedPage\" in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IHostedPage {\n    _id: string; // *\n    id: string;\n    hosted_page_group: string; // *\n    hosted_page_id: string; // *\n    url: string;\n    content: string;\n    locale: string; // *\n    language: string;\n    createdTime: string,\n    updatedTime: string\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IHostedPage;\n}\ninterface IHostedPage {\n    _id: string;\n    id: string;\n    hosted_page_group: string;\n    hosted_page_id: string;\n    url: string;\n    content: string;\n    locale: string;\n    language: string;\n    createdTime: string,\n    updatedTime: string\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["hosted-srv","hosted"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d132122b-68be-46d7-8457-c4957a9d6efc"},{"name":"Get available hosted pages","id":"deb45157-a04e-4840-9fc3-5432e8010f5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/hosted-srv/hosted/availablepages","description":"<h1 id=\"description\">Description</h1>\n<p>To get available hosted pages</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:hosted_pages_read\",\"cidaas:write\",\"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                    groupId: \"CIDAAS_ADMINS\",\n                    roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",\"SETTINGS_READ\",\"SETTINGS_RESET\"]\n                }\n]\n\n</code></pre><h1 id=\"request\">Request</h1>\n<p>no request</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: HostedPageID;\n}\nenum HostedPageID {\n    LOGIN = \"LOGIN\",\n    REGISTER = \"REGISTER\",\n    FORGOT_PASSWORD = \"FORGOT_PASSWORD\",\n    HANDLE_FORGOT_PASSWORD = \"HANDLE_FORGOT_PASSWORD\",\n    COMPLETE_FORGOT_PASSWORD = \"COMPLETE_FORGOT_PASSWORD\",\n    FIRST_TIME_PASSWORD_CHANGE = \"FIRST_TIME_PASSWORD_CHANGE\",\n    ADDTIONAL_INFO = \"ADDTIONAL_INFO\",\n    USER_CONSENT = \"USER_CONSENT\",\n    PENDING_VERIFICATION = \"PENDING_VERIFICATION\",\n    AFTER_LOGOUT = \"AFTER_LOGOUT\",\n    REGISTER_COMPLETE = \"REGISTER_COMPLETE\",\n    UN_VERIFIED_EMAIL = \"UN_VERIFIED_EMAIL\",\n    UN_VERIFIED_MOBILE = \"UN_VERIFIED_MOBILE\",\n    AFTER_EMAIL_VERIFICATION = \"AFTER_EMAIL_VERIFICATION\",\n    ACCOUNT_VERIFICATION = \"ACCOUNT_VERIFICATION\",\n    AFTER_REGISTER = \"AFTER_REGISTER\",\n    MFA_REQUIRED = \"MFA_REQUIRED\",\n    DE_DUPLICATION = \"DE_DUPLICATION\",\n    SCOPE_CONSENT = \"SCOPE_CONSENT\",\n    CONSENT_PREVIEW = \"CONSENT_PREVIEW\",\n    SUGGEST_MFA = \"SUGGEST_MFA\",\n} \n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["hosted-srv","hosted","availablepages"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"deb45157-a04e-4840-9fc3-5432e8010f5b"},{"name":"Get Hosted page URL","id":"711e3397-b20d-49bd-bc2d-74a150e57a03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/hosted-srv/hosted/url/:pageId?acceptLanguage=\"value\"&groupId=\"value\"","description":"<h1 id=\"description\">Description</h1>\n<p>Get the hosted page URL</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\",cidaas:admin_write\",\"cidaas:hosted_pages_read\",\"cidaas:write\",\"cidaas:read\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                    groupId: \"CIDAAS_ADMINS\",\n                    roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",\"SETTINGS_READ\",\"SETTINGS_RESET\"]\n                }\n]\n\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"pageID\" in the path param and \"acceptLanguage &amp; groupId \" in the query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"path-param\">Path Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>pageId : string\n</code></pre><h2 id=\"query-param\">Query param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>acceptLanguage : string\ngroupId : string\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no request\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IHostedPage;\n}\ninterface IHostedPage  {\n    _id: string;\n    id: string;\n    hosted_page_group: string;\n    hosted_page_id: string;\n    url: string;\n    content: string;\n    locale: string;\n    language: string;\n    createdTime: string,\n    updatedTime: string\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["hosted-srv","hosted","url",":pageId"],"host":["{{baseurl}}"],"query":[{"key":"acceptLanguage","value":"\"value\""},{"key":"groupId","value":"\"value\""}],"variable":[{"id":"e77d5395-9b9d-42c4-87c0-933b1325de76","type":"string","value":"","key":"pageId"}]}},"response":[],"_postman_id":"711e3397-b20d-49bd-bc2d-74a150e57a03"}],"id":"df9add46-19be-4bac-9605-41ac5ed0130d","_postman_id":"df9add46-19be-4bac-9605-41ac5ed0130d","description":""},{"name":"Groups","item":[{"name":"Create new hosted group","id":"02cfa619-7a76-471b-9c3e-2d00662e349f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"hosted_page_group\":\"default\"\n}"},"url":"{{baseurl}}/hosted-srv/hostedgroup","description":"<h1 id=\"description\">Description</h1>\n<p>Create new hosted group</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_write\",\"cidaas:hosted_pages_write\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                    groupId: \"CIDAAS_ADMINS\",\n                    roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",\"SETTINGS_READ\",\"SETTINGS_RESET\"]\n                }\n]\n\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass \"IHostedPageGroup\" in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\ninterface IHostedPageGroup {\n    _id: string;\n    id: string;\n    hosted_page_group: string; // *\n    groupOwner: string;\n    clone_from: string;\n}\n\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IHostedPageGroup;\n}\ninterface IHostedPageGroup {\n    _id: string;\n    id: string;\n    hosted_page_group: string;\n    groupOwner: string;\n    clone_from: string;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["hosted-srv","hostedgroup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"02cfa619-7a76-471b-9c3e-2d00662e349f"},{"name":"Get hosted group list","id":"aa1796e1-0362-44c4-980b-c5ca5d7f4db2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/hosted-srv/hostedgroup/list","description":"<h1 id=\"description\">Description</h1>\n<p>Get hosted group list</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\",\"cidaas:admin_write\",\"cidaas:hosted_pages_read\",\"cidaas:write\"]\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                    groupId: \"CIDAAS_ADMINS\",\n                    roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",\"SETTINGS_READ\",\"SETTINGS_RESET\",\"APP_READ\",\"APP_CREATE\"]\n                }\n]\n\n</code></pre><h1 id=\"request\">Request</h1>\n<p>no request</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no request\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IHostedPageGroup[];\n}\ninterface IHostedPageGroup {\n    _id: string;\n    id: string;\n    hosted_page_group: string;\n    groupOwner: string;\n    clone_from: string;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["hosted-srv","hostedgroup","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"aa1796e1-0362-44c4-980b-c5ca5d7f4db2"},{"name":"Delete hosted page group by name","id":"8ad59a9b-c28b-45c0-a863-891d4660b6cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/hosted-srv/hostedgroup?groupname=default","description":"<h1 id=\"description\">Description</h1>\n<p>To delete hosted page by group name</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_delete\", \"cidaas:hosted_pages_delete\",\"cidaas:delete\"]\n\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>  groups: [\n                    {\n                        groupId: \"CIDAAS_ADMINS\",\n                        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\", \"SETTINGS_READ\", \"SETTINGS_RESET\"]\n                    }\n                \n          ]\n                \n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>groupname</code> in Query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groupname :string\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponse {\n    success:boolean;\n    status: int ;\n    data: IDeleteHostedPageGroup;\n}\ninterface IDeleteHostedPageGroup{\n     groupName: string;\n     deleted: boolean;\n}\n\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST </p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["hosted-srv","hostedgroup"],"host":["{{baseurl}}"],"query":[{"key":"groupname","value":"default"}],"variable":[]}},"response":[],"_postman_id":"8ad59a9b-c28b-45c0-a863-891d4660b6cb"}],"id":"aff30805-c6c2-4554-b172-7383071979c0","_postman_id":"aff30805-c6c2-4554-b172-7383071979c0","description":""}],"id":"efd6d772-510f-47b9-a7fe-37deb3998c81","_postman_id":"efd6d772-510f-47b9-a7fe-37deb3998c81","description":""},{"name":"ChangePassword","item":[{"name":"Change password","id":"9b2b9ee7-4e31-4ea7-8a85-a2e5b5b08d2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"sub\":\"\",\n  \"identityId\":\"2741edf0-40a0-44f4-9efa-49cdbffc4ec2\",\n  \"old_password\":\"test123\",\n  \"new_password\":\"test1234\",\n  \"confirm_password\":\"test1234\"\n}"},"url":"{{baseurl}}/users-srv/changepassword","description":"<h1 id=\"description\">Description</h1>\n<p>Change password by user. </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>ChangePasswordEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class ChangePasswordEntity {\n    sub: string = \"\";\n    identityId: string = \"\";\n    old_password: string = \"\";\n    new_password: string = \"\";\n    confirm_password: string = \"\";\n    accessToken: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IChangePassword;\n}\ninterface IChangePassword{\n    changed: boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","changepassword"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b2b9ee7-4e31-4ea7-8a85-a2e5b5b08d2b"}],"id":"39f34fe9-181d-4412-aa2f-7e6c261c653c","_postman_id":"39f34fe9-181d-4412-aa2f-7e6c261c653c","description":""},{"name":"Verification","item":[{"name":"V1","item":[{"name":"PUSH","item":[{"name":"Setup","item":[{"name":"Setup","id":"d386a70e-0de7-4af8-82f9-6f5ad231e814","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/setup","urlObject":{"path":["verification-srv","push","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"03946446-0f5f-4606-9805-f4b56445e746","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"9a0bc7cb-0888-497f-af6b-29a8d4249e4b","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"d386a70e-0de7-4af8-82f9-6f5ad231e814"},{"name":"Scanned","id":"c704f911-8589-4442-b526-bc8857548c93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a1646372-b3eb-4179-b349-b327cd92573e\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"123\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/scanned","urlObject":{"path":["verification-srv","push","scanned"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1d8a6dd4-2eb0-440c-b351-624d24a56008","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a1646372-b3eb-4179-b349-b327cd92573e\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"123\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"7b5e9798-becf-4381-89f3-9d6f617ff2a2","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a1646372-b3eb-4179-b349-b327cd92573e\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"123\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"c704f911-8589-4442-b526-bc8857548c93"},{"name":"Enroll","id":"8fadb86c-67e3-473f-be63-181c4f14d449","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a1646372-b3eb-4179-b349-b327cd92573e\",\n\t\"verifierPassword\":\"52\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/enroll","urlObject":{"path":["verification-srv","push","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"136edbb0-eb99-4a5e-9666-e818f82fafe9","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a1646372-b3eb-4179-b349-b327cd92573e\",\n\t\"verifierPassword\":\"52\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"8a87159b-7110-42ef-a69c-cf8979e2dd33","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a1646372-b3eb-4179-b349-b327cd92573e\",\n\t\"verifierPassword\":\"52\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8fadb86c-67e3-473f-be63-181c4f14d449"},{"name":"Acknowledge","id":"ccdbb043-2d3a-4469-856c-0c37f4a8b718","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"5c3e2cf9-ea4a-462c-b075-d78b60c9e60e\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/acknowledge","urlObject":{"path":["verification-srv","push","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"53861ab3-ccff-4747-9c04-ec56cbbc1f7b","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"5c3e2cf9-ea4a-462c-b075-d78b60c9e60e\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/push/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"c754f794-8258-4fb9-91bf-ae75588752ec","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"5c3e2cf9-ea4a-462c-b075-d78b60c9e60e\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/push/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"ccdbb043-2d3a-4469-856c-0c37f4a8b718"}],"id":"4792fc8a-696e-4741-bd76-79ad3c88ccb3","_postman_id":"4792fc8a-696e-4741-bd76-79ad3c88ccb3","description":""},{"name":"Usage","item":[{"name":"Initiate","id":"8ae13783-a414-419a-9617-079d9400f680","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"df4cf53d-6ec3-47c1-94b0-5c02c04051a3\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\",\n\t\"userDeviceId\":\"eccc88cc-3b3a-476a-950d-a39513c83708\"\n}"},"url":"{{baseurl}}/verification-srv/push/initiate","urlObject":{"path":["verification-srv","push","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"9b624c36-18b1-4e04-ae5b-eaeaa588dd10","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"df4cf53d-6ec3-47c1-94b0-5c02c04051a3\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\",\n\t\"userDeviceId\":\"eccc88cc-3b3a-476a-950d-a39513c83708\"\n}"},"url":"{{baseurl}}/verification-srv/push/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"e3a536e7-74b3-41f5-835c-d2c67c09c4f3","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"df4cf53d-6ec3-47c1-94b0-5c02c04051a3\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\",\n\t\"userDeviceId\":\"eccc88cc-3b3a-476a-950d-a39513c83708\"\n}"},"url":"{{baseurl}}/verification-srv/push/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"8ae13783-a414-419a-9617-079d9400f680"},{"name":"Authenticate","id":"14def29b-6df9-4519-ba06-43a4334f5b9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a14ac4bd-5747-42f1-8328-2e7a67a1ad19\",\n\t\"verifierPassword\":\"35\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/authenticate","urlObject":{"path":["verification-srv","push","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"20096122-a76a-43d1-8f44-34c7b37ac40b","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a14ac4bd-5747-42f1-8328-2e7a67a1ad19\",\n\t\"verifierPassword\":\"35\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"61329407-1999-4e5e-a914-a72421ddbb8f","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a14ac4bd-5747-42f1-8328-2e7a67a1ad19\",\n\t\"verifierPassword\":\"35\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"14def29b-6df9-4519-ba06-43a4334f5b9d"},{"name":"Acknowledge","id":"8fe0bdae-95f0-45ce-a58e-9d8052a262bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"4c3d3c89-d36c-445b-9dbe-581ec1f56ec8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/push/acknowledge","urlObject":{"path":["verification-srv","push","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"7825f8a9-5fb4-491f-b5be-8d3f9ffdb1b9","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"4c3d3c89-d36c-445b-9dbe-581ec1f56ec8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/push/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"8f195511-4d49-4178-a4c4-0f1ad280c1c0","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"4c3d3c89-d36c-445b-9dbe-581ec1f56ec8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/push/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"9148c639-8170-4c4f-8e64-176c659f0976","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"4c3d3c89-d36c-445b-9dbe-581ec1f56ec8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/push/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"cad60702-300f-47b8-94e0-b79256544c39","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"4c3d3c89-d36c-445b-9dbe-581ec1f56ec8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/push/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"8fe0bdae-95f0-45ce-a58e-9d8052a262bc"}],"id":"7a27e1a6-75c9-4888-9d79-1fb42acdece4","_postman_id":"7a27e1a6-75c9-4888-9d79-1fb42acdece4","description":""}],"id":"b005968e-e932-4fbd-8d84-f0805ce1477c","_postman_id":"b005968e-e932-4fbd-8d84-f0805ce1477c","description":""},{"name":"TouchID","item":[{"name":"Setup","item":[{"name":"Setup","id":"6bee9c94-7f8e-45ac-940f-c975a1302a06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"123489\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/touchid/setup","urlObject":{"path":["verification-srv","touchid","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"5ce6cd81-8302-48f8-ac23-98e8f3b49859","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"99ba05a8-83d9-407e-8570-5f7d6d5b1023","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"6bee9c94-7f8e-45ac-940f-c975a1302a06"},{"name":"Scanned","id":"cae9cc78-d53b-4ded-b7fa-cf304049e7ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"de2ae18b-35e7-4876-93eb-978cdba34b53\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234555\",\n\t\t\"pushNotificationId\":\"fWF-VNGZg2U:APA91bF8h9NcVYMkWlewZu-mP38lU0nmlcIFVkvY8vwYq0h4AWIYPL-y5zsx2WistScYNJS8CWlJsPa_8IdA2-0ingTwmleLz1FZtBsZH1pqgzqXxkmNuDF8DkFRyNRPgrWpexEn8GoN\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/touchid/scanned","urlObject":{"path":["verification-srv","touchid","scanned"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"0d5366b5-984d-4cba-b123-267fd20f9155","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"93da8540-014b-4182-8351-11855cc97bd5\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"fWF-VNGZg2U:APA91bF8h9NcVYMkWlewZu-mP38lU0nmlcIFVkvY8vwYq0h4AWIYPL-y5zsx2WistScYNJS8CWlJsPa_8IdA2-0ingTwmleLz1FZtBsZH1pqgzqXxkmNuDF8DkFRyNRPgrWpexEn8GoN\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"33e812b4-e3cd-42f4-873a-b60bf3abe1d5","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"93da8540-014b-4182-8351-11855cc97bd5\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"fWF-VNGZg2U:APA91bF8h9NcVYMkWlewZu-mP38lU0nmlcIFVkvY8vwYq0h4AWIYPL-y5zsx2WistScYNJS8CWlJsPa_8IdA2-0ingTwmleLz1FZtBsZH1pqgzqXxkmNuDF8DkFRyNRPgrWpexEn8GoN\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"cae9cc78-d53b-4ded-b7fa-cf304049e7ce"},{"name":"Enroll","id":"a6f325a7-7caa-42d5-916c-07ab2e7e6a18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"de2ae18b-35e7-4876-93eb-978cdba34b53\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234555\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/touchid/enroll","urlObject":{"path":["verification-srv","touchid","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"ccea8617-c1ee-4e6d-92d4-9630a3add837","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\",\n\t\"code\":\"546878\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/sms/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e7a5972a-42b4-4b0a-82b0-4b3d9bf9f0fe","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\",\n\t\"code\":\"546878\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/sms/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"a6f325a7-7caa-42d5-916c-07ab2e7e6a18"},{"name":"Acknowledge","id":"bf1a241c-3387-4a5d-b556-0c33afbac6d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"de2ae18b-35e7-4876-93eb-978cdba34b53\",\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/touchid/acknowledge","urlObject":{"path":["verification-srv","touchid","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"158ee96d-605c-466f-8d0b-9d828b1e143e","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"11abd5e9-4cc4-4d71-8320-cb2b20014521\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"d9e52653-8c2d-4389-822d-f874f59b0546","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"11abd5e9-4cc4-4d71-8320-cb2b20014521\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"bf1a241c-3387-4a5d-b556-0c33afbac6d2"}],"id":"da235961-1ff1-4526-b27a-b5daa06f9442","_postman_id":"da235961-1ff1-4526-b27a-b5daa06f9442","description":""},{"name":"Usage","item":[{"name":"Initiate","id":"6d32b6d1-e107-4faf-bf7e-1bb228bd5302","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"6801aa40-cb8e-4666-9f67-7acbdf532d64\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"userDeviceId\":\"8fbcc214-5bd2-49e2-a7db-b7e0c2d108fc\",\n\t\"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n\t\"email\":\"developer@cidaas.de\"\n}"},"url":"{{baseurl}}/verification-srv/touchid/initiate","urlObject":{"path":["verification-srv","touchid","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"07b9d645-7245-4625-af82-fd49398f3df4","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"469f935c-677c-4808-810f-434841760198\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"userDeviceId\":\"eccc88cc-3b3a-476a-950d-a39513c83708\",\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"43214df0-587d-449a-b15c-1267b411dc45","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"469f935c-677c-4808-810f-434841760198\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"userDeviceId\":\"eccc88cc-3b3a-476a-950d-a39513c83708\",\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"6d32b6d1-e107-4faf-bf7e-1bb228bd5302"},{"name":"Authenticate","id":"dca61098-72a1-48eb-b3fd-9631876beccf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"2239425e-d15c-4199-aa64-3acbc7d36e8b\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"123455\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/touchid/authenticate","urlObject":{"path":["verification-srv","touchid","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"50137c2f-7821-47ce-a7ec-19d2249fe2c8","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"bbbdaa15-7b81-46b6-8ab7-5da1b7e1f0f8\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"d70608be-e0d5-4102-997d-b2ba51512ad8","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"bbbdaa15-7b81-46b6-8ab7-5da1b7e1f0f8\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"dca61098-72a1-48eb-b3fd-9631876beccf"},{"name":"Acknowledge","id":"3159217f-4557-4a10-8d11-307b410a518a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"bbbdaa15-7b81-46b6-8ab7-5da1b7e1f0f8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/touchid/acknowledge","urlObject":{"path":["verification-srv","touchid","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"a73f3be1-5ac5-4c1f-887c-4fc3aa04ef6a","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"bbbdaa15-7b81-46b6-8ab7-5da1b7e1f0f8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"f3bd56f0-47a4-46de-a89a-f1e6960aa081","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"bbbdaa15-7b81-46b6-8ab7-5da1b7e1f0f8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/touchid/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"3159217f-4557-4a10-8d11-307b410a518a"}],"id":"a0f358a9-7834-4604-89d2-d1e23bc2f955","_postman_id":"a0f358a9-7834-4604-89d2-d1e23bc2f955","description":""}],"id":"624ce873-e9ec-4e39-801a-ca9fabe63ccf","_postman_id":"624ce873-e9ec-4e39-801a-ca9fabe63ccf","description":""},{"name":"TOTP","item":[{"name":"Setup","item":[{"name":"Setup","id":"66902700-e9c6-467c-8b2d-51e561d84259","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/setup","urlObject":{"path":["verification-srv","totp","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"0975fed5-62ac-426c-b6a1-1f7ec387e894","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"61ad9185-f545-4ff0-8a1f-f27ba8b1fae7","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"66902700-e9c6-467c-8b2d-51e561d84259"},{"name":"Scanned","id":"72b299d5-7797-4d7d-8eb7-d312ad16b6f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"bc12b05f-1c73-4074-b110-5a4fddbe9101\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/scanned","urlObject":{"path":["verification-srv","totp","scanned"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"9bb8eacc-9e7c-4481-8992-32e9940461c4","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"bc12b05f-1c73-4074-b110-5a4fddbe9101\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"ad61fda0-9c43-4614-ab2c-940cfbd73b21","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"bc12b05f-1c73-4074-b110-5a4fddbe9101\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"72b299d5-7797-4d7d-8eb7-d312ad16b6f5"},{"name":"Enroll","id":"cd910b03-9cf7-4757-bba2-69f31045c0ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"83080e79-c583-4e58-a2e1-5257507516e8\",\n\t\"verifierPassword\":\"754440\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerprint\" : \"12345\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/enroll","urlObject":{"path":["verification-srv","totp","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"65c9349a-9682-4b19-9dc7-c2c3a6e9215c","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"83080e79-c583-4e58-a2e1-5257507516e8\",\n\t\"verifierPassword\":\"754440\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerprint\" : \"12345\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"6aa96aab-db47-4046-ad8d-cfce1b74df1f","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"83080e79-c583-4e58-a2e1-5257507516e8\",\n\t\"verifierPassword\":\"754440\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerprint\" : \"12345\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cd910b03-9cf7-4757-bba2-69f31045c0ff"},{"name":"Acknowledge","id":"1c020587-aeb1-46ad-9afe-58cbdcf1541a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"271b48ba-8c37-4028-af64-cbb42a8b721c\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/acknowledge","urlObject":{"path":["verification-srv","totp","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"196f9ae7-5103-44a6-b6d8-b66d9d62a1ba","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"271b48ba-8c37-4028-af64-cbb42a8b721c\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/totp/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"3d9a2147-f671-4945-9456-90af167efc08","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"271b48ba-8c37-4028-af64-cbb42a8b721c\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/totp/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"1c020587-aeb1-46ad-9afe-58cbdcf1541a"}],"id":"6dfeb457-51a5-4c2a-99f6-fa0f6e2d9560","_postman_id":"6dfeb457-51a5-4c2a-99f6-fa0f6e2d9560","description":""},{"name":"Usage","item":[{"name":"Initiate","id":"3c380aef-b489-4a1b-9d5c-2dc6fd6d6158","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"a259f270-6f38-408d-b5d1-756afed14b30\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"userDeviceId\" : \"44f0da7c-c9c8-432e-b678-cc2c6d3d06e9\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/totp/initiate","urlObject":{"path":["verification-srv","totp","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"2f94a35e-9330-41f7-9710-dba79172317f","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"a259f270-6f38-408d-b5d1-756afed14b30\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"userDeviceId\" : \"44f0da7c-c9c8-432e-b678-cc2c6d3d06e9\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/totp/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"fc4886d6-964c-4fd0-99fa-af1163c01333","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"a259f270-6f38-408d-b5d1-756afed14b30\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"userDeviceId\" : \"44f0da7c-c9c8-432e-b678-cc2c6d3d06e9\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/totp/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"3c380aef-b489-4a1b-9d5c-2dc6fd6d6158"},{"name":"Authenticate","id":"8ba2e7c6-e31f-4aa6-b39e-a97708a320db","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"4ae8adff-6dcf-4e9d-ac8a-38fc1a0bc51d\",\n\t\"verifierPassword\":\"448556\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerprint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/authenticate","urlObject":{"path":["verification-srv","totp","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"01d16062-3bce-4f7e-9579-369950cdc49f","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"4ae8adff-6dcf-4e9d-ac8a-38fc1a0bc51d\",\n\t\"verifierPassword\":\"448556\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerprint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"1d9d64ea-3d9d-42ab-98ab-37b44e8b6695","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"4ae8adff-6dcf-4e9d-ac8a-38fc1a0bc51d\",\n\t\"verifierPassword\":\"448556\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerprint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"8ba2e7c6-e31f-4aa6-b39e-a97708a320db"},{"name":"Acknowledge","id":"0bb0d8a5-37f3-498c-ae8b-389a8c75553d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"e320434c-a750-4780-8238-c6c19485dcc4\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/totp/acknowledge","urlObject":{"path":["verification-srv","totp","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1a0b3d80-2055-45b9-8e34-4d45cdc0a409","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"e320434c-a750-4780-8238-c6c19485dcc4\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/totp/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"4a7cc9f5-bc89-4a7a-9110-8f586aa0a81e","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"e320434c-a750-4780-8238-c6c19485dcc4\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/totp/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"90947cf8-4784-4434-bb87-7188709ca412","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"e320434c-a750-4780-8238-c6c19485dcc4\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/totp/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"a73e74c4-9f8d-4a7f-a347-4002cbef7faa","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"e320434c-a750-4780-8238-c6c19485dcc4\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/totp/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"0bb0d8a5-37f3-498c-ae8b-389a8c75553d"}],"id":"45af5a73-a0a2-4c0d-a803-f4a5130fd0c1","_postman_id":"45af5a73-a0a2-4c0d-a803-f4a5130fd0c1","description":""}],"id":"f92932be-cf1a-4dbd-8b58-8d358bfc7c5a","_postman_id":"f92932be-cf1a-4dbd-8b58-8d358bfc7c5a","description":""},{"name":"Pattern","item":[{"name":"Setup","item":[{"name":"Setup","id":"163d1db8-b4ff-4f4a-865a-672375129165","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceId\":\"1234\"\n  }\n}"},"url":"{{baseurl}}/verification-srv/pattern/setup","urlObject":{"path":["verification-srv","pattern","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"092c3c64-f1aa-4468-b524-a7bb6a3dc66b","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiJlNjM0MDk4NDI4NGM0Y2FiOTI3ZDhlNzg2MmIxNjJiMCIsImNsaWVudGlkIjoiZTYzNDA5ODQyODRjNGNhYjkyN2Q4ZTc4NjJiMTYyYjAiLCJyb2xlIjoiU0VDT05EQVJZX0FETUlOLFVTRVIiLCJhdXRoX3RpbWUiOjE1MTM5MjUwMDE4MTEsInNjb3BlIjoiY2lkYWFzOnVzZXJpbmZvIGNpZGFhczpncm91cC13cml0ZSBhZGRyZXNzIHRlc3QgcHJvZmlsZSBjaWRhYXM6dXNlcnVwZGF0ZSBob2xpZGF5bGlzdDpyZWFkIGNpZGFhczp0ZW1wbGF0ZSBwaG9uZSBjaWRhYXM6bG9naW4gY2lkYWFzOnJlZ2lzdGVyIGNvbXBhbnkgZW1haWwgY2lkYWFzOmdyb3VwLXJlYWQiLCJpc3MiOiJodHRwczovL2Rldi5jaWRhYXMuZGUiLCJleHAiOjE1MTQwMTE0MDEwMDAsImlhdCI6MTUxMzkyNTAwMSwianRpIjoiNmI4YzA3NzItZjAzZS00OGZlLWEwYmItOGEyNGIzYWViYmE3IiwiZXhwX2luIjo4NjQwMH0.vDOebrEtrej9bBwoE2KeeIudxWsBw8KON-08uq2W2iQ"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\"\n  }\n}"},"url":"http://localhost:3572/verification-srv/pattern/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"2eb852ea-87b6-4828-be9f-a6e43f36ea82","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiJlNjM0MDk4NDI4NGM0Y2FiOTI3ZDhlNzg2MmIxNjJiMCIsImNsaWVudGlkIjoiZTYzNDA5ODQyODRjNGNhYjkyN2Q4ZTc4NjJiMTYyYjAiLCJyb2xlIjoiU0VDT05EQVJZX0FETUlOLFVTRVIiLCJhdXRoX3RpbWUiOjE1MTM5MjUwMDE4MTEsInNjb3BlIjoiY2lkYWFzOnVzZXJpbmZvIGNpZGFhczpncm91cC13cml0ZSBhZGRyZXNzIHRlc3QgcHJvZmlsZSBjaWRhYXM6dXNlcnVwZGF0ZSBob2xpZGF5bGlzdDpyZWFkIGNpZGFhczp0ZW1wbGF0ZSBwaG9uZSBjaWRhYXM6bG9naW4gY2lkYWFzOnJlZ2lzdGVyIGNvbXBhbnkgZW1haWwgY2lkYWFzOmdyb3VwLXJlYWQiLCJpc3MiOiJodHRwczovL2Rldi5jaWRhYXMuZGUiLCJleHAiOjE1MTQwMTE0MDEwMDAsImlhdCI6MTUxMzkyNTAwMSwianRpIjoiNmI4YzA3NzItZjAzZS00OGZlLWEwYmItOGEyNGIzYWViYmE3IiwiZXhwX2luIjo4NjQwMH0.vDOebrEtrej9bBwoE2KeeIudxWsBw8KON-08uq2W2iQ"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\"\n  }\n}"},"url":"http://localhost:3572/verification-srv/pattern/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"3b3966cc-3358-4da6-84f1-3bde62287313","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiJlNjM0MDk4NDI4NGM0Y2FiOTI3ZDhlNzg2MmIxNjJiMCIsImNsaWVudGlkIjoiZTYzNDA5ODQyODRjNGNhYjkyN2Q4ZTc4NjJiMTYyYjAiLCJyb2xlIjoiU0VDT05EQVJZX0FETUlOLFVTRVIiLCJhdXRoX3RpbWUiOjE1MTM5MjUwMDE4MTEsInNjb3BlIjoiY2lkYWFzOnVzZXJpbmZvIGNpZGFhczpncm91cC13cml0ZSBhZGRyZXNzIHRlc3QgcHJvZmlsZSBjaWRhYXM6dXNlcnVwZGF0ZSBob2xpZGF5bGlzdDpyZWFkIGNpZGFhczp0ZW1wbGF0ZSBwaG9uZSBjaWRhYXM6bG9naW4gY2lkYWFzOnJlZ2lzdGVyIGNvbXBhbnkgZW1haWwgY2lkYWFzOmdyb3VwLXJlYWQiLCJpc3MiOiJodHRwczovL2Rldi5jaWRhYXMuZGUiLCJleHAiOjE1MTQwMTE0MDEwMDAsImlhdCI6MTUxMzkyNTAwMSwianRpIjoiNmI4YzA3NzItZjAzZS00OGZlLWEwYmItOGEyNGIzYWViYmE3IiwiZXhwX2luIjo4NjQwMH0.vDOebrEtrej9bBwoE2KeeIudxWsBw8KON-08uq2W2iQ"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\"\n  }\n}"},"url":"http://localhost:3572/verification-srv/pattern/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"163d1db8-b4ff-4f4a-865a-672375129165"}],"id":"96d0c694-ffc4-48b6-9caa-9192eb78fbff","_postman_id":"96d0c694-ffc4-48b6-9caa-9192eb78fbff","description":""},{"name":"Setup SDK","item":[{"name":"Setup","id":"c56a516b-60ac-4af3-b8c5-944d759abe04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceId\":\"1234\",\n    \"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n    \"deviceMake\":\"iPhone\",\n    \"deviceModel\":\"5s\"\n  },\n  \"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/setup","urlObject":{"path":["verification-srv","pattern","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"52d63b0d-884b-4304-9259-b9ab257996c4","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiJlNjM0MDk4NDI4NGM0Y2FiOTI3ZDhlNzg2MmIxNjJiMCIsImNsaWVudGlkIjoiZTYzNDA5ODQyODRjNGNhYjkyN2Q4ZTc4NjJiMTYyYjAiLCJyb2xlIjoiU0VDT05EQVJZX0FETUlOLFVTRVIiLCJhdXRoX3RpbWUiOjE1MTM5MjUwMDE4MTEsInNjb3BlIjoiY2lkYWFzOnVzZXJpbmZvIGNpZGFhczpncm91cC13cml0ZSBhZGRyZXNzIHRlc3QgcHJvZmlsZSBjaWRhYXM6dXNlcnVwZGF0ZSBob2xpZGF5bGlzdDpyZWFkIGNpZGFhczp0ZW1wbGF0ZSBwaG9uZSBjaWRhYXM6bG9naW4gY2lkYWFzOnJlZ2lzdGVyIGNvbXBhbnkgZW1haWwgY2lkYWFzOmdyb3VwLXJlYWQiLCJpc3MiOiJodHRwczovL2Rldi5jaWRhYXMuZGUiLCJleHAiOjE1MTQwMTE0MDEwMDAsImlhdCI6MTUxMzkyNTAwMSwianRpIjoiNmI4YzA3NzItZjAzZS00OGZlLWEwYmItOGEyNGIzYWViYmE3IiwiZXhwX2luIjo4NjQwMH0.vDOebrEtrej9bBwoE2KeeIudxWsBw8KON-08uq2W2iQ"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\"\n  }\n}"},"url":"http://localhost:3572/verification-srv/pattern/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"9956a930-6c07-4a17-aeef-34d9744cdf51","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiJlNjM0MDk4NDI4NGM0Y2FiOTI3ZDhlNzg2MmIxNjJiMCIsImNsaWVudGlkIjoiZTYzNDA5ODQyODRjNGNhYjkyN2Q4ZTc4NjJiMTYyYjAiLCJyb2xlIjoiU0VDT05EQVJZX0FETUlOLFVTRVIiLCJhdXRoX3RpbWUiOjE1MTM5MjUwMDE4MTEsInNjb3BlIjoiY2lkYWFzOnVzZXJpbmZvIGNpZGFhczpncm91cC13cml0ZSBhZGRyZXNzIHRlc3QgcHJvZmlsZSBjaWRhYXM6dXNlcnVwZGF0ZSBob2xpZGF5bGlzdDpyZWFkIGNpZGFhczp0ZW1wbGF0ZSBwaG9uZSBjaWRhYXM6bG9naW4gY2lkYWFzOnJlZ2lzdGVyIGNvbXBhbnkgZW1haWwgY2lkYWFzOmdyb3VwLXJlYWQiLCJpc3MiOiJodHRwczovL2Rldi5jaWRhYXMuZGUiLCJleHAiOjE1MTQwMTE0MDEwMDAsImlhdCI6MTUxMzkyNTAwMSwianRpIjoiNmI4YzA3NzItZjAzZS00OGZlLWEwYmItOGEyNGIzYWViYmE3IiwiZXhwX2luIjo4NjQwMH0.vDOebrEtrej9bBwoE2KeeIudxWsBw8KON-08uq2W2iQ"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\"\n  }\n}"},"url":"http://localhost:3572/verification-srv/pattern/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"d3d01de8-6a4b-4ac7-a79d-0c5dd4feddb8","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiJlNjM0MDk4NDI4NGM0Y2FiOTI3ZDhlNzg2MmIxNjJiMCIsImNsaWVudGlkIjoiZTYzNDA5ODQyODRjNGNhYjkyN2Q4ZTc4NjJiMTYyYjAiLCJyb2xlIjoiU0VDT05EQVJZX0FETUlOLFVTRVIiLCJhdXRoX3RpbWUiOjE1MTM5MjUwMDE4MTEsInNjb3BlIjoiY2lkYWFzOnVzZXJpbmZvIGNpZGFhczpncm91cC13cml0ZSBhZGRyZXNzIHRlc3QgcHJvZmlsZSBjaWRhYXM6dXNlcnVwZGF0ZSBob2xpZGF5bGlzdDpyZWFkIGNpZGFhczp0ZW1wbGF0ZSBwaG9uZSBjaWRhYXM6bG9naW4gY2lkYWFzOnJlZ2lzdGVyIGNvbXBhbnkgZW1haWwgY2lkYWFzOmdyb3VwLXJlYWQiLCJpc3MiOiJodHRwczovL2Rldi5jaWRhYXMuZGUiLCJleHAiOjE1MTQwMTE0MDEwMDAsImlhdCI6MTUxMzkyNTAwMSwianRpIjoiNmI4YzA3NzItZjAzZS00OGZlLWEwYmItOGEyNGIzYWViYmE3IiwiZXhwX2luIjo4NjQwMH0.vDOebrEtrej9bBwoE2KeeIudxWsBw8KON-08uq2W2iQ"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\"\n  }\n}"},"url":"http://localhost:3572/verification-srv/pattern/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"c56a516b-60ac-4af3-b8c5-944d759abe04"},{"name":"Setup With Usage Pass","id":"1ce02750-ac94-4260-b543-8ecc46bb3839","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n  \"usage_pass\":\"161e986e-5f29-4762-a37f-ef9b0fad0567\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/setup","urlObject":{"path":["verification-srv","pattern","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"10470954-5275-412d-994e-c0bcce201994","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiJlNjM0MDk4NDI4NGM0Y2FiOTI3ZDhlNzg2MmIxNjJiMCIsImNsaWVudGlkIjoiZTYzNDA5ODQyODRjNGNhYjkyN2Q4ZTc4NjJiMTYyYjAiLCJyb2xlIjoiU0VDT05EQVJZX0FETUlOLFVTRVIiLCJhdXRoX3RpbWUiOjE1MTM5MjUwMDE4MTEsInNjb3BlIjoiY2lkYWFzOnVzZXJpbmZvIGNpZGFhczpncm91cC13cml0ZSBhZGRyZXNzIHRlc3QgcHJvZmlsZSBjaWRhYXM6dXNlcnVwZGF0ZSBob2xpZGF5bGlzdDpyZWFkIGNpZGFhczp0ZW1wbGF0ZSBwaG9uZSBjaWRhYXM6bG9naW4gY2lkYWFzOnJlZ2lzdGVyIGNvbXBhbnkgZW1haWwgY2lkYWFzOmdyb3VwLXJlYWQiLCJpc3MiOiJodHRwczovL2Rldi5jaWRhYXMuZGUiLCJleHAiOjE1MTQwMTE0MDEwMDAsImlhdCI6MTUxMzkyNTAwMSwianRpIjoiNmI4YzA3NzItZjAzZS00OGZlLWEwYmItOGEyNGIzYWViYmE3IiwiZXhwX2luIjo4NjQwMH0.vDOebrEtrej9bBwoE2KeeIudxWsBw8KON-08uq2W2iQ"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\"\n  }\n}"},"url":"http://localhost:3572/verification-srv/pattern/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"c46b7e70-cf48-4a72-a082-608177cc761a","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiJlNjM0MDk4NDI4NGM0Y2FiOTI3ZDhlNzg2MmIxNjJiMCIsImNsaWVudGlkIjoiZTYzNDA5ODQyODRjNGNhYjkyN2Q4ZTc4NjJiMTYyYjAiLCJyb2xlIjoiU0VDT05EQVJZX0FETUlOLFVTRVIiLCJhdXRoX3RpbWUiOjE1MTM5MjUwMDE4MTEsInNjb3BlIjoiY2lkYWFzOnVzZXJpbmZvIGNpZGFhczpncm91cC13cml0ZSBhZGRyZXNzIHRlc3QgcHJvZmlsZSBjaWRhYXM6dXNlcnVwZGF0ZSBob2xpZGF5bGlzdDpyZWFkIGNpZGFhczp0ZW1wbGF0ZSBwaG9uZSBjaWRhYXM6bG9naW4gY2lkYWFzOnJlZ2lzdGVyIGNvbXBhbnkgZW1haWwgY2lkYWFzOmdyb3VwLXJlYWQiLCJpc3MiOiJodHRwczovL2Rldi5jaWRhYXMuZGUiLCJleHAiOjE1MTQwMTE0MDEwMDAsImlhdCI6MTUxMzkyNTAwMSwianRpIjoiNmI4YzA3NzItZjAzZS00OGZlLWEwYmItOGEyNGIzYWViYmE3IiwiZXhwX2luIjo4NjQwMH0.vDOebrEtrej9bBwoE2KeeIudxWsBw8KON-08uq2W2iQ"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\"\n  }\n}"},"url":"http://localhost:3572/verification-srv/pattern/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"da85607c-fb53-4b1b-8d53-d47863fe38f4","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiJlNjM0MDk4NDI4NGM0Y2FiOTI3ZDhlNzg2MmIxNjJiMCIsImNsaWVudGlkIjoiZTYzNDA5ODQyODRjNGNhYjkyN2Q4ZTc4NjJiMTYyYjAiLCJyb2xlIjoiU0VDT05EQVJZX0FETUlOLFVTRVIiLCJhdXRoX3RpbWUiOjE1MTM5MjUwMDE4MTEsInNjb3BlIjoiY2lkYWFzOnVzZXJpbmZvIGNpZGFhczpncm91cC13cml0ZSBhZGRyZXNzIHRlc3QgcHJvZmlsZSBjaWRhYXM6dXNlcnVwZGF0ZSBob2xpZGF5bGlzdDpyZWFkIGNpZGFhczp0ZW1wbGF0ZSBwaG9uZSBjaWRhYXM6bG9naW4gY2lkYWFzOnJlZ2lzdGVyIGNvbXBhbnkgZW1haWwgY2lkYWFzOmdyb3VwLXJlYWQiLCJpc3MiOiJodHRwczovL2Rldi5jaWRhYXMuZGUiLCJleHAiOjE1MTQwMTE0MDEwMDAsImlhdCI6MTUxMzkyNTAwMSwianRpIjoiNmI4YzA3NzItZjAzZS00OGZlLWEwYmItOGEyNGIzYWViYmE3IiwiZXhwX2luIjo4NjQwMH0.vDOebrEtrej9bBwoE2KeeIudxWsBw8KON-08uq2W2iQ"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\"\n  }\n}"},"url":"http://localhost:3572/verification-srv/pattern/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"1ce02750-ac94-4260-b543-8ecc46bb3839"},{"name":"Enroll","id":"13994982-2d24-4320-8fea-49afc883354a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"b087b78c-ee95-45ce-89e9-69df28ab73e8\",\n\t\"verifierPassword\":\"RED[1,2,3,4]\",\n\t\"deviceInfo\":{\n\t\"deviceId\":\"1234\",\n    \"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n    \"deviceMake\":\"iPhone\",\n    \"deviceModel\":\"5s\"\n\t},\n\t\"userDeviceId\":\"89913563-9b9e-4aa2-8f6e-4247c0de8d0e\",\n    \"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/enroll","urlObject":{"path":["verification-srv","pattern","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"3e04bb0b-3e49-47d7-a3b0-cb35e09fea36","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"b087b78c-ee95-45ce-89e9-69df28ab73e8\",\n\t\"verifierPassword\":\"RED[1,2,3,4]\",\n\t\"deviceInfo\":{\n\t\"deviceId\":\"1234\",\n    \"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n    \"deviceMake\":\"iPhone\",\n    \"deviceModel\":\"5s\"\n\t},\n\t\"userDeviceId\":\"89913563-9b9e-4aa2-8f6e-4247c0de8d0e\",\n    \"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a073125f-d9fd-4039-af67-b5e21bbe9d68","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"b087b78c-ee95-45ce-89e9-69df28ab73e8\",\n\t\"verifierPassword\":\"RED[1,2,3,4]\",\n\t\"deviceInfo\":{\n\t\"deviceId\":\"1234\",\n    \"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n    \"deviceMake\":\"iPhone\",\n    \"deviceModel\":\"5s\"\n\t},\n\t\"userDeviceId\":\"89913563-9b9e-4aa2-8f6e-4247c0de8d0e\",\n    \"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"13994982-2d24-4320-8fea-49afc883354a"},{"name":"Enroll With Usage Paas","id":"04081f55-24aa-4b8f-adbe-3c5636aef1b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n\t\"usage_pass\":\"9c8e8395-8985-4ad3-97b7-728d92aec6fc\"\n}\t"},"url":"{{baseurl}}/verification-srv/pattern/enroll","urlObject":{"path":["verification-srv","pattern","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"4d23bf15-e583-4f5c-add5-be10d57d6a41","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n\t\"usage_pass\":\"9c8e8395-8985-4ad3-97b7-728d92aec6fc\"\n}\t"},"url":"{{baseurl}}/verification-srv/pattern/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"99eba45a-cd29-48c0-8116-044c9f43d7eb","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n\t\"usage_pass\":\"9c8e8395-8985-4ad3-97b7-728d92aec6fc\"\n}\t"},"url":"{{baseurl}}/verification-srv/pattern/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"04081f55-24aa-4b8f-adbe-3c5636aef1b0"},{"name":"Acknowledge","id":"b33d17a5-0714-4030-9fc4-d3bf855b566f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"196501c5-2e17-491a-a96f-85062bb20588\",\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/acknowledge","urlObject":{"path":["verification-srv","ivr","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"2ccdbf9a-c943-4a6c-8b31-4513a528ec91","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiI1YjUyN2QxMDk0ZTE0NThjYmNiODk4NzEwYmIxMDc1MyIsImNsaWVudGlkIjoiNWI1MjdkMTA5NGUxNDU4Y2JjYjg5ODcxMGJiMTA3NTMiLCJpc19qd3RfbGF0ZXN0Ijp0cnVlLCJhdXRoX3RpbWUiOjEuNTE4Njg1OTk3RTksInJvbGVzIjpbIlNFQ09OREFSWV9BRE1JTiIsIlVTRVIiXSwiaXNzIjoiaHR0cHM6Ly9kZXYuY2lkYWFzLmRlIiwic2NvcGVzIjpbImNpZGFhczp1c2VyaW5mbyIsImNpZGFhczpncm91cC13cml0ZSIsImFkZHJlc3MiLCJ0ZXN0IiwicHJvZmlsZSIsImNpZGFhczp1c2VydXBkYXRlIiwiaG9saWRheWxpc3Q6cmVhZCIsIm1tbSIsImNpZGFhczp0ZW1wbGF0ZSIsInRlc2VyciIsInBob25lIiwiY2lkYWFzOmxvZ2luIiwidGVzdHNjb3BlIiwiY2lkYWFzOnJlZ2lzdGVyIiwiY29tcGFueSIsImVtYWlsIiwiY2lkYWFzOmdyb3VwLXJlYWQiXSwiZXhwIjoxNTE4NzcyMzk3LCJpYXQiOjE1MTg2ODU5OTcsImp0aSI6ImRkYjRlZjgwLWU1YjktNDRhOS1hZDc0LTEyNDRkOTIwNjU3NSIsImV4cF9pbiI6ODY0MDB9.SZbQ1r8TokyOZql-C19AYsdJF9L43utsng0dcDfc7Vs"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"cd27ea7f-bdac-4eff-8f34-a7c243313874\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"https://dev.cidaas.de/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"84fb7f2d-82f8-4925-96e9-8d6bd611884b","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiI1YjUyN2QxMDk0ZTE0NThjYmNiODk4NzEwYmIxMDc1MyIsImNsaWVudGlkIjoiNWI1MjdkMTA5NGUxNDU4Y2JjYjg5ODcxMGJiMTA3NTMiLCJpc19qd3RfbGF0ZXN0Ijp0cnVlLCJhdXRoX3RpbWUiOjEuNTE4Njg1OTk3RTksInJvbGVzIjpbIlNFQ09OREFSWV9BRE1JTiIsIlVTRVIiXSwiaXNzIjoiaHR0cHM6Ly9kZXYuY2lkYWFzLmRlIiwic2NvcGVzIjpbImNpZGFhczp1c2VyaW5mbyIsImNpZGFhczpncm91cC13cml0ZSIsImFkZHJlc3MiLCJ0ZXN0IiwicHJvZmlsZSIsImNpZGFhczp1c2VydXBkYXRlIiwiaG9saWRheWxpc3Q6cmVhZCIsIm1tbSIsImNpZGFhczp0ZW1wbGF0ZSIsInRlc2VyciIsInBob25lIiwiY2lkYWFzOmxvZ2luIiwidGVzdHNjb3BlIiwiY2lkYWFzOnJlZ2lzdGVyIiwiY29tcGFueSIsImVtYWlsIiwiY2lkYWFzOmdyb3VwLXJlYWQiXSwiZXhwIjoxNTE4NzcyMzk3LCJpYXQiOjE1MTg2ODU5OTcsImp0aSI6ImRkYjRlZjgwLWU1YjktNDRhOS1hZDc0LTEyNDRkOTIwNjU3NSIsImV4cF9pbiI6ODY0MDB9.SZbQ1r8TokyOZql-C19AYsdJF9L43utsng0dcDfc7Vs"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"cd27ea7f-bdac-4eff-8f34-a7c243313874\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"https://dev.cidaas.de/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"b33d17a5-0714-4030-9fc4-d3bf855b566f"},{"name":"Scanned","id":"1c1e665c-038e-43f6-a11f-6d5010b2f15c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"c5aed444-eb94-40f3-958e-f9871102deb4\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\",\n\t\t\"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t},\n\t\"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/scanned","urlObject":{"path":["verification-srv","pattern","scanned"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"6b4c33e5-69a5-4aeb-a46a-d2375f49c45a","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"c5aed444-eb94-40f3-958e-f9871102deb4\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\",\n\t\t\"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t},\n\t\"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"statusId\": \"a2b37393-8903-408c-93cf-2cdd410d2218\"\n    }\n}"},{"id":"88c5b96b-f8c8-44b4-a14b-1a8de10a1760","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"c5aed444-eb94-40f3-958e-f9871102deb4\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\",\n\t\t\"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t},\n\t\"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"1c1e665c-038e-43f6-a11f-6d5010b2f15c"},{"name":"Scanned With Usage Pass","id":"4f7dbfff-249a-4a69-ba09-b7ce5ccba4ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"usage_pass\":\"bca1b927-cda4-462a-8030-cce4b544c33e\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/scanned","urlObject":{"path":["verification-srv","pattern","scanned"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"2fd9b3e4-7622-43d1-bfcc-feedebe77b88","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"usage_pass\":\"bca1b927-cda4-462a-8030-cce4b544c33e\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"statusId\": \"a2b37393-8903-408c-93cf-2cdd410d2218\"\n    }\n}"},{"id":"7bca502c-7f58-4c03-a37a-b4c540cf2138","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"usage_pass\":\"bca1b927-cda4-462a-8030-cce4b544c33e\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"4f7dbfff-249a-4a69-ba09-b7ce5ccba4ca"}],"id":"c47b3242-b7e3-4d66-8989-0973e6593186","event":[{"listen":"prerequest","script":{"id":"885d6ab4-5275-4169-a547-05ca559e90ee","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a81812e6-3215-4c6c-9cb1-583f7e7a10ad","type":"text/javascript","exec":[""]}}],"_postman_id":"c47b3242-b7e3-4d66-8989-0973e6593186","description":""},{"name":"Usage","item":[{"name":"Initiate","id":"c6e043b6-f124-452d-a474-39b0cf6cd953","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"4505f49b-c3ed-47b9-b818-9c8546546544\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"userDeviceId\":\"1873815c-8bb3-42cc-86e0-d72654d89146\",\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/initiate","urlObject":{"path":["verification-srv","pattern","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"157a28ab-0c92-4f8a-b6d5-fb9529e324c3","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"4505f49b-c3ed-47b9-b818-9c8546546544\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"userDeviceId\":\"1873815c-8bb3-42cc-86e0-d72654d89146\",\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"f75b61b6-7a1e-442e-967c-d7b448835504","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"4505f49b-c3ed-47b9-b818-9c8546546544\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"userDeviceId\":\"1873815c-8bb3-42cc-86e0-d72654d89146\",\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"c6e043b6-f124-452d-a474-39b0cf6cd953"},{"name":"Authenticate","id":"900b9835-a8ee-4a7d-b97e-8c3ac300dfbb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"d42d2291-5a95-42be-86a9-8d632cf056c7\",\n\t\"verifierPassword\":\"RED[1,2,3,4]\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/pattern/authenticate","urlObject":{"path":["verification-srv","pattern","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"932d8fa5-d28a-41c1-98a2-5c71f34313df","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"d42d2291-5a95-42be-86a9-8d632cf056c7\",\n\t\"verifierPassword\":\"RED[1,2,3,4]\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/pattern/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"900b9835-a8ee-4a7d-b97e-8c3ac300dfbb"},{"name":"Acknowledge","id":"6bad2d85-3008-42a9-89b6-ccd3563c0e10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"d046b90b-3ce9-4905-88ab-428103de7bf0\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/acknowledge","urlObject":{"path":["verification-srv","ivr","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"07c33db5-241b-4395-a808-0f50b7074afa","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"d046b90b-3ce9-4905-88ab-428103de7bf0\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"a7b5388f-1055-4393-85df-7132e25e7243","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"d046b90b-3ce9-4905-88ab-428103de7bf0\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"6bad2d85-3008-42a9-89b6-ccd3563c0e10"}],"id":"4a9899fa-7cf6-467b-b270-42587e89ecb1","_postman_id":"4a9899fa-7cf6-467b-b270-42587e89ecb1","description":""},{"name":"Usage SDK","item":[{"name":"Initiate","id":"97adb4c9-83ce-476f-8808-a9c1a73d1715","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\",\n    \t\"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n\t\t\"deviceMake\":\"iPhone\",\n    \t\"deviceModel\":\"5s\"\n\t},\n\t\"userDeviceId\":\"1234\",\n\t\"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n\t\"email\":\"developer@cidaas.de\",\n\t\"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/initiate","urlObject":{"path":["verification-srv","pattern","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"4a9db160-42e1-47a0-b07e-922837a679b8","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\",\n    \t\"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n\t\t\"deviceMake\":\"iPhone\",\n    \t\"deviceModel\":\"5s\"\n\t},\n\t\"userDeviceId\":\"1234\",\n\t\"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n\t\"email\":\"developer@cidaas.de\",\n\t\"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"ea9b9674-362d-4576-8d5b-2b1913e81d21","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\",\n    \t\"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n\t\t\"deviceMake\":\"iPhone\",\n    \t\"deviceModel\":\"5s\"\n\t},\n\t\"userDeviceId\":\"1234\",\n\t\"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n\t\"email\":\"developer@cidaas.de\",\n\t\"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"97adb4c9-83ce-476f-8808-a9c1a73d1715"},{"name":"Initiate with usage pass","id":"8f6e48ae-e6fa-4dcf-9b24-81f5cd2e3913","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n\t\"usage_pass\":\"9b114331-bbd8-4d00-a887-b0031049fbb7\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/initiate","urlObject":{"path":["verification-srv","pattern","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"27b83816-4ec7-4b03-8f52-9deda92a8375","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n\t\"usage_pass\":\"9b114331-bbd8-4d00-a887-b0031049fbb7\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"f498a185-8270-4dd4-b56e-d6f4cc619e4b","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n\t\"usage_pass\":\"9b114331-bbd8-4d00-a887-b0031049fbb7\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"8f6e48ae-e6fa-4dcf-9b24-81f5cd2e3913"},{"name":"Authenticate","id":"74fe4f32-6f2b-46c7-a68e-cb530027c2ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"2dcd9bdd-ac81-467d-a635-9b3aa6646a59\",\n\t\"verifierPassword\":\"RED[1,2,3,4]\",\n\t\"deviceInfo\":{\n\t\t\t\"deviceId\":\"1234\",\n    \t\"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n\t\t\"deviceMake\":\"iPhone\",\n    \t\"deviceModel\":\"5s\"\n\t},\n\t\"userDeviceId\":\"89913563-9b9e-4aa2-8f6e-4247c0de8d0e\",\n\t\"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n\t\n}"},"url":"{{baseurl}}/verification-srv/pattern/authenticate","urlObject":{"path":["verification-srv","pattern","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"e6179a5b-7c8d-4271-866d-94f4f5cdcb25","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"2dcd9bdd-ac81-467d-a635-9b3aa6646a59\",\n\t\"verifierPassword\":\"RED[1,2,3,4]\",\n\t\"deviceInfo\":{\n\t\t\t\"deviceId\":\"1234\",\n    \t\"pushNotificationId\":\"dpeJwoTWvm0:APA91bFB3zEmhFf4ljt9mbac8c7TL5PebRzxqsl5WxbdwK__EWzBRLJ9r8ldQ2D0Y8TNst_W2eAWfghfs3c38E_uF8UXmPYoEIXKvlEcHeZc-Q8kWdNKc7lLV24NaupQYxjHOCQ-76Eo\",\n\t\t\"deviceMake\":\"iPhone\",\n    \t\"deviceModel\":\"5s\"\n\t},\n\t\"userDeviceId\":\"89913563-9b9e-4aa2-8f6e-4247c0de8d0e\",\n\t\"client_id\":\"56ff8181-f8ea-407f-bc9d-838482ac7d26\"\n\t\n}"},"url":"{{baseurl}}/verification-srv/pattern/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"74fe4f32-6f2b-46c7-a68e-cb530027c2ad"},{"name":"Authenticate With Usage Pass","id":"eb62755f-ef5d-4722-aa1d-97eecc1fc4ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n\t\"usage_pass\":\"a5b1aa3d-1e32-4557-85f5-484808a4b10c\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/authenticate","urlObject":{"path":["verification-srv","pattern","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"8ed76c7e-c801-416d-ba2d-5b5fe519dd17","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n\t\"usage_pass\":\"a5b1aa3d-1e32-4557-85f5-484808a4b10c\"\n}"},"url":"{{baseurl}}/verification-srv/pattern/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"eb62755f-ef5d-4722-aa1d-97eecc1fc4ad"},{"name":"Acknowledge","id":"56ab395e-ddc7-41da-a81f-28327b194e03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"d046b90b-3ce9-4905-88ab-428103de7bf0\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/acknowledge","urlObject":{"path":["verification-srv","ivr","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"30cbbbc5-ec8f-4053-b3c8-dd3a6a12d4cd","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"d046b90b-3ce9-4905-88ab-428103de7bf0\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"506bbaa2-0fb1-44a2-8ae3-e31f1a97341b","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"d046b90b-3ce9-4905-88ab-428103de7bf0\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"56ab395e-ddc7-41da-a81f-28327b194e03"}],"id":"77e894fc-24a7-4ec0-8eaf-421d142347c8","_postman_id":"77e894fc-24a7-4ec0-8eaf-421d142347c8","description":""}],"id":"c2d812ef-9efe-4716-bb80-5ec8a9c96e5b","_postman_id":"c2d812ef-9efe-4716-bb80-5ec8a9c96e5b","description":""},{"name":"IVR","item":[{"name":"Setup","item":[{"name":"Setup","id":"424fc8be-916a-4d70-a515-ba8d8eee9514","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"phone\":\"+919738122401\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/setup","urlObject":{"path":["verification-srv","ivr","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"73866cab-3853-4001-84f0-27dc7a315310","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"phone\":\"+919738122401\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"83a7be55-4d3d-43ec-ba1c-84181eb948f4","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"phone\":\"+919738122401\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"424fc8be-916a-4d70-a515-ba8d8eee9514"},{"name":"Enroll","id":"38e8fae1-ae2d-4cd6-9f82-fca2c24f92ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"ae70f012-bdd5-4102-b6d5-bae076a1b8a8\",\n\t\"code\":\"620911\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/enroll","urlObject":{"path":["verification-srv","ivr","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"62d72d0c-a3bb-4756-af07-95b3a3994830","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"ae70f012-bdd5-4102-b6d5-bae076a1b8a8\",\n\t\"code\":\"620911\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"cbfe6908-18f7-4926-b9dd-83e1860f0d38","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"ae70f012-bdd5-4102-b6d5-bae076a1b8a8\",\n\t\"code\":\"620911\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"38e8fae1-ae2d-4cd6-9f82-fca2c24f92ff"},{"name":"Acknowledge","id":"18345108-29e9-4b52-96f5-4f51e3b9e792","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"ae70f012-bdd5-4102-b6d5-bae076a1b8a8\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/acknowledge","urlObject":{"path":["verification-srv","ivr","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"a47fd28b-b0ee-4854-af1d-23c3fb2f6dd9","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"ae70f012-bdd5-4102-b6d5-bae076a1b8a8\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"b11afe67-0e7c-4567-80b2-0bc8e5f771d6","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"ae70f012-bdd5-4102-b6d5-bae076a1b8a8\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"18345108-29e9-4b52-96f5-4f51e3b9e792"}],"id":"4d45e147-4224-4221-aaad-37d09c712db0","_postman_id":"4d45e147-4224-4221-aaad-37d09c712db0","description":""},{"name":"Usage","item":[{"name":"Initiate","id":"05f9d6cd-3d36-4bc8-bb23-c0deee9ef1f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"e318eb54-9617-4cac-9d52-40ed929fd06f\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"phone\":\"+919738122401\"\n}"},"url":"{{baseurl}}/verification-srv/ivr/initiate","urlObject":{"path":["verification-srv","ivr","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"4f453ced-62a6-4dbf-8915-f19902c6aa8f","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"e318eb54-9617-4cac-9d52-40ed929fd06f\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"phone\":\"+919738122401\"\n}"},"url":"{{baseurl}}/verification-srv/ivr/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"b9400741-3272-444e-ac4d-c18848d25d52","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"e318eb54-9617-4cac-9d52-40ed929fd06f\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"phone\":\"+919738122401\"\n}"},"url":"{{baseurl}}/verification-srv/ivr/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"05f9d6cd-3d36-4bc8-bb23-c0deee9ef1f6"},{"name":"Authenticate","id":"a8270391-8a6c-434d-adcb-ad69beda95f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"1325d4ac-c9c1-4a4b-8d7a-5eb11131e9a8\",\n\t\"code\":\"654393\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/authenticate","urlObject":{"path":["verification-srv","ivr","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"67f046b4-9154-4a32-9e0a-543ea09533fc","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"1325d4ac-c9c1-4a4b-8d7a-5eb11131e9a8\",\n\t\"code\":\"654393\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"94e0d25c-ffca-41c2-b274-ceed62c0b348","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"1325d4ac-c9c1-4a4b-8d7a-5eb11131e9a8\",\n\t\"code\":\"654393\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"a8270391-8a6c-434d-adcb-ad69beda95f0"},{"name":"Acknowledge","id":"dec091b1-ffca-4ce6-8297-396f732b1aab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"1325d4ac-c9c1-4a4b-8d7a-5eb11131e9a8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/ivr/acknowledge","urlObject":{"path":["verification-srv","ivr","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"8ce5ed11-95b9-4f35-b2b1-62e11b92a92e","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"1325d4ac-c9c1-4a4b-8d7a-5eb11131e9a8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"cc791872-71f9-435c-82f8-3d2671fa7ac1","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"1325d4ac-c9c1-4a4b-8d7a-5eb11131e9a8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"d39f896a-fc4d-4c75-b610-370dd7a8748c","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"1325d4ac-c9c1-4a4b-8d7a-5eb11131e9a8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"e0d640dc-60ff-4854-aacb-cc4943cd1551","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"1325d4ac-c9c1-4a4b-8d7a-5eb11131e9a8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/ivr/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"dec091b1-ffca-4ce6-8297-396f732b1aab"}],"id":"8a8260fb-3eb6-40be-a5c2-fc0635c2b56c","_postman_id":"8a8260fb-3eb6-40be-a5c2-fc0635c2b56c","description":""}],"id":"fc308c88-daf4-4869-a326-2a15728301a5","_postman_id":"fc308c88-daf4-4869-a326-2a15728301a5","description":""},{"name":"SMS","item":[{"name":"Setup","item":[{"name":"1. http://localhost:3572/verification-srv/sms/setup","id":"2256ff07-46f5-41fa-9115-976bb7377087","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"mobile\" : \"9597598167\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/setup","urlObject":{"path":["verification-srv","sms","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1fb5c77e-43e1-42c9-bd19-c80aa70cdad0","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"mobile\" : \"9597598167\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"},{"id":"4d89736c-9108-4c0b-8d86-ec8a853074d8","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"mobile\" : \"9597598167\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"2256ff07-46f5-41fa-9115-976bb7377087"},{"name":"2. http://localhost:3572/verification-srv/sms/enroll","id":"03f72445-08a5-4c4f-add1-34a2b7fff832","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\",\n\t\"code\":\"546878\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/enroll","urlObject":{"path":["verification-srv","sms","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"8abc3de3-274b-495c-842f-927227ba16a2","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\",\n\t\"code\":\"546878\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"e7d9ece2-dccc-4357-806a-aa0bf0f87ada","name":"2. http://localhost:3572/verification-srv/sms/enroll","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\",\n\t\"code\":\"546878\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"03f72445-08a5-4c4f-add1-34a2b7fff832"},{"name":"http://localhost:3572/verification-srv/sms/acknowledge","id":"b15ab081-28ee-44d7-8f49-427ec30d0330","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"a2b37393-8903-408c-93cf-2cdd410d2218\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/acknowledge","urlObject":{"path":["verification-srv","sms","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"6d529c7d-3ef5-42a2-b650-f3d6f04aa020","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"a2b37393-8903-408c-93cf-2cdd410d2218\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/sms/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"8ea292ec-7fdc-496e-858a-da938824395d","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"a2b37393-8903-408c-93cf-2cdd410d2218\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"b15ab081-28ee-44d7-8f49-427ec30d0330"}],"id":"d983617a-7dbf-48d3-ac62-0372636b7c15","_postman_id":"d983617a-7dbf-48d3-ac62-0372636b7c15","description":""},{"name":"Usage","item":[{"name":"1 http://localhost:3572/verification-srv/sms/initiate","id":"42bf3237-527f-474a-a058-7960c9e32d97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MULTIFACTOR_AUTHENTICATION\",\n\t\"email\":\"developer@cidaas.de\",\n\t\"signature_data\":{\"test\":\"test\"}\n}"},"url":"{{baseurl}}/verification-srv/sms/initiate","urlObject":{"path":["verification-srv","sms","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"30c2fb27-5622-47bc-af66-d29f527adc16","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MULTIFACTOR_AUTHENTICATION\",\n\t\"email\":\"developer@cidaas.de\",\n\t\"signature_data\":{\"test\":\"test\"}\n}"},"url":"{{baseurl}}/verification-srv/sms/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"4d9fd3d0-54f1-4818-8684-dacb1c2e8d4e","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MULTIFACTOR_AUTHENTICATION\",\n\t\"email\":\"developer@cidaas.de\",\n\t\"signature_data\":{\"test\":\"test\"}\n}"},"url":"{{baseurl}}/verification-srv/sms/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"42bf3237-527f-474a-a058-7960c9e32d97"},{"name":"2 http://localhost:3572/verification-srv/sms/authenticate","id":"7a8b6f84-44f0-4a35-8e85-4493cda43500","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"811ebcdc-c900-43ab-8a4b-53b244d1b197\",\n\t\"code\":\"654580\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"signature_data\":{\"test\":\"test\"}\n}"},"url":"{{baseurl}}/verification-srv/sms/authenticate","urlObject":{"path":["verification-srv","sms","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"3bfafda9-bfae-4fc8-b0c6-96aee35f192a","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"811ebcdc-c900-43ab-8a4b-53b244d1b197\",\n\t\"code\":\"654580\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"signature_data\":{\"test\":\"test\"}\n}"},"url":"{{baseurl}}/verification-srv/sms/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"526cee25-1c72-45d5-8422-f40052006af1","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"811ebcdc-c900-43ab-8a4b-53b244d1b197\",\n\t\"code\":\"654580\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"signature_data\":{\"test\":\"test\"}\n}"},"url":"{{baseurl}}/verification-srv/sms/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"7a8b6f84-44f0-4a35-8e85-4493cda43500"},{"name":"http://localhost:3572/verification-srv/sms/acknowledge","id":"ca34d2ed-35a9-4687-bdb1-c265abe39d59","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"e938c26d-8076-48e7-9283-96a80bc597b7\",\n\t\"code\":\"225652\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/acknowledge","urlObject":{"path":["verification-srv","sms","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"04b8bb52-d2a9-4e1a-bb67-f5b7e50136f1","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"e938c26d-8076-48e7-9283-96a80bc597b7\",\n\t\"code\":\"225652\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"097608fd-169a-49d0-baaf-6c9810f2fc11","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"e938c26d-8076-48e7-9283-96a80bc597b7\",\n\t\"code\":\"225652\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"f3315922-8c14-4fe3-994d-80ec331ffd97","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"e938c26d-8076-48e7-9283-96a80bc597b7\",\n\t\"code\":\"225652\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"140","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"fc6c04d9-9bf9-46df-9dae-328761d4156b","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"e938c26d-8076-48e7-9283-96a80bc597b7\",\n\t\"code\":\"225652\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/sms/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"ca34d2ed-35a9-4687-bdb1-c265abe39d59"}],"id":"62067339-a02a-4837-a343-00c6086c19e6","_postman_id":"62067339-a02a-4837-a343-00c6086c19e6","description":""}],"id":"301340e8-587d-4efc-adf1-b1fa800f7f8e","_postman_id":"301340e8-587d-4efc-adf1-b1fa800f7f8e","description":""},{"name":"Accounts","item":[{"name":"Initiate","id":"2f094055-7eca-45ac-9cdf-4814fc9a121d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"requestId\":\"7122b370-ad4f-4f16-be5d-52fb18575141\",\n\t\"email\":\"vimalprakashts@gmail.com\",\n\t\"verificationMedium\":\"email\",\n\t\"processingType\":\"CODE\"\n}"},"url":"{{baseurl}}/verification-srv/account/initiate","urlObject":{"path":["verification-srv","account","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2f094055-7eca-45ac-9cdf-4814fc9a121d"},{"name":"Verify","id":"70c1741e-a30f-42f3-806e-039f127fec4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"accvid\":\"b1836183-bd18-4ba2-8437-7bc59467f704\",\n\t\"code\":\"974723\"\n}"},"url":"{{baseurl}}/verification-srv/account/verify","urlObject":{"path":["verification-srv","account","verify"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"70c1741e-a30f-42f3-806e-039f127fec4f"},{"name":"Generate Token By Admin","id":"7b981152-97a1-443a-86eb-1f3bc29447f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"requestId\":\"4277ac84-4f0e-4b02-9a7b-176255c1a25d\",\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\"\n}"},"url":"{{baseurl}}/token-srv/token/verification","urlObject":{"path":["token-srv","token","verification"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7b981152-97a1-443a-86eb-1f3bc29447f1"},{"name":"Generate Auth Request","id":"6740286c-1c82-4f86-a117-e669fe359585","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"c4364c44-ddda-4552-9fbc-d1281d9ad351\",\n\t\"redirect_uri\":\"http://localmanagement.cidaas.de/user-profile/editprofile\",\n\t\"response_type\":\"token\",\n\t\"scope\":\"openid profile email offline_access cidaas:admin_write\",\n\t\"nonce\":\"123\"\n}"},"url":"{{baseurl}}/authz-srv/authrequest/authz/generate","urlObject":{"path":["authz-srv","authrequest","authz","generate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6740286c-1c82-4f86-a117-e669fe359585"}],"id":"efb0d0b6-dcf6-4fed-a72f-7b604dd89d1f","_postman_id":"efb0d0b6-dcf6-4fed-a72f-7b604dd89d1f","description":""},{"name":"CommonVerification","item":[{"name":"Initiate","id":"1f3b0f3e-4855-4dc5-a5d3-219509c61607","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"email\":\"vimalprakashts@gmail.com\",\n\t\"verificationMedium\":\"email\"\n}"},"url":"{{baseurl}}/verification-srv/common/account/initiate","urlObject":{"path":["verification-srv","common","account","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1f3b0f3e-4855-4dc5-a5d3-219509c61607"},{"name":"Verify","id":"3bd2cbfc-9a63-4048-b221-500a3295d757","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"accvid\":\"8c66f40d-a770-456c-abd0-321c6202c3e3\",\n\t\"code\":\"559125\"\n}"},"url":"{{baseurl}}/verification-srv/common/account/verify","urlObject":{"path":["verification-srv","common","account","verify"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3bd2cbfc-9a63-4048-b221-500a3295d757"}],"id":"1071f510-f374-4278-b721-4d7bb76ff3e5","_postman_id":"1071f510-f374-4278-b721-4d7bb76ff3e5","description":""},{"name":"Fidou2f","item":[{"name":"Setup","item":[{"name":"1. Setup","id":"4884dd8a-c1c2-4971-8908-e646c4ed82f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/setup","urlObject":{"path":["verification-srv","fidou2f","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1037c79f-065c-4ca4-89cd-bb9d2a9eb85f","name":"http://localhost:3572/verification-srv/email/setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/email/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:09:27 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-iuOoSX8pDShhVtWo95sNMFm+4Ac\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"e15270a4-b7db-46f7-b193-21f0ed597d00\"}}"},{"id":"f21e23b4-c483-4d6b-b552-f7a0831b2d6e","name":"http://localhost:3572/verification-srv/email/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/email/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:09:27 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-iuOoSX8pDShhVtWo95sNMFm+4Ac\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"e15270a4-b7db-46f7-b193-21f0ed597d00\"}}"}],"_postman_id":"4884dd8a-c1c2-4971-8908-e646c4ed82f7"},{"name":"2. Enroll","id":"ff828c3f-8da2-4d93-83ce-afec1470987a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"7f7417a8-6068-463e-89e3-96c9ef43c711\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoTouchResponse\":{\n\t\t\"registrationData\":\"BQT-4Kk4aQQLuOMqqVJcqe-WQ-6oAfB3Z-n0Xg9YYKHtpQqCm1idL_9DuAxloXFTpxyJwIvIfOT5wYP45BiqSx02QNX6KcPs-S5OdIYvpVW1HntfaOUlfyS0tKfCHcvlEWm3_HhVMQljDUxWvusCaP1M3BZHwGQwgqPVuQoYCWC6n2cwggE0MIHboAMCAQICCm8URQNwSwqKAdwwCgYIKoZIzj0EAwIwFTETMBEGA1UEAxMKVTJGIElzc3VlcjAaFwswMDAxMDEwMDAwWhcLMDAwMTAxMDAwMFowFTETMBEGA1UEAxMKVTJGIERldmljZTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABN5b8kvhDYE07jxJ7kERbUPkWPsQs8MHGsLUV-vliwrh8LKGrDbWVhbVqVJTkMjTQ_S2E5Ty1gVtYvjHJOknq2ajFzAVMBMGCysGAQQBguUcAgEBBAQDAgUgMAoGCCqGSM49BAMCA0gAMEUCIQDBo6aOLxanIUYnBX9iu3KMngPnobpi0EZSTkVtLC8_cwIgC1945RGqGBKfbyNtkhMifZK05n7fU-gW37Bdnci5D94wRQIgM9AKvmv-k8043eEf6RPd-HlGEO9cuqon5Gxhl1-afqICIQCiJUvzezN1T-bZjYob_uAsCPxMGwpOZeo9oCYNHd4aBQ\",\n\t\t\"version\":\"U2F_V2\",\n\t\t\"challenge\":\"fBakd2S5ezy5dn3rz70Vurjde4K8Q3Joz4JX1s1Kg40\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZmluaXNoRW5yb2xsbWVudCIsImNoYWxsZW5nZSI6ImZCYWtkMlM1ZXp5NWRuM3J6NzBWdXJqZGU0SzhRM0pvejRKWDFzMUtnNDAiLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\"\n\t\t\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/enroll","urlObject":{"path":["verification-srv","fidou2f","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"4f96dc0e-9e8b-4171-9681-6a40151b2a69","name":"http://localhost:3572/verification-srv/email/confirm","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"7f7417a8-6068-463e-89e3-96c9ef43c711\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoTouchResponse\":{\n\t\t\"registrationData\":\"BQT-4Kk4aQQLuOMqqVJcqe-WQ-6oAfB3Z-n0Xg9YYKHtpQqCm1idL_9DuAxloXFTpxyJwIvIfOT5wYP45BiqSx02QNX6KcPs-S5OdIYvpVW1HntfaOUlfyS0tKfCHcvlEWm3_HhVMQljDUxWvusCaP1M3BZHwGQwgqPVuQoYCWC6n2cwggE0MIHboAMCAQICCm8URQNwSwqKAdwwCgYIKoZIzj0EAwIwFTETMBEGA1UEAxMKVTJGIElzc3VlcjAaFwswMDAxMDEwMDAwWhcLMDAwMTAxMDAwMFowFTETMBEGA1UEAxMKVTJGIERldmljZTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABN5b8kvhDYE07jxJ7kERbUPkWPsQs8MHGsLUV-vliwrh8LKGrDbWVhbVqVJTkMjTQ_S2E5Ty1gVtYvjHJOknq2ajFzAVMBMGCysGAQQBguUcAgEBBAQDAgUgMAoGCCqGSM49BAMCA0gAMEUCIQDBo6aOLxanIUYnBX9iu3KMngPnobpi0EZSTkVtLC8_cwIgC1945RGqGBKfbyNtkhMifZK05n7fU-gW37Bdnci5D94wRQIgM9AKvmv-k8043eEf6RPd-HlGEO9cuqon5Gxhl1-afqICIQCiJUvzezN1T-bZjYob_uAsCPxMGwpOZeo9oCYNHd4aBQ\",\n\t\t\"version\":\"U2F_V2\",\n\t\t\"challenge\":\"fBakd2S5ezy5dn3rz70Vurjde4K8Q3Joz4JX1s1Kg40\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZmluaXNoRW5yb2xsbWVudCIsImNoYWxsZW5nZSI6ImZCYWtkMlM1ZXp5NWRuM3J6NzBWdXJqZGU0SzhRM0pvejRKWDFzMUtnNDAiLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\"\n\t\t\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:12:51 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"cc313a90-ea4c-484b-89d1-cffe72df3358","name":"http://localhost:3572/verification-srv/email/confirm","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"7f7417a8-6068-463e-89e3-96c9ef43c711\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoTouchResponse\":{\n\t\t\"registrationData\":\"BQT-4Kk4aQQLuOMqqVJcqe-WQ-6oAfB3Z-n0Xg9YYKHtpQqCm1idL_9DuAxloXFTpxyJwIvIfOT5wYP45BiqSx02QNX6KcPs-S5OdIYvpVW1HntfaOUlfyS0tKfCHcvlEWm3_HhVMQljDUxWvusCaP1M3BZHwGQwgqPVuQoYCWC6n2cwggE0MIHboAMCAQICCm8URQNwSwqKAdwwCgYIKoZIzj0EAwIwFTETMBEGA1UEAxMKVTJGIElzc3VlcjAaFwswMDAxMDEwMDAwWhcLMDAwMTAxMDAwMFowFTETMBEGA1UEAxMKVTJGIERldmljZTBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABN5b8kvhDYE07jxJ7kERbUPkWPsQs8MHGsLUV-vliwrh8LKGrDbWVhbVqVJTkMjTQ_S2E5Ty1gVtYvjHJOknq2ajFzAVMBMGCysGAQQBguUcAgEBBAQDAgUgMAoGCCqGSM49BAMCA0gAMEUCIQDBo6aOLxanIUYnBX9iu3KMngPnobpi0EZSTkVtLC8_cwIgC1945RGqGBKfbyNtkhMifZK05n7fU-gW37Bdnci5D94wRQIgM9AKvmv-k8043eEf6RPd-HlGEO9cuqon5Gxhl1-afqICIQCiJUvzezN1T-bZjYob_uAsCPxMGwpOZeo9oCYNHd4aBQ\",\n\t\t\"version\":\"U2F_V2\",\n\t\t\"challenge\":\"fBakd2S5ezy5dn3rz70Vurjde4K8Q3Joz4JX1s1Kg40\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZmluaXNoRW5yb2xsbWVudCIsImNoYWxsZW5nZSI6ImZCYWtkMlM1ZXp5NWRuM3J6NzBWdXJqZGU0SzhRM0pvejRKWDFzMUtnNDAiLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\"\n\t\t\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:12:51 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"ff828c3f-8da2-4d93-83ce-afec1470987a"}],"id":"bb2ddc29-7c1d-4ad1-9846-ed9b731a4387","_postman_id":"bb2ddc29-7c1d-4ad1-9846-ed9b731a4387","description":""},{"name":"Usage","item":[{"name":"1. Initiate","id":"503e289d-e8de-43b7-9295-68f76ef08ec8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"68e0365d-868d-45b6-a4e9-9a133e0bd933\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"vimalprakashts@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/initiate","urlObject":{"path":["verification-srv","fidou2f","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"058c91f5-d229-459a-9fc4-71dca1949887","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"68e0365d-868d-45b6-a4e9-9a133e0bd933\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"vimalprakashts@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"132f7473-0ab3-490c-95b1-da3c4f985bc1","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"68e0365d-868d-45b6-a4e9-9a133e0bd933\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"vimalprakashts@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"dc4179d8-d924-4e8f-bbe4-2a4b984a6563","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"68e0365d-868d-45b6-a4e9-9a133e0bd933\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"vimalprakashts@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"503e289d-e8de-43b7-9295-68f76ef08ec8"},{"name":"2 Authenticate","id":"49b3f1b4-0045-4cae-a475-eaa55fd87915","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"afb893a2-ddd7-424d-94e4-50cf50abc767\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoSignTouchResponse\":{\n\t\t\"keyHandle\":\"1fopw-z5Lk50hi-lVbUee19o5SV_JLS0p8Idy-URabf8eFUxCWMNTFa-6wJo_UzcFkfAZDCCo9W5ChgJYLqfZw\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZ2V0QXNzZXJ0aW9uIiwiY2hhbGxlbmdlIjoiTjAzb0NLL3d6NzJXWVFpYTZqRHNNeDJiSkhMM2crbk04eHpLK3BBbGJ4ST0iLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\",\n\t\t\"signatureData\":\"AQAAAA4wRQIhAPKxmEHnsQ5R7oq3sNCGvBCj5HyHXMhSyG4OvkMiB8cCAiA1JetGNBRmBAGZ9_Vh6KZrdzwxPqvou1ffGmEIuSgcqg\"\n\t\t\n\t}\n\t\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/authenticate","urlObject":{"path":["verification-srv","fidou2f","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"2850fd87-d514-4686-934f-73190cc7d8fa","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"afb893a2-ddd7-424d-94e4-50cf50abc767\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoSignTouchResponse\":{\n\t\t\"keyHandle\":\"1fopw-z5Lk50hi-lVbUee19o5SV_JLS0p8Idy-URabf8eFUxCWMNTFa-6wJo_UzcFkfAZDCCo9W5ChgJYLqfZw\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZ2V0QXNzZXJ0aW9uIiwiY2hhbGxlbmdlIjoiTjAzb0NLL3d6NzJXWVFpYTZqRHNNeDJiSkhMM2crbk04eHpLK3BBbGJ4ST0iLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\",\n\t\t\"signatureData\":\"AQAAAA4wRQIhAPKxmEHnsQ5R7oq3sNCGvBCj5HyHXMhSyG4OvkMiB8cCAiA1JetGNBRmBAGZ9_Vh6KZrdzwxPqvou1ffGmEIuSgcqg\"\n\t\t\n\t}\n\t\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"dcecaaf4-10b1-4bb6-8abf-797af81d57b2","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"afb893a2-ddd7-424d-94e4-50cf50abc767\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoSignTouchResponse\":{\n\t\t\"keyHandle\":\"1fopw-z5Lk50hi-lVbUee19o5SV_JLS0p8Idy-URabf8eFUxCWMNTFa-6wJo_UzcFkfAZDCCo9W5ChgJYLqfZw\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZ2V0QXNzZXJ0aW9uIiwiY2hhbGxlbmdlIjoiTjAzb0NLL3d6NzJXWVFpYTZqRHNNeDJiSkhMM2crbk04eHpLK3BBbGJ4ST0iLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\",\n\t\t\"signatureData\":\"AQAAAA4wRQIhAPKxmEHnsQ5R7oq3sNCGvBCj5HyHXMhSyG4OvkMiB8cCAiA1JetGNBRmBAGZ9_Vh6KZrdzwxPqvou1ffGmEIuSgcqg\"\n\t\t\n\t}\n\t\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"49b3f1b4-0045-4cae-a475-eaa55fd87915"},{"name":"3. Acknowledge","id":"3196139f-54c9-4a4e-b0c9-2ffb5987a0b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"e938c26d-8076-48e7-9283-96a80bc597b7\",\n\t\"code\":\"225652\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/acknowledge","urlObject":{"path":["verification-srv","fidou2f","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"2fa52eaa-a81d-4833-abc8-255c8e3cde2d","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"e938c26d-8076-48e7-9283-96a80bc597b7\",\n\t\"code\":\"225652\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"efe80294-4392-4483-9d56-79aa879ef271","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"e938c26d-8076-48e7-9283-96a80bc597b7\",\n\t\"code\":\"225652\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"3196139f-54c9-4a4e-b0c9-2ffb5987a0b7"}],"id":"30a12c47-508e-4aec-a46a-c1889bfcc7d6","_postman_id":"30a12c47-508e-4aec-a46a-c1889bfcc7d6","description":""}],"id":"6a3d9dee-77bd-4c6d-828b-82d0af943d2c","_postman_id":"6a3d9dee-77bd-4c6d-828b-82d0af943d2c","description":""},{"name":"Fido2","item":[{"name":"Setup","item":[{"name":"1. Setup","id":"c3ba57d5-145d-4359-b7be-daff327737c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fido2/setup","urlObject":{"path":["verification-srv","fido2","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"3de937f6-2fe8-4c1d-8aa0-e95df3c985d5","name":"http://localhost:3572/verification-srv/email/setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/email/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:09:27 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-iuOoSX8pDShhVtWo95sNMFm+4Ac\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"e15270a4-b7db-46f7-b193-21f0ed597d00\"}}"},{"id":"b2f54e75-392b-4474-9f17-5824f49b650b","name":"http://localhost:3572/verification-srv/email/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/email/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:09:27 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-iuOoSX8pDShhVtWo95sNMFm+4Ac\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"e15270a4-b7db-46f7-b193-21f0ed597d00\"}}"}],"_postman_id":"c3ba57d5-145d-4359-b7be-daff327737c9"},{"name":"2. Enroll","id":"067fa7fc-9cba-4a9a-b5a1-b58f39e8614d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"fidoRequestId\":\"7f7417a8-6068-463e-89e3-96c9ef43c734\",\n\t\"statusId\":\"7f7417a8-6068-463e-89e3-96c9ef43c711\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"client_response\":{\n\t\n\t\t\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/enroll","urlObject":{"path":["verification-srv","fidou2f","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"60ee8784-7451-40f0-bf70-fd8b8d8c1c81","name":"http://localhost:3572/verification-srv/email/confirm","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"fidoRequestId\":\"7f7417a8-6068-463e-89e3-96c9ef43c734\",\n\t\"statusId\":\"7f7417a8-6068-463e-89e3-96c9ef43c711\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"client_response\":{\n\t\n\t\t\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:12:51 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"cc528c2b-14ec-4e3e-8e72-a74e814932b5","name":"http://localhost:3572/verification-srv/email/confirm","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"fidoRequestId\":\"7f7417a8-6068-463e-89e3-96c9ef43c734\",\n\t\"statusId\":\"7f7417a8-6068-463e-89e3-96c9ef43c711\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"client_response\":{\n\t\n\t\t\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:12:51 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"067fa7fc-9cba-4a9a-b5a1-b58f39e8614d"}],"id":"0a3a8a05-d329-429e-a8fd-23fc408c7d6d","_postman_id":"0a3a8a05-d329-429e-a8fd-23fc408c7d6d","description":""},{"name":"Usage","item":[{"name":"1. Initiate","id":"45aaa5c7-e6c6-46fc-9d4a-97e98fd88115","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\n\t\"physicalVerificationId\":\"68e0365d-868d-45b6-a4e9-9a133e0bd933\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"vimalprakashts@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/initiate","urlObject":{"path":["verification-srv","fidou2f","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"5556018d-5699-4a08-bc49-829ed8c8781a","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\n\t\"physicalVerificationId\":\"68e0365d-868d-45b6-a4e9-9a133e0bd933\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"vimalprakashts@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"7d56149c-620a-49e6-b742-1c56ade5aea6","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\n\t\"physicalVerificationId\":\"68e0365d-868d-45b6-a4e9-9a133e0bd933\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"vimalprakashts@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"bef7df6d-011f-4d3d-b6e2-79e606ea41bc","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\n\t\"physicalVerificationId\":\"68e0365d-868d-45b6-a4e9-9a133e0bd933\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"vimalprakashts@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"45aaa5c7-e6c6-46fc-9d4a-97e98fd88115"},{"name":"2 Authenticate","id":"abbc2716-f6ec-40a2-9283-06bf5e97d36e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"afb893a2-ddd7-424d-94e4-50cf50abc767\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoSignTouchResponse\":{\n\t\t\"keyHandle\":\"1fopw-z5Lk50hi-lVbUee19o5SV_JLS0p8Idy-URabf8eFUxCWMNTFa-6wJo_UzcFkfAZDCCo9W5ChgJYLqfZw\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZ2V0QXNzZXJ0aW9uIiwiY2hhbGxlbmdlIjoiTjAzb0NLL3d6NzJXWVFpYTZqRHNNeDJiSkhMM2crbk04eHpLK3BBbGJ4ST0iLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\",\n\t\t\"signatureData\":\"AQAAAA4wRQIhAPKxmEHnsQ5R7oq3sNCGvBCj5HyHXMhSyG4OvkMiB8cCAiA1JetGNBRmBAGZ9_Vh6KZrdzwxPqvou1ffGmEIuSgcqg\"\n\t\t\n\t}\n\t\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/authenticate","urlObject":{"path":["verification-srv","fidou2f","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"5ce1fca0-9404-4961-9669-21ab2382d8d1","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"afb893a2-ddd7-424d-94e4-50cf50abc767\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoSignTouchResponse\":{\n\t\t\"keyHandle\":\"1fopw-z5Lk50hi-lVbUee19o5SV_JLS0p8Idy-URabf8eFUxCWMNTFa-6wJo_UzcFkfAZDCCo9W5ChgJYLqfZw\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZ2V0QXNzZXJ0aW9uIiwiY2hhbGxlbmdlIjoiTjAzb0NLL3d6NzJXWVFpYTZqRHNNeDJiSkhMM2crbk04eHpLK3BBbGJ4ST0iLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\",\n\t\t\"signatureData\":\"AQAAAA4wRQIhAPKxmEHnsQ5R7oq3sNCGvBCj5HyHXMhSyG4OvkMiB8cCAiA1JetGNBRmBAGZ9_Vh6KZrdzwxPqvou1ffGmEIuSgcqg\"\n\t\t\n\t}\n\t\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"81312f63-a785-4f48-8907-2dc7325037b2","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"afb893a2-ddd7-424d-94e4-50cf50abc767\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoSignTouchResponse\":{\n\t\t\"keyHandle\":\"1fopw-z5Lk50hi-lVbUee19o5SV_JLS0p8Idy-URabf8eFUxCWMNTFa-6wJo_UzcFkfAZDCCo9W5ChgJYLqfZw\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZ2V0QXNzZXJ0aW9uIiwiY2hhbGxlbmdlIjoiTjAzb0NLL3d6NzJXWVFpYTZqRHNNeDJiSkhMM2crbk04eHpLK3BBbGJ4ST0iLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\",\n\t\t\"signatureData\":\"AQAAAA4wRQIhAPKxmEHnsQ5R7oq3sNCGvBCj5HyHXMhSyG4OvkMiB8cCAiA1JetGNBRmBAGZ9_Vh6KZrdzwxPqvou1ffGmEIuSgcqg\"\n\t\t\n\t}\n\t\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"abbc2716-f6ec-40a2-9283-06bf5e97d36e"},{"name":"3. Acknowledge","id":"6856e7e6-8b5d-4f77-afc4-b925b10def32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"e938c26d-8076-48e7-9283-96a80bc597b7\",\n\t\"code\":\"225652\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/acknowledge","urlObject":{"path":["verification-srv","fidou2f","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"77d61f1c-abca-4911-a9bd-e37a49918a35","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"e938c26d-8076-48e7-9283-96a80bc597b7\",\n\t\"code\":\"225652\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"feef80b5-8d65-428e-b66d-d132c45390a9","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"e938c26d-8076-48e7-9283-96a80bc597b7\",\n\t\"code\":\"225652\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"6856e7e6-8b5d-4f77-afc4-b925b10def32"}],"id":"1b1d4b2a-854e-454c-a324-1a1f5c92a106","_postman_id":"1b1d4b2a-854e-454c-a324-1a1f5c92a106","description":""}],"id":"6af079f0-e95f-4a48-bbf0-1ac2a83763dc","_postman_id":"6af079f0-e95f-4a48-bbf0-1ac2a83763dc","description":""},{"name":"FidoU2F Mobile","item":[{"name":"Setup","item":[{"name":"1. Setup","id":"c4aa60cf-b9a8-4070-8138-b076e0e99b9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\",\n\t\t\"pushNotificationId\":\"fbUdVviAi3I:APA91bHp6FxF3ZtaiGA1G6wn_08zH7miTSXodeLQMDv8xswPm2GfYfGjNCQYkNhKHWaF3E2DA42kA3fPW8S133XPhHakT7zbiceRL1SYziLVnZJp4nb_M59sCssM3P22EoOQRH7PE3gA\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/mobile/setup","urlObject":{"path":["verification-srv","fidou2f","mobile","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"3ccfe47d-ceae-4a8d-b7a7-8d5507097376","name":"1. Setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/fidou2f/mobile/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"676","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Sep 2018 06:56:21 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"2a4-44UqF96Fy3ptNzmccwP56Meqe+A\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Cidaas%20Management:cidaas%20devloper?secret=&t=&d=cidaas%20devloper&issuer=Cidaas%20Management&l=&sub=7243bb35-2ff2-4705-9094-52da378f852d&resolverUrl=&rns=&cid=ab4922b8-d344-426f-8af0-3a92e5f40775&rurl=http%3A%2F%2Flocalmanagement.cidaas.de&st=1ba85265-0073-4bb8-925d-744f0a7c4a8c\",\"queryString\":\"secret=&t=&d=cidaas%20devloper&issuer=Cidaas%20Management&l=&sub=7243bb35-2ff2-4705-9094-52da378f852d&resolverUrl=&rns=&cid=ab4922b8-d344-426f-8af0-3a92e5f40775&rurl=http%3A%2F%2Flocalmanagement.cidaas.de&st=1ba85265-0073-4bb8-925d-744f0a7c4a8c\",\"statusId\":\"1ba85265-0073-4bb8-925d-744f0a7c4a8c\",\"randomNumber\":\"\"}}"}],"_postman_id":"c4aa60cf-b9a8-4070-8138-b076e0e99b9a"},{"name":"2. Scanned","id":"67330e9a-2756-4f08-84cc-d8b52cb0b029","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"47a61c4b-1dec-4d0a-8245-25555fffd520\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/mobile/scanned","urlObject":{"path":["verification-srv","fidou2f","mobile","scanned"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"8503408e-ba44-4d40-a7e1-d200fe8acb60","name":"2. Scanned","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","warning":"","disabled":false},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36","warning":"","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"1ba85265-0073-4bb8-925d-744f0a7c4a8c\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/fidou2f/mobile/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"410","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Sep 2018 06:59:19 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"19a-YNqWD7EUe/KPR3RYOtDC1U5Vwms\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userDeviceId\":\"bcfac579-5e16-45cd-84f5-068ed6a27391\",\"fidoInitRequest\":{\"appId\":\"http://localmanagement.cidaas.de\",\"fidoRequestId\":\"46c71c9e-bb0a-4b81-a552-c86c4e296fde\",\"registeredKeys\":[],\"registerRequests\":[{\"challenge\":\"QvrgUtVaz_xGNYd97_U22_TA3pX2HXNXUMJ_XCQlkT8\",\"version\":\"U2F_V2\"}],\"statusId\":\"1ba85265-0073-4bb8-925d-744f0a7c4a8c\",\"type\":\"u2f_register_request\"}}}"}],"_postman_id":"67330e9a-2756-4f08-84cc-d8b52cb0b029"},{"name":"3. Check Device","id":"3dc924f8-3b4e-4fec-9969-1721ed47e421","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"47a61c4b-1dec-4d0a-8245-25555fffd520\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/mobile/check","urlObject":{"path":["verification-srv","fidou2f","mobile","check"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"5debfbd5-5911-4bdd-b88b-a90b134842b3","name":"3. Check Device","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"1ba85265-0073-4bb8-925d-744f0a7c4a8c\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"12345\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/fidou2f/mobile/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 14 Sep 2018 07:00:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"3dc924f8-3b4e-4fec-9969-1721ed47e421"},{"name":"4. Enroll","id":"ab4f8a50-949f-4706-a878-4c41f826640a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"47a61c4b-1dec-4d0a-8245-25555fffd520\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\",\n\t\t\"pushNotificationId\":\"dDrzWZQgvL8:APA91bE4Tl54Pd5tsvPVwNKa2bb1NOOB90fquuv4jax6ltMj3z-5Vvj69oRsI_eXoZk_62dkB9ojOLhtMdgGNIh90BQkV-yBWWFU_jKfn5CSHlVDDuova6VgRCSdNhFc3IICJHoYvvjY\"\n\t},\n\t\"fidoTouchResponse\":{\n\t\t\"registrationData\":\"BQTlZzbRaVfcNZDeEP_gyHfMMscHXzb-RMP6bBIuM3wQ3Clr720OxI80_kvq7bx9wFguzX9aL7aQ\\ngDt-mDqrteIZQLqZXoomcH3eTRvnL3U9YuegJ4NHsbsHntdxJ8NjwSqThO7L7tlOrP39zX8BSDti\\nchFsPjDKiwEb9d0nt-dWaRswggJPMIIBN6ADAgECAgQq2WrzMA0GCSqGSIb3DQEBCwUAMC4xLDAq\\nBgNVBAMTI1l1YmljbyBVMkYgUm9vdCBDQSBTZXJpYWwgNDU3MjAwNjMxMCAXDTE0MDgwMTAwMDAw\\nMFoYDzIwNTAwOTA0MDAwMDAwWjAxMS8wLQYDVQQDDCZZdWJpY28gVTJGIEVFIFNlcmlhbCAyMzky\\nNTczNDUxNjU1MDM4NzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABC_hoj6_pVs-Rh1ZpDUi15dI\\nmBy6bSiamPG9ff9lZoDbu-28K65gfm73cvV2sE1UxOXzL1lvJuYRFccnLPbKdZSjOzA5MCIGCSsG\\nAQQBgsQKAgQVMS4zLjYuMS40LjEuNDE0ODIuMS4yMBMGCysGAQQBguUcAgEBBAQDAgQwMA0GCSqG\\nSIb3DQEBCwUAA4IBAQCFavqLz08_Yl8pG8EVjjx-vSVSvPdXB1P1Eh2mpU0kzM-uJ87WqzESjCl-\\nW1uJBd2gIBeTHx9fWSWTWVH8AEvL4grdfY0FL5VDs0lsFbgxDhDL2bsFOCdPWD6tH0USiMPqdtBw\\nrUTlOv6o8i0fc2Jf8tWJ_jDfJmLLfLt8mWGArc-pik0BLPMTRs0RdGpYSOi-7fPjDMvZwd0iFnGy\\ng4hh9lpFNiO1GNVWf6jwo84QXfTxOVPhFOpZ4Kfy_maIZ0MuUv1qL2T3PEjNmzjy37oseks7ESjf\\nJtZqJPiV3aC2EYD0FE9rcHXDGKSa4ItY02rbHjBTZysXxaGffwoi8Q6UMEUCIQCREhsXu8jELRQp\\nbs5I1pHZgM029d78wwSbuIFsnNd7jwIgQa7u1wGZDq1kydlKckwzcfcTMA_Wxo8S2crWzaIqkfk=\\n\",\n\t\t\"version\":\"U2F_V2\",\n\t\t\"challenge\":\"yYAhjHCD3Ns02UZEsaiHUn9s6lmlQuC_u8JJLNUS7dc\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZmluaXNoRW5yb2xsbWVudCIsImNoYWxsZW5nZSI6InlZQWhq\\nSENEM05zMDJVWkVzYWlIVW45czZsbWxRdUNfdThKSkxOVVM3ZGMiLCJvcmlnaW4iOiJodHRwczpc\\nL1wvZGVtby55dWJpY28uY29tIn0=\\n\",\n\t\t\"fidoRequestId\":\"0331c0a3-47e5-4d14-9d4b-9e4ebd7bbaae\"\n\t\t\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/mobile/enroll","urlObject":{"path":["verification-srv","fidou2f","mobile","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab4f8a50-949f-4706-a878-4c41f826640a"}],"id":"bc25c789-0a8c-417b-8c22-b44a25e33bce","_postman_id":"bc25c789-0a8c-417b-8c22-b44a25e33bce","description":""},{"name":"Usage","item":[{"name":"1. Initiate","id":"7c720df6-a51b-4a05-bd31-c1975f1ac338","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\"deviceInfo\":{\n\"deviceId\":\"7ecfae3738962b83\"\n},\n    \"userDeviceId\":\"8b632890-7e6a-4c30-becf-38957b0b089a\",\n\"usageType\":\"MULTIFACTOR_AUTHENTICATION\",\n\"email\":\"supradarao@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/mobile/initiate","urlObject":{"path":["verification-srv","fidou2f","mobile","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"3ff8972e-a0cd-4f93-94dd-b27ca88548ac","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\"deviceInfo\":{\n\"deviceId\":\"7ecfae3738962b83\"\n},\n    \"userDeviceId\":\"8b632890-7e6a-4c30-becf-38957b0b089a\",\n\"usageType\":\"MULTIFACTOR_AUTHENTICATION\",\n\"email\":\"supradarao@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/mobile/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"65693b15-0e53-4af2-9abd-5fe239a73454","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\"deviceInfo\":{\n\"deviceId\":\"7ecfae3738962b83\"\n},\n    \"userDeviceId\":\"8b632890-7e6a-4c30-becf-38957b0b089a\",\n\"usageType\":\"MULTIFACTOR_AUTHENTICATION\",\n\"email\":\"supradarao@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/mobile/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"b39b9744-eee7-41f7-9cea-18bb0698bc53","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\"deviceInfo\":{\n\"deviceId\":\"7ecfae3738962b83\"\n},\n    \"userDeviceId\":\"8b632890-7e6a-4c30-becf-38957b0b089a\",\n\"usageType\":\"MULTIFACTOR_AUTHENTICATION\",\n\"email\":\"supradarao@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/mobile/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"7c720df6-a51b-4a05-bd31-c1975f1ac338"},{"name":"2 Authenticate","id":"1d2f00cf-4657-4be7-8153-18d7ccb69e8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"afb893a2-ddd7-424d-94e4-50cf50abc767\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoSignTouchResponse\":{\n\t\t\"keyHandle\":\"1fopw-z5Lk50hi-lVbUee19o5SV_JLS0p8Idy-URabf8eFUxCWMNTFa-6wJo_UzcFkfAZDCCo9W5ChgJYLqfZw\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZ2V0QXNzZXJ0aW9uIiwiY2hhbGxlbmdlIjoiTjAzb0NLL3d6NzJXWVFpYTZqRHNNeDJiSkhMM2crbk04eHpLK3BBbGJ4ST0iLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\",\n\t\t\"signatureData\":\"AQAAAA4wRQIhAPKxmEHnsQ5R7oq3sNCGvBCj5HyHXMhSyG4OvkMiB8cCAiA1JetGNBRmBAGZ9_Vh6KZrdzwxPqvou1ffGmEIuSgcqg\",\n\t\t\"fidoRequestId\":\"\"\n\t}\n\t\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/authenticate","urlObject":{"path":["verification-srv","fidou2f","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"16d0d550-d17a-4931-8663-4562c00c0c6f","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"afb893a2-ddd7-424d-94e4-50cf50abc767\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoSignTouchResponse\":{\n\t\t\"keyHandle\":\"1fopw-z5Lk50hi-lVbUee19o5SV_JLS0p8Idy-URabf8eFUxCWMNTFa-6wJo_UzcFkfAZDCCo9W5ChgJYLqfZw\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZ2V0QXNzZXJ0aW9uIiwiY2hhbGxlbmdlIjoiTjAzb0NLL3d6NzJXWVFpYTZqRHNNeDJiSkhMM2crbk04eHpLK3BBbGJ4ST0iLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\",\n\t\t\"signatureData\":\"AQAAAA4wRQIhAPKxmEHnsQ5R7oq3sNCGvBCj5HyHXMhSyG4OvkMiB8cCAiA1JetGNBRmBAGZ9_Vh6KZrdzwxPqvou1ffGmEIuSgcqg\",\n\t\t\"fidoRequestId\":\"\"\n\t}\n\t\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"2edf25c0-434a-4904-8c35-a32ba48d11e5","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"afb893a2-ddd7-424d-94e4-50cf50abc767\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"fidoSignTouchResponse\":{\n\t\t\"keyHandle\":\"1fopw-z5Lk50hi-lVbUee19o5SV_JLS0p8Idy-URabf8eFUxCWMNTFa-6wJo_UzcFkfAZDCCo9W5ChgJYLqfZw\",\n\t\t\"clientData\":\"eyJ0eXAiOiJuYXZpZ2F0b3IuaWQuZ2V0QXNzZXJ0aW9uIiwiY2hhbGxlbmdlIjoiTjAzb0NLL3d6NzJXWVFpYTZqRHNNeDJiSkhMM2crbk04eHpLK3BBbGJ4ST0iLCJvcmlnaW4iOiJodHRwczovL2xvY2FsaG9zdDo5MDAwIiwiY2lkX3B1YmtleSI6InVudXNlZCJ9\",\n\t\t\"signatureData\":\"AQAAAA4wRQIhAPKxmEHnsQ5R7oq3sNCGvBCj5HyHXMhSyG4OvkMiB8cCAiA1JetGNBRmBAGZ9_Vh6KZrdzwxPqvou1ffGmEIuSgcqg\",\n\t\t\"fidoRequestId\":\"\"\n\t}\n\t\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"1d2f00cf-4657-4be7-8153-18d7ccb69e8a"},{"name":"3. Acknowledge","id":"cd493202-55cc-4e60-b9bb-1ccc6959d67a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"ca13a9eb-05b3-4367-97e4-58ff2bad2ccc\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/mobile/acknowledge","urlObject":{"path":["verification-srv","fidou2f","mobile","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"8e9429b4-e66b-4f41-8c73-b343677576a0","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"ca13a9eb-05b3-4367-97e4-58ff2bad2ccc\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/mobile/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"a52933dc-9f9e-401b-9305-5064f9e99a70","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"ca13a9eb-05b3-4367-97e4-58ff2bad2ccc\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/fidou2f/mobile/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"cd493202-55cc-4e60-b9bb-1ccc6959d67a"}],"id":"59f5759f-0bc7-4933-bd9b-e3aab81bba2c","_postman_id":"59f5759f-0bc7-4933-bd9b-e3aab81bba2c","description":""}],"id":"2659c581-31f0-42ab-b114-4b55ffd2d80f","_postman_id":"2659c581-31f0-42ab-b114-4b55ffd2d80f","description":""},{"name":"VerificationSettings","item":[{"name":"Settings","item":[{"name":"Load configured MFA list for a user","id":"d2c9849d-71d3-4024-b6b6-42ea52bff1cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\"\n}"},"url":"{{baseurl}}/verification-srv/settings/list","urlObject":{"path":["verification-srv","settings","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2c9849d-71d3-4024-b6b6-42ea52bff1cb"},{"name":"Get configured device list","id":"00bf5fc4-3158-4272-b06d-aeac4fe60592","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/verification-srv/settings/devices/938db278-4f33-4284-9caf-0a6dda3fec48","urlObject":{"path":["verification-srv","settings","devices","938db278-4f33-4284-9caf-0a6dda3fec48"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"00bf5fc4-3158-4272-b06d-aeac4fe60592"},{"name":"Delete Verification By type","id":"b5df8609-b063-4717-aed8-fadef2964c88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/verification-srv/verification/delete/:userDeviceId/:verificationType?sub={{user_id}}","urlObject":{"path":["verification-srv","verification","delete",":userDeviceId",":verificationType"],"host":["{{baseurl}}"],"query":[{"key":"sub","value":"{{user_id}}"}],"variable":[{"id":"e97a1b06-7011-4fc6-9a28-7f1d3ec81dfb","type":"string","value":"ASDFASDF","key":"userDeviceId"},{"id":"56fd98c6-adf5-4969-b2fb-5835ad6351de","type":"string","value":"EMAIL","key":"verificationType"}]}},"response":[],"_postman_id":"b5df8609-b063-4717-aed8-fadef2964c88"},{"name":"Delete all configured verification by sub","id":"3b84c2fa-3a45-4edf-b6e3-ad13cae26cb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/verification-srv/verification/remove/:sub","urlObject":{"path":["verification-srv","verification","remove",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"ea9e6cc5-46fd-4bd0-bf5f-24edef247bfd","type":"string","value":"","key":"sub"}]}},"response":[],"_postman_id":"3b84c2fa-3a45-4edf-b6e3-ad13cae26cb1"},{"name":"List by device id","id":"9f7a72db-2bd5-4e65-b377-e46e7ea58fe3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/verification-srv/settings/listbydeviceid?email=developer@cidaas.de&userDeviceId=89913563-9b9e-4aa2-8f6e-4247c0de8d0e","urlObject":{"path":["verification-srv","settings","listbydeviceid"],"host":["{{baseurl}}"],"query":[{"key":"email","value":"developer@cidaas.de"},{"key":"userDeviceId","value":"89913563-9b9e-4aa2-8f6e-4247c0de8d0e"}],"variable":[]}},"response":[],"_postman_id":"9f7a72db-2bd5-4e65-b377-e46e7ea58fe3"}],"id":"ac7d467b-70f7-4856-8271-b87079ed3bc2","_postman_id":"ac7d467b-70f7-4856-8271-b87079ed3bc2","description":""},{"name":"Devices","item":[{"name":"updatefcm","id":"b8505fa3-2810-4f1f-9a8c-4a122de8cfc8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"deviceId\":\"1234567\",\n    \"fcmId\":\"ff2TBTG2Ob8:APA91bEQqAxzwNwh3Y4pykwp-uEkqrZnGWrihgoijHoeBjUf60KkAc2VJ80N5XnI7q5-xosEKMyCIoI4H2nFeUPDW9SZaTRids29k6Prz7xycEhm-4lQUfiX3P7POvBDKoY7WHxwgEPv\"\n}\n"},"url":"{{baseurl}}/devices/updatefcm","urlObject":{"path":["devices","updatefcm"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8505fa3-2810-4f1f-9a8c-4a122de8cfc8"},{"name":"{{baseurl}}/verification-srv/device/validate","id":"e9cf834b-a551-4e7e-8ed4-d892cb371881","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"intermediate_verifiation_id\":\"38ea8673-5a3a-4e85-a48a-973c6a2a0261\",\n\t\"access_verifier\":\"-NBjUl1sHLeMGOgimOFOtoWwhq2H5A51VoEliCN0Vh8\",\n\t\"statusId\":\"bfe48e94-30f9-4ea5-ab64-1df11c1cf03a\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\",\n    \"deviceMake\":\"iPhone\",\n    \"deviceModel\":\"5s\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/device/validate","urlObject":{"path":["verification-srv","device","validate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9cf834b-a551-4e7e-8ed4-d892cb371881"}],"id":"5771a2f9-6ec3-462c-98c7-7dc7bd15968e","_postman_id":"5771a2f9-6ec3-462c-98c7-7dc7bd15968e","description":""},{"name":"Status","item":[{"name":"Search Status","id":"47546d0e-ca1e-4c72-bf46-8d8726fde8a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\"\n}"},"url":"{{baseurl}}/verification-srv/verificationstatus/status/search","urlObject":{"path":["verification-srv","verificationstatus","status","search"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"47546d0e-ca1e-4c72-bf46-8d8726fde8a9"},{"name":"Verification Status","id":"68e39766-ff07-4053-8602-ba706c0a67cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/verification-srv/verificationstatus/verification/load/7243bb35-2ff2-4705-9094-52da378f852d?type=FACE","urlObject":{"path":["verification-srv","verificationstatus","verification","load","7243bb35-2ff2-4705-9094-52da378f852d"],"host":["{{baseurl}}"],"query":[{"key":"type","value":"FACE"}],"variable":[]}},"response":[],"_postman_id":"68e39766-ff07-4053-8602-ba706c0a67cf"},{"name":"Load Images","id":"8d189430-38d8-4bf2-85da-5ed9008fc267","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/image-srv/verification/load/d55d2422-c237-46cb-a316-ed387083243e/59872318-1779-4a8e-a590-4c0e7a9d3571/","urlObject":{"path":["image-srv","verification","load","d55d2422-c237-46cb-a316-ed387083243e","59872318-1779-4a8e-a590-4c0e7a9d3571",""],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d189430-38d8-4bf2-85da-5ed9008fc267"}],"id":"f2a2f359-365f-4df2-b3a2-3dd8f3aac88f","_postman_id":"f2a2f359-365f-4df2-b3a2-3dd8f3aac88f","description":""},{"name":"Notification","item":[{"name":"Get Initiated Auths {{deviceid}}","id":"480a663b-0830-4800-9484-dfa87cb84de4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/verification-srv/notification/initiated/ac53bc44-e86e-474f-9ddb-502544fd3155","urlObject":{"path":["verification-srv","notification","initiated","ac53bc44-e86e-474f-9ddb-502544fd3155"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"480a663b-0830-4800-9484-dfa87cb84de4"},{"name":"Reject Verifcation Request","id":"6bbdbbbe-245f-4c41-9956-0ce1fc15a84b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"6ba39b31-1163-43a5-8374-1777f947c3a0\",\n\t\"reject_reason\":\"ignore\"\n}"},"url":"{{baseurl}}/verification-srv/notification/reject","urlObject":{"path":["verification-srv","notification","reject"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6bbdbbbe-245f-4c41-9956-0ce1fc15a84b"}],"id":"b10613a7-a5b7-47b6-a2e1-747725b7c51a","_postman_id":"b10613a7-a5b7-47b6-a2e1-747725b7c51a","description":""},{"name":"Users","item":[{"name":"MFA Reports","id":"a4c747da-fc1f-44ca-87b3-bfc9932a67b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"\",\n\t\"type\":\"EMAIL\",\n\t\"skip\":0,\n\t\"take\":20\n}"},"url":"{{baseurl}}/verification-srv/users/search","urlObject":{"path":["verification-srv","users","search"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a4c747da-fc1f-44ca-87b3-bfc9932a67b5"}],"id":"3a13d3a7-ebff-4973-8be4-785a032609e1","_postman_id":"3a13d3a7-ebff-4973-8be4-785a032609e1","description":""}],"id":"2a258e71-5dfd-4cf2-a89b-dc6de2a35682","_postman_id":"2a258e71-5dfd-4cf2-a89b-dc6de2a35682","description":""},{"name":"FACE","item":[{"name":"Setup","item":[{"name":"Setup","id":"9966e669-6e0b-45fd-a525-c621d850b8b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/face/setup","urlObject":{"path":["verification-srv","face","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"2033ad9a-541e-4683-91a7-187be16e0cc4","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/face/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"9966e669-6e0b-45fd-a525-c621d850b8b3"},{"name":"Scanned","id":"500dd002-6952-41de-a36a-30dd1f2c730a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"1234555\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"bf26a7dd-dab3-4e0e-9de6-63b0711b8022\"\n}"},"url":"{{baseurl}}/verification-srv/face/scanned","urlObject":{"path":["verification-srv","face","scanned"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"9af89233-634a-4289-b08b-d71f69f883a1","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"1234555\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"bf26a7dd-dab3-4e0e-9de6-63b0711b8022\"\n}"},"url":"{{baseurl}}/verification-srv/face/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"fac6de8b-5ba1-4f2d-a8f2-faa7f27cc1da","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"1234555\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"bf26a7dd-dab3-4e0e-9de6-63b0711b8022\"\n}"},"url":"{{baseurl}}/verification-srv/face/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"500dd002-6952-41de-a36a-30dd1f2c730a"},{"name":"Check","id":"97ae6d12-6aa0-4b1e-8907-13d394e1b279","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"37a789b1-1064-4786-86bc-b15cca26b354\"\n}"},"url":"{{baseurl}}/verification-srv/face/check","urlObject":{"path":["verification-srv","face","check"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"066d7ea6-a972-4d18-ae2d-7ed24c15cf25","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"37a789b1-1064-4786-86bc-b15cca26b354\"\n}"},"url":"{{baseurl}}/verification-srv/face/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"4b21ea68-89f6-48c2-992b-624eff924357","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"37a789b1-1064-4786-86bc-b15cca26b354\"\n}"},"url":"{{baseurl}}/verification-srv/face/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"97ae6d12-6aa0-4b1e-8907-13d394e1b279"},{"name":"Enroll","id":"a22848b1-b28f-45f4-8bcf-ff59b16c393f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"photo","value":null,"type":"file"},{"key":"statusId","value":"bf26a7dd-dab3-4e0e-9de6-63b0711b8022","type":"text"},{"key":"pushNotificationId","value":"tessdsf","type":"text"},{"key":"deviceMake","value":"Apple","type":"text"},{"key":"deviceModel","value":"Iphone 6","type":"text"},{"key":"deviceId","value":"1234555","type":"text"},{"key":"attempt","value":"1","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/enroll","urlObject":{"path":["verification-srv","face","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"273b6d20-1fb8-4c76-ad05-a172fecdd6a8","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"photo","type":"file","src":[]},{"key":"statusId","value":"b89fce33-9766-4ff5-bf8b-f1b8eb28cb7a","type":"text"},{"key":"pushNotificationId","value":"tessdsf","type":"text"},{"key":"deviceMake","value":"Apple","type":"text"},{"key":"deviceModel","value":"Iphone 6","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"http://localhost:3572/verification-srv/face/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"77301711-b41c-4ad5-8925-5e06721ddd57","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"photo","type":"file","src":[]},{"key":"statusId","value":"b89fce33-9766-4ff5-bf8b-f1b8eb28cb7a","type":"text"},{"key":"pushNotificationId","value":"tessdsf","type":"text"},{"key":"deviceMake","value":"Apple","type":"text"},{"key":"deviceModel","value":"Iphone 6","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"http://localhost:3572/verification-srv/face/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"a22848b1-b28f-45f4-8bcf-ff59b16c393f"},{"name":"Acknowledge","id":"d9fa231e-bed3-4c8f-8d6a-4947be00c034","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"666fec51-a2e9-4fc8-ba3c-a9fcc4b88be2\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge","urlObject":{"path":["verification-srv","face","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1259f728-73aa-400e-a20f-9ba880569efb","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"666fec51-a2e9-4fc8-ba3c-a9fcc4b88be2\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"2c09703d-820f-4d0f-8746-ed674bbd8caf","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"666fec51-a2e9-4fc8-ba3c-a9fcc4b88be2\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"69243435-abdb-4b9f-929e-fca34ff9c420","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"666fec51-a2e9-4fc8-ba3c-a9fcc4b88be2\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"6d0aab0e-1300-4565-81a4-9b7d21ef398b","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"666fec51-a2e9-4fc8-ba3c-a9fcc4b88be2\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"d9fa231e-bed3-4c8f-8d6a-4947be00c034"}],"id":"7de390bc-2eb5-4e4f-bac1-5e2fb7d2c2f2","_postman_id":"7de390bc-2eb5-4e4f-bac1-5e2fb7d2c2f2","description":""},{"name":"Setup SDK","item":[{"name":"Setup","id":"c8f6d384-e201-44d3-be54-c4292862310c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceId\":\"1234\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\",\n    \"deviceMake\":\"iPhone\",\n    \"deviceModel\":\"5s\"\n  },\n  \"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\"\n}"},"url":"{{baseurl}}/verification-srv/face/setup","urlObject":{"path":["verification-srv","face","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"9d435bc8-10b2-4688-ad05-29fa3ec6a90e","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n  \"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n  \"deviceInfo\":{\n    \"deviceId\":\"1234\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\",\n    \"deviceMake\":\"iPhone\",\n    \"deviceModel\":\"5s\"\n  },\n  \"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\"\n}"},"url":"{{baseurl}}/verification-srv/face/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"c8f6d384-e201-44d3-be54-c4292862310c"},{"name":"Scanned with usage pass","id":"0665792d-f516-4243-aa2d-7c57f6949963","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n  \"usage_pass\":\"6ba11ed7-a501-4c36-93d7-fd9066b67110\",\n  \"statusId\":\"66896e27-9f99-43c1-9b3c-97874266cd73\",\n  \"deviceInfo\":{\n    \"deviceId\":\"1234\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\",\n    \"deviceMake\":\"iPhone\",\n    \"deviceModel\":\"5s\"\n  },\n  \"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\"\n}"},"url":"{{baseurl}}/verification-srv/face/scanned","urlObject":{"path":["verification-srv","face","scanned"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1fa04623-874e-4091-9792-63127474bc01","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n  \"usage_pass\":\"6ba11ed7-a501-4c36-93d7-fd9066b67110\",\n  \"statusId\":\"66896e27-9f99-43c1-9b3c-97874266cd73\",\n  \"deviceInfo\":{\n    \"deviceId\":\"1234\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\",\n    \"deviceMake\":\"iPhone\",\n    \"deviceModel\":\"5s\"\n  },\n  \"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\"\n}"},"url":"{{baseurl}}/verification-srv/face/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"41669af3-d0ab-4e1d-b7b9-f92947526201","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"raw","raw":"{\n  \"usage_pass\":\"6ba11ed7-a501-4c36-93d7-fd9066b67110\",\n  \"statusId\":\"66896e27-9f99-43c1-9b3c-97874266cd73\",\n  \"deviceInfo\":{\n    \"deviceId\":\"1234\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\",\n    \"deviceMake\":\"iPhone\",\n    \"deviceModel\":\"5s\"\n  },\n  \"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\"\n}"},"url":"{{baseurl}}/verification-srv/face/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"0665792d-f516-4243-aa2d-7c57f6949963"},{"name":"Enroll","id":"339b8d18-b8e6-43ef-95c5-53f8e4d860dc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"verification_api_version","value":"2"}],"body":{"mode":"formdata","formdata":[{"key":"photo","value":null,"type":"file"},{"key":"statusId","value":"66896e27-9f99-43c1-9b3c-97874266cd73","type":"text"},{"key":"pushNotificationId","value":"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag","type":"text"},{"key":"deviceMake","value":"Apple","type":"text"},{"key":"deviceModel","value":"Iphone 6","type":"text"},{"key":"deviceId","value":"1234","type":"text"},{"key":"userDeviceId","value":"89913563-9b9e-4aa2-8f6e-4247c0de8d0e","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/enroll","urlObject":{"path":["verification-srv","face","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"00f7299f-99d9-4421-b6e8-9936f9c60cc8","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"photo","type":"file","src":[]},{"key":"statusId","value":"b89fce33-9766-4ff5-bf8b-f1b8eb28cb7a","type":"text"},{"key":"pushNotificationId","value":"tessdsf","type":"text"},{"key":"deviceMake","value":"Apple","type":"text"},{"key":"deviceModel","value":"Iphone 6","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"http://localhost:3572/verification-srv/face/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"79eb3cc3-22b8-4c80-9a13-a5e476e42083","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"photo","type":"file","src":[]},{"key":"statusId","value":"b89fce33-9766-4ff5-bf8b-f1b8eb28cb7a","type":"text"},{"key":"pushNotificationId","value":"tessdsf","type":"text"},{"key":"deviceMake","value":"Apple","type":"text"},{"key":"deviceModel","value":"Iphone 6","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"http://localhost:3572/verification-srv/face/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"339b8d18-b8e6-43ef-95c5-53f8e4d860dc"},{"name":"Acknowledge","id":"e1927716-6c40-476b-a4db-2227e0414088","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"666fec51-a2e9-4fc8-ba3c-a9fcc4b88be2\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge","urlObject":{"path":["verification-srv","face","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"427c013d-1117-41f4-82a8-db41fa950fd4","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"666fec51-a2e9-4fc8-ba3c-a9fcc4b88be2\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"58b513a3-2fb7-446f-8472-8b78e6a11343","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"666fec51-a2e9-4fc8-ba3c-a9fcc4b88be2\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"601fc99c-0c41-4f82-a166-b0a35cefe8a8","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"666fec51-a2e9-4fc8-ba3c-a9fcc4b88be2\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"dd789825-38a3-4701-be6c-ba0efee9c80e","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"666fec51-a2e9-4fc8-ba3c-a9fcc4b88be2\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"e1927716-6c40-476b-a4db-2227e0414088"}],"id":"c99bd030-425d-44b3-a596-f06494a53617","_postman_id":"c99bd030-425d-44b3-a596-f06494a53617","description":""},{"name":"Usage","item":[{"name":"Initiate","id":"25332787-f4d6-4041-a8aa-98ce8e61d18e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"physicalVerificationId\":\"a6498fc8-d799-472d-ae91-cad85767cd52\",\n  \"deviceInfo\":{\n    \"deviceId\":\"1234567\",\n    \"lat\":\"12.9196165\",\n    \"lon\":\"77.66834949999999\"\n  },\n  \"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n  \"email\":\"developer@cidaas.de\",\n  \"userDeviceId\":\"890ea043-17c5-4da5-a9f9-85bac434bb60\"\n}"},"url":"{{baseurl}}/verification-srv/face/initiate","urlObject":{"path":["verification-srv","face","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"5f5bb3c8-1ff8-4e65-936c-45f791d03099","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  }\n  \n}"},"url":"http://localhost:3572/verification-srv/face/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"8d6a373c-3b7c-4db1-bd11-3998b39c98ee","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"physicalVerificationId\":\"a6498fc8-d799-472d-ae91-cad85767cd52\",\n  \"deviceInfo\":{\n    \"deviceId\":\"1234567\",\n    \"lat\":\"12.9196165\",\n    \"lon\":\"77.66834949999999\"\n  },\n  \"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n  \"email\":\"developer@cidaas.de\",\n  \"userDeviceId\":\"890ea043-17c5-4da5-a9f9-85bac434bb60\"\n}"},"url":"{{baseurl}}/verification-srv/face/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"d93948f2-2272-4ce8-b1ec-d8b494b0aaa2","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\",\n  \"locale\":\"en\",\n  \"usageType\":\"SYSTEM\"\n}"},"url":"http://localhost:3572/verification-srv/face/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"e032aebc-40c5-46a0-9c96-28ac9cec006e","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"physicalVerificationId\":\"a6498fc8-d799-472d-ae91-cad85767cd52\",\n  \"deviceInfo\":{\n    \"deviceId\":\"1234567\",\n    \"lat\":\"12.9196165\",\n    \"lon\":\"77.66834949999999\"\n  },\n  \"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n  \"email\":\"developer@cidaas.de\",\n  \"userDeviceId\":\"890ea043-17c5-4da5-a9f9-85bac434bb60\"\n}"},"url":"{{baseurl}}/verification-srv/face/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"25332787-f4d6-4041-a8aa-98ce8e61d18e"},{"name":"Authenticate","id":"d8985a05-2c72-46b7-8a65-f56d4862b9b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"46a85e3d-dc5a-4a0d-be1c-753d1817e0f5","type":"text"},{"key":"sub","value":"12345","type":"text"},{"key":"displayName","value":"vimal","type":"text","disabled":true},{"key":"photo","value":null,"type":"file"},{"key":"deviceMake","value":"apple","type":"text"},{"key":"deviceModel","value":"iphone","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/authenticate","urlObject":{"path":["verification-srv","face","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"21f0bebb-d374-423f-9fcd-ab0f5d181d1f","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"46a85e3d-dc5a-4a0d-be1c-753d1817e0f5","type":"text"},{"key":"sub","value":"12345","type":"text"},{"key":"displayName","value":"vimal","type":"text","disabled":true},{"key":"photo","value":null,"type":"file"},{"key":"deviceMake","value":"apple","type":"text"},{"key":"deviceModel","value":"iphone","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"28d59949-a41d-4be9-ae46-759aeb997652","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"46a85e3d-dc5a-4a0d-be1c-753d1817e0f5","type":"text"},{"key":"sub","value":"12345","type":"text"},{"key":"displayName","value":"vimal","type":"text","disabled":true},{"key":"photo","value":null,"type":"file"},{"key":"deviceMake","value":"apple","type":"text"},{"key":"deviceModel","value":"iphone","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"821f0218-ff48-4cbc-ba08-e1de2a90e380","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  }\n  \n}"},"url":"http://localhost:3572/verification-srv/face/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"cd010c95-2fed-4a17-a1c2-145190f5b787","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"46a85e3d-dc5a-4a0d-be1c-753d1817e0f5","type":"text"},{"key":"sub","value":"12345","type":"text"},{"key":"displayName","value":"vimal","type":"text","disabled":true},{"key":"photo","value":null,"type":"file"},{"key":"deviceMake","value":"apple","type":"text"},{"key":"deviceModel","value":"iphone","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"ce631855-9925-4bcc-8a1b-89bb0e08eed7","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\",\n  \"locale\":\"en\",\n  \"usageType\":\"SYSTEM\"\n}"},"url":"http://localhost:3572/verification-srv/face/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"ffe73ca5-eef9-4a49-a523-3d75e2e0d9b6","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"46a85e3d-dc5a-4a0d-be1c-753d1817e0f5","type":"text"},{"key":"sub","value":"12345","type":"text"},{"key":"displayName","value":"vimal","type":"text","disabled":true},{"key":"photo","value":null,"type":"file"},{"key":"deviceMake","value":"apple","type":"text"},{"key":"deviceModel","value":"iphone","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"d8985a05-2c72-46b7-8a65-f56d4862b9b2"},{"name":"Acknowledge","id":"ba0797d6-b3c0-4947-81bd-2fa64c911335","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"48fc9f3e-2ff1-4ed6-adb2-ffb0d8e93cfe\",\n        \"trackingCode\": \"282de6d3-7954-43ab-a5c6-86d695212306\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge","urlObject":{"path":["verification-srv","face","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"305a9b15-2370-4193-9d3d-a9553be66dda","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"48fc9f3e-2ff1-4ed6-adb2-ffb0d8e93cfe\",\n        \"trackingCode\": \"282de6d3-7954-43ab-a5c6-86d695212306\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"d9060176-df95-4c3d-b5dd-182c622230c9","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"48fc9f3e-2ff1-4ed6-adb2-ffb0d8e93cfe\",\n        \"trackingCode\": \"282de6d3-7954-43ab-a5c6-86d695212306\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"ba0797d6-b3c0-4947-81bd-2fa64c911335"}],"id":"22178a75-71bf-41a9-99bd-ca41d959199d","_postman_id":"22178a75-71bf-41a9-99bd-ca41d959199d","description":""},{"name":"Usage SDK","item":[{"name":"Initiate","id":"10920a6f-2b9b-4336-8d8e-69e283a89e34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n    \"deviceId\":\"1234567\",\n    \"lat\":\"12.9196165\",\n    \"lon\":\"77.66834949999999\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\"\n  },\n  \"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n  \"email\":\"developer@cidaas.de\",\n  \"userDeviceId\":\"890ea043-17c5-4da5-a9f9-85bac434bb60\",\n  \"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\"\n}"},"url":"{{baseurl}}/verification-srv/face/initiate","urlObject":{"path":["verification-srv","face","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"4ce4b098-9b1c-4914-aebd-c66898586fcc","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  }\n  \n}"},"url":"http://localhost:3572/verification-srv/face/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"81939b20-fe1b-4e0b-87b6-5a04392d4be4","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n    \"deviceId\":\"1234567\",\n    \"lat\":\"12.9196165\",\n    \"lon\":\"77.66834949999999\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\"\n  },\n  \"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n  \"email\":\"developer@cidaas.de\",\n  \"userDeviceId\":\"890ea043-17c5-4da5-a9f9-85bac434bb60\",\n  \"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\"\n}"},"url":"{{baseurl}}/verification-srv/face/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"9cb3826c-f8de-4acf-9962-bda713b5600c","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n    \"deviceId\":\"1234567\",\n    \"lat\":\"12.9196165\",\n    \"lon\":\"77.66834949999999\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\"\n  },\n  \"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n  \"email\":\"developer@cidaas.de\",\n  \"userDeviceId\":\"890ea043-17c5-4da5-a9f9-85bac434bb60\",\n  \"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\"\n}"},"url":"{{baseurl}}/verification-srv/face/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"f8741842-57f2-47f6-b5ef-b468ce0784fc","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\",\n  \"locale\":\"en\",\n  \"usageType\":\"SYSTEM\"\n}"},"url":"http://localhost:3572/verification-srv/face/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"10920a6f-2b9b-4336-8d8e-69e283a89e34"},{"name":"Initiate with usage pass","id":"28f5d979-f738-4377-8904-b6e846775011","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n    \"deviceId\":\"1234567\",\n    \"lat\":\"12.9196165\",\n    \"lon\":\"77.66834949999999\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\"\n  },\n  \"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n  \"email\":\"developer@cidaas.de\",\n  \"userDeviceId\":\"890ea043-17c5-4da5-a9f9-85bac434bb60\",\n  \"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n  \"usage_pass\":\"19c3fe2a-447c-45d5-9b2f-299eba4b52a1\"\n}"},"url":"{{baseurl}}/verification-srv/face/initiate","urlObject":{"path":["verification-srv","face","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"5a3c8827-7a3d-4556-a5d1-7bd4dc378df5","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n    \"deviceId\":\"1234567\",\n    \"lat\":\"12.9196165\",\n    \"lon\":\"77.66834949999999\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\"\n  },\n  \"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n  \"email\":\"developer@cidaas.de\",\n  \"userDeviceId\":\"890ea043-17c5-4da5-a9f9-85bac434bb60\",\n  \"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n  \"usage_pass\":\"19c3fe2a-447c-45d5-9b2f-299eba4b52a1\"\n}"},"url":"{{baseurl}}/verification-srv/face/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"5f9bc16a-b07c-421f-887b-11035e468d11","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"verification_api_version","value":"2"},{"key":"access_challenge","value":"PdRxa2tZ_TLsXmv0xt_5fSf4lDqITD3w7eFRSOe3rXE"},{"key":"access_challenge_method","value":"S256"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n    \"deviceId\":\"1234567\",\n    \"lat\":\"12.9196165\",\n    \"lon\":\"77.66834949999999\",\n    \"pushNotificationId\":\"cW8Xda8D0LU:APA91bFf_KEMeVQV5U3guzj1KD4lwbCNkux2LDoYIQBpA_k0k1J6FsmPdIqIVNsG7idFbRaAVH4owxkHvgl6gnvPjE_J7ZfJdjmLCp2zOKKr-pcCKwLhmDnDMZXhuZS0XbSFQP5F_lCF6wBmDsv74Un0iP3XwC1Rag\"\n  },\n  \"usageType\":\"PASSWORDLESS_AUTHENTICATION\",\n  \"email\":\"developer@cidaas.de\",\n  \"userDeviceId\":\"890ea043-17c5-4da5-a9f9-85bac434bb60\",\n  \"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n  \"usage_pass\":\"19c3fe2a-447c-45d5-9b2f-299eba4b52a1\"\n}"},"url":"{{baseurl}}/verification-srv/face/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"99ce73a9-d1b1-44e6-ba27-a305a27d632d","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\",\n  \"locale\":\"en\",\n  \"usageType\":\"SYSTEM\"\n}"},"url":"http://localhost:3572/verification-srv/face/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"c3633fba-8f63-4b5e-81f7-874c80c20549","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  }\n  \n}"},"url":"http://localhost:3572/verification-srv/face/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"28f5d979-f738-4377-8904-b6e846775011"},{"name":"Authenticate","id":"24e273c2-6122-40a5-89fa-a91525571f87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"07c1f4ab-5232-4380-91df-4a97d9f2ea50","type":"text"},{"key":"sub","value":"12345","type":"text"},{"key":"displayName","value":"vimal","type":"text","disabled":true},{"key":"photo","value":null,"type":"file"},{"key":"deviceMake","value":"apple","type":"text"},{"key":"deviceModel","value":"iphone","type":"text"},{"key":"deviceId","value":"1234567","type":"text"},{"key":"userDeviceId","value":"890ea043-17c5-4da5-a9f9-85bac434bb60","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/authenticate","urlObject":{"path":["verification-srv","face","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"0105a4b8-0b63-41e5-b502-0baebbd851fc","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  }\n  \n}"},"url":"http://localhost:3572/verification-srv/face/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"04c4bccc-8a77-4407-bace-c55ad115b4bc","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"07c1f4ab-5232-4380-91df-4a97d9f2ea50","type":"text"},{"key":"sub","value":"12345","type":"text"},{"key":"displayName","value":"vimal","type":"text","disabled":true},{"key":"photo","value":null,"type":"file"},{"key":"deviceMake","value":"apple","type":"text"},{"key":"deviceModel","value":"iphone","type":"text"},{"key":"deviceId","value":"1234567","type":"text"},{"key":"userDeviceId","value":"890ea043-17c5-4da5-a9f9-85bac434bb60","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"61dae28f-481b-4552-bd8a-eb9a3bdfab79","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"07c1f4ab-5232-4380-91df-4a97d9f2ea50","type":"text"},{"key":"sub","value":"12345","type":"text"},{"key":"displayName","value":"vimal","type":"text","disabled":true},{"key":"photo","value":null,"type":"file"},{"key":"deviceMake","value":"apple","type":"text"},{"key":"deviceModel","value":"iphone","type":"text"},{"key":"deviceId","value":"1234567","type":"text"},{"key":"userDeviceId","value":"890ea043-17c5-4da5-a9f9-85bac434bb60","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"67f0bfe2-5970-46df-8da8-9b72e14a64f2","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"07c1f4ab-5232-4380-91df-4a97d9f2ea50","type":"text"},{"key":"sub","value":"12345","type":"text"},{"key":"displayName","value":"vimal","type":"text","disabled":true},{"key":"photo","value":null,"type":"file"},{"key":"deviceMake","value":"apple","type":"text"},{"key":"deviceModel","value":"iphone","type":"text"},{"key":"deviceId","value":"1234567","type":"text"},{"key":"userDeviceId","value":"890ea043-17c5-4da5-a9f9-85bac434bb60","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"94fabe8b-f5c6-411b-9e9d-32572e23584d","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\",\n  \"locale\":\"en\",\n  \"usageType\":\"SYSTEM\"\n}"},"url":"http://localhost:3572/verification-srv/face/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"ec5891e6-2970-41b6-ac62-8f466074632f","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"07c1f4ab-5232-4380-91df-4a97d9f2ea50","type":"text"},{"key":"sub","value":"12345","type":"text"},{"key":"displayName","value":"vimal","type":"text","disabled":true},{"key":"photo","value":null,"type":"file"},{"key":"deviceMake","value":"apple","type":"text"},{"key":"deviceModel","value":"iphone","type":"text"},{"key":"deviceId","value":"1234567","type":"text"},{"key":"userDeviceId","value":"890ea043-17c5-4da5-a9f9-85bac434bb60","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"24e273c2-6122-40a5-89fa-a91525571f87"},{"name":"Acknowledge","id":"b10ce2d6-6508-4c07-9c80-b30e1559d8a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"48fc9f3e-2ff1-4ed6-adb2-ffb0d8e93cfe\",\n        \"trackingCode\": \"282de6d3-7954-43ab-a5c6-86d695212306\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge","urlObject":{"path":["verification-srv","face","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"56e4bf9b-994a-4890-8c2c-3a201e84ef59","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"48fc9f3e-2ff1-4ed6-adb2-ffb0d8e93cfe\",\n        \"trackingCode\": \"282de6d3-7954-43ab-a5c6-86d695212306\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"6353af20-0d06-4478-ac0e-d8cb13759a38","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"48fc9f3e-2ff1-4ed6-adb2-ffb0d8e93cfe\",\n        \"trackingCode\": \"282de6d3-7954-43ab-a5c6-86d695212306\"\n    }"},"url":"{{baseurl}}/verification-srv/face/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"b10ce2d6-6508-4c07-9c80-b30e1559d8a4"}],"id":"39296c22-3f65-42a4-8a16-7140297020b1","_postman_id":"39296c22-3f65-42a4-8a16-7140297020b1","description":""},{"name":"Access Control","item":[{"name":"webenroll","id":"a395a836-0106-4976-b0fb-966b5cec5c54","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"photo","value":null,"type":"file"},{"key":"displayName","value":"vimal","type":"text"},{"key":"sub","value":"8fdaa9f0-31cf-4ab5-b191-618db2423d47","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/webenroll","urlObject":{"path":["verification-srv","face","webenroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"636c77e3-0277-4a10-a174-b04a6a3b1df4","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"photo","value":null,"type":"file"},{"key":"displayName","value":"vimal","type":"text"},{"key":"sub","value":"8fdaa9f0-31cf-4ab5-b191-618db2423d47","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/webenroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"9f6ef967-b9ed-49a3-9f2a-22fc9f28f905","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"photo","value":null,"type":"file"},{"key":"displayName","value":"vimal","type":"text"},{"key":"sub","value":"8fdaa9f0-31cf-4ab5-b191-618db2423d47","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/webenroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"a395a836-0106-4976-b0fb-966b5cec5c54"},{"name":"Authenticate","id":"c9fc8db3-d1c4-4773-bb12-f79aef87a898","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"usageType","value":"AUTHENTICATE","type":"text"},{"key":"photo","value":null,"type":"file"}]},"url":"{{baseurl}}/verification-srv/face/anonymous/authenticate","urlObject":{"path":["verification-srv","face","anonymous","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"bfeea6e9-35b0-43c1-bb4a-2a2e55078d6c","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"usageType","value":"AUTHENTICATE","type":"text"},{"key":"photo","type":"file","src":[]}]},"url":"http://localhost:3572/verification-srv/face/anonymous/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"c8020d45-361e-40cc-a3e1-d0e47c0158bf","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"usageType","value":"AUTHENTICATE","type":"text"},{"key":"photo","type":"file","src":[]}]},"url":"http://localhost:3572/verification-srv/face/anonymous/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"c9fc8db3-d1c4-4773-bb12-f79aef87a898"}],"id":"fd6db419-0c6c-4c28-afee-08acf7eb0759","_postman_id":"fd6db419-0c6c-4c28-afee-08acf7eb0759","description":""},{"name":"Webcam","item":[{"name":"Authenticate","id":"0087224b-d570-41f4-ab60-8442224adf67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"usageType","value":"AUTHENTICATE","type":"text"},{"key":"photo","value":null,"type":"file"},{"key":"requestId","value":"adf84d9a-d467-43fb-8aee-eae567dff24d","type":"text"}]},"url":"{{baseurl}}/verification-srv/face/browser/authenticate","urlObject":{"path":["verification-srv","face","browser","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"b4517aa7-84dd-42b3-ad30-e0b1529af10b","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"usageType","value":"AUTHENTICATE","type":"text"},{"key":"photo","type":"file","src":[]}]},"url":"http://localhost:3572/verification-srv/face/anonymous/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"b864c960-3ea6-4d22-84df-b54460d3da72","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"usageType","value":"AUTHENTICATE","type":"text"},{"key":"photo","type":"file","src":[]}]},"url":"http://localhost:3572/verification-srv/face/anonymous/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"0087224b-d570-41f4-ab60-8442224adf67"}],"id":"96b8f438-b7b4-42ca-9c1a-293158223c3b","_postman_id":"96b8f438-b7b4-42ca-9c1a-293158223c3b","description":""}],"id":"c43c5577-484a-468b-bb36-9a859c1e969a","_postman_id":"c43c5577-484a-468b-bb36-9a859c1e969a","description":""},{"name":"BackupCode","item":[{"name":"Setup","item":[{"name":"Setup","id":"c79c9a46-6717-4049-be8c-196a7c428791","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/backupcode/setup","urlObject":{"path":["verification-srv","backupcode","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"61e058c5-7846-4c51-842a-295788b67d23","name":"1. http://localhost:3572/verification-srv/sms/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/backupcode/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:01:01 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-7+Ufzz9Oe9W/MKS6h0/5OFPKBOc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"a2b37393-8903-408c-93cf-2cdd410d2218\"}}"}],"_postman_id":"c79c9a46-6717-4049-be8c-196a7c428791"},{"name":"Acknowledge","id":"a7d4693b-e300-4285-a848-b4957c865afc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"9ecfb07b-3167-4b08-bc90-ce1083e66b7f\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/backupcode/acknowledge","urlObject":{"path":["verification-srv","backupcode","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"ac7f49cf-185e-4cec-8878-445df2e910dc","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiI4ZmRhYTlmMC0zMWNmLTRhYjUtYjE5MS02MThkYjI0MjNkNDciLCJhdWQiOiJjaWRhYXMiLCJjbGllbnRpZCI6ImNpZGFhcyIsInJvbGUiOiJBRE1JTixVU0VSIiwiYXV0aF90aW1lIjoxNTExMTYxMjMzMTQ4LCJzY29wZSI6ImNpZGFhczp3cml0ZSBjaWRhYXM6cmVhZCBjaWRhYXM6ZGVsZXRlIiwiaXNzIjoiaHR0cHM6Ly9jaWRhYXMtaW4tYWN0aW9uLmNpZGFhcy5kZSIsImV4cCI6MTUxMTI0NzYzMzAwMCwiaWF0IjoxNTExMTYxMjMzLCJqdGkiOiI2NjZjYTRkYS1mNzdjLTRmN2QtYTFiNS1mMmEzMjIxNWFjOTgiLCJleHBfaW4iOjg2NDAwfQ.waYKIISpvhIueDmftHN2iS5veQPJEGA6rNAk4yJJ3qI"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"trackingCode\":\"9ecfb07b-3167-4b08-bc90-ce1083e66b7f\",\n\t\"sub\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/backupcode/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"a7d4693b-e300-4285-a848-b4957c865afc"}],"id":"6e9f5303-b446-4b73-a8e8-2194bc98e7c2","_postman_id":"6e9f5303-b446-4b73-a8e8-2194bc98e7c2","description":""},{"name":"Usage","item":[{"name":"Initiate","id":"7926f68e-f288-42c0-9e4f-ef82c6766b2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"developer@cidaas.de\",\n\t\"userDeviceId\":\"89913563-9b9e-4aa2-8f6e-4247c0de8d0e\"\n}"},"url":"{{baseurl}}/verification-srv/backupcode/initiate","urlObject":{"path":["verification-srv","backupcode","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"0e8fd317-d0b3-4175-8c59-92eda6d664cf","name":"1 http://localhost:3572/verification-srv/sms/initiate","originalRequest":{"auth":{"type":"noauth"},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MFA\",\n\t\"email\":\"developer@cidaas.de\",\n\t\"userDeviceId\":\"89913563-9b9e-4aa2-8f6e-4247c0de8d0e\"\n}"},"url":"{{baseurl}}/verification-srv/backupcode/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"88","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:09:44 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"58-9BwRuIVfaQ16vPVcg1CgpL5oXZY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"7926f68e-f288-42c0-9e4f-ef82c6766b2b"},{"name":"Authenticate","id":"3c6e76ff-09d0-459c-894a-c48c3311fcfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"dc897768-eb9f-4dd2-b007-c592684f6915\",\n\t\"verifierPassword\":\"66816830\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/backupcode/authenticate","urlObject":{"path":["verification-srv","backupcode","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"cf758fc8-2249-488e-be8c-d691bf06d107","name":"2 http://localhost:3572/verification-srv/sms/authenticate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"dc897768-eb9f-4dd2-b007-c592684f6915\",\n\t\"verifierPassword\":\"66816830\",\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\",\n\t\t\"pushNotificationId\":\"sssss\",\n\t\t\"deviceMake\":\"Apple\",\n\t\t\"deviceModel\":\"Iphone 6\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/backupcode/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:10:35 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"}],"_postman_id":"3c6e76ff-09d0-459c-894a-c48c3311fcfb"},{"name":"Acknowledge","id":"be3f83c7-9d1b-4300-82db-cb97c7528f3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"4c3d3c89-d36c-445b-9dbe-581ec1f56ec8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/backupcode/acknowledge","urlObject":{"path":["verification-srv","backupcode","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"5dc01b63-ddf6-4a9e-8a04-33d75d496684","name":"http://localhost:3572/verification-srv/sms/acknowledge","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"4c3d3c89-d36c-445b-9dbe-581ec1f56ec8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/backupcode/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"140","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 20 Nov 2017 07:11:10 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"8c-JQ+oXz+Q8zvQkZclxnqRk2rXlW4\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"userId\":\"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\"trackingCode\":\"0961c2bf-e56f-49e5-a19f-9642f1b354de\"}}"},{"id":"9a6cdc8a-2c75-4a46-8658-6a1dfa175041","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk"},{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n    \"trackingCode\": \"4c3d3c89-d36c-445b-9dbe-581ec1f56ec8\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/backupcode/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"be3f83c7-9d1b-4300-82db-cb97c7528f3c"}],"id":"657f1de4-8fee-41c1-a762-11a279d9b3c8","_postman_id":"657f1de4-8fee-41c1-a762-11a279d9b3c8","description":""}],"id":"9181d03f-ad28-413f-937a-15d5ddf0f0f1","_postman_id":"9181d03f-ad28-413f-937a-15d5ddf0f0f1","description":""},{"name":"Email","item":[{"name":"Setup","item":[{"name":"Setup","id":"fb34d1a4-1e66-42e1-aeba-75ff40ed74b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/email/setup","urlObject":{"path":["verification-srv","email","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"5c94e262-28d6-411b-808a-aba4dd7b0441","name":"http://localhost:3572/verification-srv/email/setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceId\":\"1234\"\n\t}\n}"},"url":"http://localmanagement.cidaas.de/verification-srv/email/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:09:27 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-iuOoSX8pDShhVtWo95sNMFm+4Ac\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"e15270a4-b7db-46f7-b193-21f0ed597d00\"}}"},{"id":"6d794c8f-113a-4a26-9d09-c28979883e81","name":"http://localhost:3572/verification-srv/email/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg4MjlkNS03YmM2LTQxNTgtOTc1Ny0yMDA3N2VjYzYyN2YiLCJhdWQiOiJlNWYzNjAxZWZmMDY0ZTllYmIxYjViY2QxYWRlMDAyNyIsImNsaWVudGlkIjoiZTVmMzYwMWVmZjA2NGU5ZWJiMWI1YmNkMWFkZTAwMjciLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMDQyNjY2ODI2NCwic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gYWRkcmVzcyBwaG9uZSBwcm9maWxlIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY2lkYWFzOnVzZXJ1cGRhdGUgZW1haWwiLCJpc3MiOiJodHRwczovL2RlbW8uY2lkYWFzLmRlIiwiZXhwIjoxNTEwNTEzMDY4MDAwLCJpYXQiOjE1MTA0MjY2NjgsImp0aSI6IjM3ZjA0NmU3LTI2YjktNGIzZi1hMWVhLTM3Yzk1YmVlZjY1NCIsImV4cF9pbiI6ODY0MDB9.IuQfnpaGqBgflTfhEroK_BpSdIpPprlTj2Qw8iSuXUk","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36","disabled":false}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"http://localhost:3572/verification-srv/email/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:09:27 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-iuOoSX8pDShhVtWo95sNMFm+4Ac\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"e15270a4-b7db-46f7-b193-21f0ed597d00\"}}"}],"_postman_id":"fb34d1a4-1e66-42e1-aeba-75ff40ed74b8"},{"name":"Enroll","id":"4a511be4-647c-4d5c-a3e6-1bcb99b89d1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"0666f6bf-616e-4968-9f68-005f28763066\",\n\t\"code\":\"921001\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/email/enroll","urlObject":{"path":["verification-srv","email","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"56b2c7ce-a8bd-4e63-962d-24c48eab7618","name":"http://localhost:3572/verification-srv/email/confirm","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"0666f6bf-616e-4968-9f68-005f28763066\",\n\t\"code\":\"921001\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/email/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:12:51 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"de3d9caf-5614-4860-a569-fed21026e1f5","name":"http://localhost:3572/verification-srv/email/confirm","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"0666f6bf-616e-4968-9f68-005f28763066\",\n\t\"code\":\"921001\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/email/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 12:12:51 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"4a511be4-647c-4d5c-a3e6-1bcb99b89d1d"}],"id":"71cfc048-4db5-4e84-b0e8-5caff9cff7d1","_postman_id":"71cfc048-4db5-4e84-b0e8-5caff9cff7d1","description":""},{"name":"Usage","item":[{"name":"Initiate","id":"1959a1e7-9ce0-4dd9-b3c0-259cb65fcd4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MULTIFACTOR_AUTHENTICATION\",\n\t\"email\":\"developer@cidaas.de\"\n}"},"url":"{{baseurl}}/verification-srv/email/initiate","urlObject":{"path":["verification-srv","email","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1ece67f2-3135-4d18-beb3-5b9143634e0d","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MULTIFACTOR_AUTHENTICATION\",\n\t\"email\":\"developer@cidaas.de\"\n}"},"url":"{{baseurl}}/verification-srv/email/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"b0cf9d7e-b9f1-4037-aead-be7b9139b72c","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MULTIFACTOR_AUTHENTICATION\",\n\t\"email\":\"developer@cidaas.de\"\n}"},"url":"{{baseurl}}/verification-srv/email/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"f3e551ff-71f5-4510-8390-685e59c85b3f","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"usageType\":\"MULTIFACTOR_AUTHENTICATION\",\n\t\"email\":\"developer@cidaas.de\"\n}"},"url":"{{baseurl}}/verification-srv/email/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"1959a1e7-9ce0-4dd9-b3c0-259cb65fcd4a"},{"name":"Authenticate","id":"c99780b6-6a3a-4682-958e-595e9b267a34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"bf7e1761-446b-4413-a6c9-dd7d2af97ad7\",\n\t\"code\":\"786317\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/email/authenticate","urlObject":{"path":["verification-srv","email","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"08fe5f99-7591-481a-b143-6b7c456cbf7b","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"bf7e1761-446b-4413-a6c9-dd7d2af97ad7\",\n\t\"code\":\"786317\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/email/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"3b5ba918-6b0b-4d69-9185-4cd51a5e0f33","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n\t\"statusId\":\"bf7e1761-446b-4413-a6c9-dd7d2af97ad7\",\n\t\"code\":\"786317\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/email/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"c99780b6-6a3a-4682-958e-595e9b267a34"},{"name":"Acknowledge","id":"039a3bd5-635a-4145-820a-eb8baca2d142","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"bf7e1761-446b-4413-a6c9-dd7d2af97ad7\"\n}"},"url":"{{baseurl}}/verification-srv/email/acknowledge","urlObject":{"path":["verification-srv","email","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"057641c1-84c6-407e-aa05-68e3be9e5721","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"bf7e1761-446b-4413-a6c9-dd7d2af97ad7\"\n}"},"url":"{{baseurl}}/verification-srv/email/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"},{"id":"f23ffd06-4e9c-448c-a32b-f2c0654abe32","name":"http://localhost:3572/verification-srv/email/initiate","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36"}],"body":{"mode":"raw","raw":"{\n  \"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n        \"trackingCode\": \"bf7e1761-446b-4413-a6c9-dd7d2af97ad7\"\n}"},"url":"{{baseurl}}/verification-srv/email/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"88","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Sun, 12 Nov 2017 11:25:05 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"58-FiYMG6EZ60DRQ8QSNmCWCo5phlU\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"statusId\":\"c55839cc-a084-482b-894d-d6e33accad34\"}}"}],"_postman_id":"039a3bd5-635a-4145-820a-eb8baca2d142"}],"id":"23c84357-dc43-4df9-a047-c47c20fb8563","_postman_id":"23c84357-dc43-4df9-a047-c47c20fb8563","description":""}],"id":"93403e35-c63e-411e-a437-48b2367b3e1d","_postman_id":"93403e35-c63e-411e-a437-48b2367b3e1d","description":""},{"name":"Voice","item":[{"name":"Setup","item":[{"name":"Setup","id":"dc0b3abb-022e-43ec-a5d4-5cc61f2b725b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/voice/setup","urlObject":{"path":["verification-srv","voice","setup"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"df13eb1e-6249-480a-8225-7f5feadf7d2b","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"logoUrl\":\"https://docs.cidaas.de/assets/logoss.png\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/voice/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"dc0b3abb-022e-43ec-a5d4-5cc61f2b725b"},{"name":"Scanned","id":"3dfc9627-2297-4eed-9ac5-e2a21c4858d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53\"\n}"},"url":"{{baseurl}}/verification-srv/voice/scanned","urlObject":{"path":["verification-srv","voice","scanned"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"66d414bb-62e8-4ec1-861c-f3131c7503c0","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53\"\n}"},"url":"{{baseurl}}/verification-srv/voice/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"9a930465-0764-4fad-a67c-24d9c7fca522","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53\"\n}"},"url":"{{baseurl}}/verification-srv/voice/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"3dfc9627-2297-4eed-9ac5-e2a21c4858d9"},{"name":"Check [Deprecated]","id":"d823b696-d753-43b7-aaa0-f92eea545b77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53\"\n}"},"url":"{{baseurl}}/verification-srv/voice/check","urlObject":{"path":["verification-srv","voice","check"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"1a85b5d3-d974-4e24-8bce-d3b071c11674","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53\"\n}"},"url":"{{baseurl}}/verification-srv/voice/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"5f663ca3-90c6-4724-a065-bc3e28e564b2","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53\"\n}"},"url":"{{baseurl}}/verification-srv/voice/check"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"d823b696-d753-43b7-aaa0-f92eea545b77"},{"name":"Enroll","id":"d00e9e96-7a1f-4102-a2fc-edb66d38ba3d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"voice","value":null,"type":"file"},{"key":"statusId","value":"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53","type":"text"},{"key":"pushNotificationId","value":"tessdsf","type":"text"},{"key":"deviceMake","value":"Apple","type":"text"},{"key":"deviceModel","value":"Iphone 6","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"{{baseurl}}/verification-srv/voice/enroll","urlObject":{"path":["verification-srv","voice","enroll"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"d91c1c7f-d5b2-4bce-8d03-fe8e1133f111","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiJlNjM0MDk4NDI4NGM0Y2FiOTI3ZDhlNzg2MmIxNjJiMCIsImNsaWVudGlkIjoiZTYzNDA5ODQyODRjNGNhYjkyN2Q4ZTc4NjJiMTYyYjAiLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMTUwMTMwMTUyMywic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gY2lkYWFzOmdyb3VwLXdyaXRlIGFkZHJlc3MgdGVzdCBwcm9maWxlIGNpZGFhczp1c2VydXBkYXRlIGhvbGlkYXlsaXN0OnJlYWQgY2lkYWFzOnRlbXBsYXRlIHBob25lIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY29tcGFueSBlbWFpbCBjaWRhYXM6Z3JvdXAtcmVhZCIsImlzcyI6Imh0dHBzOi8vZGV2LmNpZGFhcy5kZSIsImV4cCI6MTUxMTU4NzcwMTAwMCwiaWF0IjoxNTExNTAxMzAxLCJqdGkiOiI4YmRjNjJkZC1lNzhkLTQ4NTMtYWY5Yy02YTQwMTk5OWNkZTQiLCJleHBfaW4iOjg2NDAwfQ.6xrlCRh1jXjWYwSCOm3sbYzi6QA7X9U2jNTazGhhni0"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"voice","type":"file","src":[]},{"key":"statusId","value":"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53","type":"text"},{"key":"pushNotificationId","value":"tessdsf","type":"text"},{"key":"deviceMake","value":"Apple","type":"text"},{"key":"deviceModel","value":"Iphone 6","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"http://localhost:3572/verification-srv/voice/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"ea0a5280-71fc-4fb3-9f62-955b6eaa0678","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJlY2FkYTE3Zi00MjIyLTQ0NjUtODMwOS1jMjMwZGViYmFkNGEiLCJhdWQiOiJlNjM0MDk4NDI4NGM0Y2FiOTI3ZDhlNzg2MmIxNjJiMCIsImNsaWVudGlkIjoiZTYzNDA5ODQyODRjNGNhYjkyN2Q4ZTc4NjJiMTYyYjAiLCJyb2xlIjoiVVNFUiIsImF1dGhfdGltZSI6MTUxMTUwMTMwMTUyMywic2NvcGUiOiJjaWRhYXM6dXNlcmluZm8gY2lkYWFzOmdyb3VwLXdyaXRlIGFkZHJlc3MgdGVzdCBwcm9maWxlIGNpZGFhczp1c2VydXBkYXRlIGhvbGlkYXlsaXN0OnJlYWQgY2lkYWFzOnRlbXBsYXRlIHBob25lIGNpZGFhczpsb2dpbiBjaWRhYXM6cmVnaXN0ZXIgY29tcGFueSBlbWFpbCBjaWRhYXM6Z3JvdXAtcmVhZCIsImlzcyI6Imh0dHBzOi8vZGV2LmNpZGFhcy5kZSIsImV4cCI6MTUxMTU4NzcwMTAwMCwiaWF0IjoxNTExNTAxMzAxLCJqdGkiOiI4YmRjNjJkZC1lNzhkLTQ4NTMtYWY5Yy02YTQwMTk5OWNkZTQiLCJleHBfaW4iOjg2NDAwfQ.6xrlCRh1jXjWYwSCOm3sbYzi6QA7X9U2jNTazGhhni0"},{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"voice","type":"file","src":[]},{"key":"statusId","value":"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53","type":"text"},{"key":"pushNotificationId","value":"tessdsf","type":"text"},{"key":"deviceMake","value":"Apple","type":"text"},{"key":"deviceModel","value":"Iphone 6","type":"text"},{"key":"deviceId","value":"1234567","type":"text"}]},"url":"http://localhost:3572/verification-srv/voice/enroll"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"d00e9e96-7a1f-4102-a2fc-edb66d38ba3d"},{"name":"Acknowledge","id":"fda3d74e-9514-4a67-ab14-7dd52d734837","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n        \"trackingCode\": \"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53\"\n    }"},"url":"{{baseurl}}/verification-srv/voice/acknowledge","urlObject":{"path":["verification-srv","voice","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"22b68b71-d964-4442-a978-b22826fe5c36","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n        \"trackingCode\": \"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53\"\n    }"},"url":"{{baseurl}}/verification-srv/voice/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"3ad6bc1c-0666-4f63-a0da-69b9d6fed9aa","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n        \"trackingCode\": \"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53\"\n    }"},"url":"{{baseurl}}/verification-srv/voice/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"6a169647-531e-4d9a-b7c4-3defd44a6356","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n        \"trackingCode\": \"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53\"\n    }"},"url":"{{baseurl}}/verification-srv/voice/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"73f84d3f-b691-4c64-a4fd-b2576b2511b8","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n        \"trackingCode\": \"82ad65b8-6c5c-492e-bd5f-4d0f0b7a3e53\"\n    }"},"url":"{{baseurl}}/verification-srv/voice/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"fda3d74e-9514-4a67-ab14-7dd52d734837"}],"id":"da1c3859-3336-49a6-92fe-25da7dc6e678","_postman_id":"da1c3859-3336-49a6-92fe-25da7dc6e678","description":""},{"name":"Usage","item":[{"name":"Initiate","id":"9deb3be6-658a-404b-a7a3-6041c8ab3a9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"3e8a46ce-4323-4a29-9e05-3407cf7e8d74\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"userDeviceId\":\"eccc88cc-3b3a-476a-950d-a39513c83708\",\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/voice/initiate","urlObject":{"path":["verification-srv","voice","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"47b14d72-028e-4b5d-a85f-10dfee17c40b","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"3e8a46ce-4323-4a29-9e05-3407cf7e8d74\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"userDeviceId\":\"eccc88cc-3b3a-476a-950d-a39513c83708\",\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/voice/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"5dbe2a7d-1e95-4167-a9e0-c5d5267c78db","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"3e8a46ce-4323-4a29-9e05-3407cf7e8d74\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"userDeviceId\":\"eccc88cc-3b3a-476a-950d-a39513c83708\",\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/voice/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"a6d5c265-d150-444e-9fc6-e66bf6716b28","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"3e8a46ce-4323-4a29-9e05-3407cf7e8d74\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"userDeviceId\":\"eccc88cc-3b3a-476a-950d-a39513c83708\",\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/voice/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"ad188a90-6b1f-4730-aae4-080e4a4f18bb","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"physicalVerificationId\":\"3e8a46ce-4323-4a29-9e05-3407cf7e8d74\",\n\t\"deviceInfo\":{\n\t\t\"deviceFingerPrint\":\"1234\"\n\t},\n\t\"userDeviceId\":\"eccc88cc-3b3a-476a-950d-a39513c83708\",\n\t\"usageType\":\"MFA\",\n\t\"email\":\"davidjhonson1984@gmail.com\"\n}"},"url":"{{baseurl}}/verification-srv/voice/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"}],"_postman_id":"9deb3be6-658a-404b-a7a3-6041c8ab3a9b"},{"name":"Authenticate","id":"f79670c1-62d3-42d7-88a8-3d14af0d186f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"8180677a-0559-4f29-a8ca-ed3338303bcf","type":"text"},{"key":"voice","value":null,"type":"file"},{"key":"deviceMake","value":"iphone","type":"text"},{"key":"deviceModel","value":"apple","type":"text"}]},"url":"{{baseurl}}/verification-srv/voice/authenticate","urlObject":{"path":["verification-srv","voice","authenticate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"490390b7-a005-42d2-8f66-4124a2671164","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"8180677a-0559-4f29-a8ca-ed3338303bcf","type":"text"},{"key":"voice","value":null,"type":"file"},{"key":"deviceMake","value":"iphone","type":"text"},{"key":"deviceModel","value":"apple","type":"text"}]},"url":"{{baseurl}}/verification-srv/voice/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"5e1c3f21-e0d8-452b-a164-dd53a0687dfe","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"8180677a-0559-4f29-a8ca-ed3338303bcf","type":"text"},{"key":"voice","value":null,"type":"file"},{"key":"deviceMake","value":"iphone","type":"text"},{"key":"deviceModel","value":"apple","type":"text"}]},"url":"{{baseurl}}/verification-srv/voice/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"6a033e11-5180-4648-bc53-ed6ff55fad60","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n    \"deviceFingerPrint\":\"1234\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  }\n  \n}"},"url":"http://localhost:3572/verification-srv/face/setup"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"7e517f64-3954-4d33-971e-4908d8ab3613","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"method":"POST","header":[{"key":"apikey","value":"local"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"userId\":\"1234\",\n  \"displayName\":\"vimal prakash\",\n  \"logoUrl\":\"https://test.com\",\n  \"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n  \"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\",\n  \"locale\":\"en\",\n  \"usageType\":\"SYSTEM\"\n}"},"url":"http://localhost:3572/verification-srv/face/scanned"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"29","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"834f5eb9-ae16-4a45-bb64-d0066d38b916","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"8180677a-0559-4f29-a8ca-ed3338303bcf","type":"text"},{"key":"voice","value":null,"type":"file"},{"key":"deviceMake","value":"iphone","type":"text"},{"key":"deviceModel","value":"apple","type":"text"}]},"url":"{{baseurl}}/verification-srv/voice/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"},{"id":"ad1f9a2c-d046-437a-b0c8-aea39589298e","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[{"key":"statusId","value":"8180677a-0559-4f29-a8ca-ed3338303bcf","type":"text"},{"key":"voice","value":null,"type":"file"},{"key":"deviceMake","value":"iphone","type":"text"},{"key":"deviceModel","value":"apple","type":"text"}]},"url":"{{baseurl}}/verification-srv/voice/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":""},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":""},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":""},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Length","value":"495","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":""},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":""},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":""}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"f79670c1-62d3-42d7-88a8-3d14af0d186f"},{"name":"Acknowledge","id":"d07adc0f-d121-43cb-a591-3ec4747ac1c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n        \"trackingCode\": \"8180677a-0559-4f29-a8ca-ed3338303bcf\"\n    }"},"url":"{{baseurl}}/verification-srv/voice/acknowledge","urlObject":{"path":["verification-srv","voice","acknowledge"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"87535e54-34f2-4439-96aa-12f1658d9497","name":"http://localhost:3572/verification-srv/face/scanned","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n        \"trackingCode\": \"8180677a-0559-4f29-a8ca-ed3338303bcf\"\n    }"},"url":"{{baseurl}}/verification-srv/voice/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"29","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:22:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1d-P+CaH+G8PtxKw2FDYoQ6vFPljLc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200}"},{"id":"b6f49c56-2bc5-49af-8f51-a3d59e5635d0","name":"http://localhost:3572/verification-srv/face/setup","originalRequest":{"auth":{"type":"bearer","bearer":{"token":"{{access_token}}"}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"deviceInfo\":{\n  \t\"deviceId\":\"12345\",\n  \t\"pushNotificationId\":\"dPbhUaUJzA8:APA91bGMmaBru_xfiLI9C5xpy5XYDq-HzKQ-W1AwN3PkIiKinmJjrCNy_g8aixSLS1xdj2AK9QRiy9SxYYwGrWnf98rOl_IOby1clWAN8MBrln4UCPBhIj_AVfctzuOMS5B0UJq5ixNs\",\n  \t\"deviceMake\":\"iPhone\",\n  \t\"deviceModel\":\"6Plus\",\n    \"location\":{\n      \"lat\":\"12\",\n      \"lon\":\"77\"\n    }\n  },\n        \"sub\": \"8fdaa9f0-31cf-4ab5-b191-618db2423d47\",\n        \"trackingCode\": \"8180677a-0559-4f29-a8ca-ed3338303bcf\"\n    }"},"url":"{{baseurl}}/verification-srv/voice/acknowledge"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"495","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 07 Nov 2017 14:06:14 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ef-IDbfCrdZkKTft9U7k263aSj1seI\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[{"expires":"Tue Jan 19 2038 03:14:07 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localhost","path":"/camunda/","secure":false,"value":"FFA7DB9137A62BF4931D36BCA3B24B01","key":"JSESSIONID"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"qrCode\":\"otpauth://totp/Carbook%20Plus:vimal%20prakash?secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"queryString\":\"secret=76c3eb84-84e3-497c-9182-a65e6ccaf3bd&d=vimal%20prakash&l=https%3A%2F%2Ftest.com&t=FACE&issuer=Carbook%20Plus&resolverUrl=&userId=1234\",\"verifierId\":\"76c3eb84-84e3-497c-9182-a65e6ccaf3bd\",\"statusId\":\"8b8a4c62-368f-4645-aa7c-f001cec0c5fd\"}}"}],"_postman_id":"d07adc0f-d121-43cb-a591-3ec4747ac1c0"}],"id":"cef135fb-0a01-4bd9-bb20-b7d9c192525c","_postman_id":"cef135fb-0a01-4bd9-bb20-b7d9c192525c","description":""}],"id":"914d4b62-da6d-4f11-be6d-3ab90b7a031a","_postman_id":"914d4b62-da6d-4f11-be6d-3ab90b7a031a","description":""}],"id":"e33f5b1d-6f2f-424e-a6aa-4867a138c0e7","_postman_id":"e33f5b1d-6f2f-424e-a6aa-4867a138c0e7","description":""},{"name":"V2","item":[{"name":"VerificationSetup","item":[{"name":"Email","item":[{"name":"Initiate","id":"0c148205-6366-4b00-8e77-bc9a6daa548a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseurl}}/verification-srv/v2/setup/initiate/email","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate and send Email to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>email</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    track_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","email"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0c148205-6366-4b00-8e77-bc9a6daa548a"},{"name":"Enroll","id":"fc7305ea-8f17-47eb-9039-bc6d6e5eb075","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"exchange_id\":\"04571d4c-57ee-44fc-a7b5-b78b75441ddc\",\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"pass_code\":\"587040\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/enroll/email","description":"<h1 id=\"description\">Description</h1>\n<p>To enroll Email to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IEnrollVerificationSetupRequestEntity</code> entity in the body section and pass verification_type as <code>email</code> in the Path Param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IEnrollVerificationSetupRequestEntity {\n    exchange_id: string; // *\n    device_id: string;\n    finger_print: string;\n    client_id: string; // *\n    push_id: string;\n    pass_code: string; // *\n    pkce_key: string;\n    face_attempt: number;\n    attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n}\n\nclass FIDO2EnrollEntity {\n    client_response: any;\n    fidoRequestId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IEnrollVerificationSetupResponseEntity;\n}\n\ninterface IEnrollVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    device_id: string;\n    ph_id: string;\n    friendly_name: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","enroll","email"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fc7305ea-8f17-47eb-9039-bc6d6e5eb075"}],"id":"f739691d-bc3d-4dc4-9797-79387cf566c5","_postman_id":"f739691d-bc3d-4dc4-9797-79387cf566c5","description":""},{"name":"SMS","item":[{"name":"Initiate","id":"0266e2a6-499c-4c6d-bcb2-068654cfbdb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseurl}}/verification-srv/v2/setup/initiate/sms","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate and send SMS to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>sms</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    track_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","sms"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0266e2a6-499c-4c6d-bcb2-068654cfbdb0"},{"name":"Enroll","id":"12f031c4-45c0-41e4-88ae-a440b78280ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"exchange_id\":\"007ecb83-3471-4b63-846a-00a03110b790\",\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"pass_code\":\"396549\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/enroll/sms","description":"<h1 id=\"description\">Description</h1>\n<p>To enroll SMS to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IEnrollVerificationSetupRequestEntity</code> entity in the body section and pass verification_type as <code>sms</code> in the Path Param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IEnrollVerificationSetupRequestEntity {\n    exchange_id: string; // *\n    device_id: string;\n    finger_print: string;\n    client_id: string; // *\n    push_id: string;\n    pass_code: string; // *\n    pkce_key: string;\n    face_attempt: number;\n    attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n}\n\nclass FIDO2EnrollEntity {\n    client_response: any;\n    fidoRequestId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IEnrollVerificationSetupResponseEntity;\n}\n\ninterface IEnrollVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    device_id: string;\n    ph_id: string;\n    friendly_name: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","enroll","sms"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"12f031c4-45c0-41e4-88ae-a440b78280ab"}],"id":"963038dc-c374-4017-98f8-fd7ef94139bb","_postman_id":"963038dc-c374-4017-98f8-fd7ef94139bb","description":""},{"name":"IVR","item":[{"name":"Initiate","id":"71e0476a-308b-47ab-a6b6-acb09143214f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseurl}}/verification-srv/v2/setup/initiate/ivr","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate an IVR verification call to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>ivr</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    track_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","ivr"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"71e0476a-308b-47ab-a6b6-acb09143214f"},{"name":"Enroll","id":"0cb2df71-0167-46b2-8406-fa079fb2fd93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"exchange_id\":\"2e9a1b82-67b4-45dc-8783-284f71aaa8c3\",\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"pass_code\":\"925626\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/enroll/ivr","description":"<h1 id=\"description\">Description</h1>\n<p>To enroll IVR to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IEnrollVerificationSetupRequestEntity</code> entity in the body section and pass verification_type as <code>ivr</code> in the Path Param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IEnrollVerificationSetupRequestEntity {\n    exchange_id: string; // *\n    device_id: string;\n    finger_print: string;\n    client_id: string; // *\n    push_id: string;\n    pass_code: string; // *\n    pkce_key: string;\n    face_attempt: number;\n    attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n}\n\nclass FIDO2EnrollEntity {\n    client_response: any;\n    fidoRequestId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IEnrollVerificationSetupResponseEntity;\n}\n\ninterface IEnrollVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    device_id: string;\n    ph_id: string;\n    friendly_name: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","enroll","ivr"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0cb2df71-0167-46b2-8406-fa079fb2fd93"}],"id":"378c91bb-fedb-4259-a37f-8621cd2b513a","_postman_id":"378c91bb-fedb-4259-a37f-8621cd2b513a","description":""},{"name":"TOTP","item":[{"name":"Initiate","id":"3ec7d8f7-18c3-4b81-b6d9-14b0f2f6b574","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseurl}}/verification-srv/v2/setup/initiate/totp","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the TOTP process</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>totp</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    track_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    totp_secret: string;\n    sub: string;\n    authenticator_client_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","totp"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ec7d8f7-18c3-4b81-b6d9-14b0f2f6b574"},{"name":"Enroll","id":"768050d3-c9cd-48f5-a47a-42ee58acb687","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"exchange_id\":\"b1aba244-4ec9-4295-8e66-b25a89ddaea3\",\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"pass_code\":\"589953\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/enroll/totp","description":"<h1 id=\"description\">Description</h1>\n<p>To enroll TOTP to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IEnrollVerificationSetupRequestEntity</code> entity in the body section and pass verification_type as <code>totp</code> in the Path Param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IEnrollVerificationSetupRequestEntity {\n    exchange_id: string; // *\n    device_id: string;\n    finger_print: string;\n    client_id: string; // *\n    push_id: string;\n    pass_code: string; // *\n    pkce_key: string;\n    face_attempt: number;\n    attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n}\n\nclass FIDO2EnrollEntity {\n    client_response: any;\n    fidoRequestId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IEnrollVerificationSetupResponseEntity;\n}\n\ninterface IEnrollVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    device_id: string;\n    ph_id: string;\n    friendly_name: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","enroll","totp"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"768050d3-c9cd-48f5-a47a-42ee58acb687"}],"id":"e07584f1-daa3-4dcc-a9bc-261ebf586368","_postman_id":"e07584f1-daa3-4dcc-a9bc-261ebf586368","description":""},{"name":"BackupCode","item":[{"name":"Initiate and Enroll","id":"0e509f86-13c8-4d26-b684-0eb87b998f5d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseurl}}/verification-srv/v2/setup/initiate/backupcode","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate and enroll the Backupcode to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>backupcode</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    track_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    backup_codes: IBackupCodeVerification[];\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\ninterface IBackupCodeVerification {\n    _id: string;\n    id: string;\n    sub: string;\n    ph_id: string;\n    status_id: string;\n    code: string;\n    used: boolean;\n    used_time: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","backupcode"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e509f86-13c8-4d26-b684-0eb87b998f5d"}],"id":"d719aac9-3ce3-48a6-a7a3-4ec773faf8ee","_postman_id":"d719aac9-3ce3-48a6-a7a3-4ec773faf8ee","description":""},{"name":"Pattern","item":[{"name":"Initiate","id":"cbd73e2b-0333-46cd-8569-e6aae1a41a15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/initiate/pattern","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Pattern Recognition process </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>pattern</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    track_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    authenticator_client_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","pattern"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cbd73e2b-0333-46cd-8569-e6aae1a41a15"},{"name":"Rotate Exchange Id","id":"4aa5288d-a22c-4e3f-a417-6f0e28ab32eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseurl}}/verification-srv/v2/setup/rotate/pattern/:exchange_id","description":"<h1 id=\"description\">Description</h1>\n<p>To rotate / exchange the Exchange Id which was obtained in the previous call response</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>exchange_id</code> and verification_type as <code>pattern</code> in the Path param</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>exchange_id: string;\nverification_type: string\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IExchangeIdConfig;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","rotate","pattern",":exchange_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"51853b47-04b2-4019-b8d0-6df90744695e","type":"string","value":"2bed3bf8-2655-4f51-a5a5-47e7655c6cbd","key":"exchange_id"}]}},"response":[],"_postman_id":"4aa5288d-a22c-4e3f-a417-6f0e28ab32eb"},{"name":"Scan","id":"bc9d173b-1460-49ea-91a9-aab260a09355","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n\t\"exchange_id\":\"35467726-e9b3-4b20-9d7f-6684c7689fee\",\n\t\"device_id\":\"9F62C781-D871-4A93-8AEE-81875C0FA6CB\",\n\t\"client_id\":\"938c570e-7728-4fa3-b62f-5167f722c788\",\n\t\"push_id\":\"enWVHzsqZGg:APA91bFn0jRx3kkWmrtj1d70YOqSuD7NY_bgoiN8qC4eF0cqjDhGGQxxp_uLr_qr9g5g_xpcgL1bXq-51pWko2MD6Sd59PDfUlH89Y1pMIpIt5ASHe7PvTezMVUYctN9QqZC3dyUDpus\"\n}\n"},"url":"{{baseurl}}/verification-srv/v2/setup/scan/pattern","description":"<h1 id=\"description\">Description</h1>\n<p>To scan the QR code using the authenticator App</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IScanVerificationSetupRequestEntity</code> entity in the body section and pass <code>pattern</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IScanVerificationSetupRequestEntity {\n    sub: string;\n    exchange_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n    push_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScanVerificationSetupResponseEntity;\n}\n\ninterface IScanVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    user_info: IUserinfoLite;\n    push_random_numbers: string[];\n}\n\nexport interface IUserinfoLite {\n    sub: string;\n    given_name: string;\n    family_name: string;\n    email: string;\n    mobile_number: string;\n    picture: string;\n    profile: string;\n    providerUserId: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","scan","pattern"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc9d173b-1460-49ea-91a9-aab260a09355"},{"name":"Enroll","id":"dc9eddea-1bc3-4f15-b0ad-1fd50e05b9ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n\t\"exchange_id\":\"a5af8617-e796-406c-9d3a-9274a2d72675\",\n\t\"device_id\":\"9F62C781-D871-4A93-8AEE-81875C0FA6CB\",\n\t\"client_id\":\"938c570e-7728-4fa3-b62f-5167f722c788\",\n\t\"push_id\":\"enWVHzsqZGg:APA91bFn0jRx3kkWmrtj1d70YOqSuD7NY_bgoiN8qC4eF0cqjDhGGQxxp_uLr_qr9g5g_xpcgL1bXq-51pWko2MD6Sd59PDfUlH89Y1pMIpIt5ASHe7PvTezMVUYctN9QqZC3dyUDpus\",\n\t\"pass_code\":\"1234\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/enroll/pattern","description":"<h1 id=\"description\">Description</h1>\n<p>To enroll Pattern to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IEnrollVerificationSetupRequestEntity</code> entity in the body section and pass verification_type as <code>pattern</code> in the Path Param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IEnrollVerificationSetupRequestEntity {\n    exchange_id: string; // *\n    device_id: string; // *\n    finger_print: string;\n    client_id: string; // *\n    push_id: string; // *\n    pass_code: string; // *\n    pkce_key: string;\n    face_attempt: number;\n    attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n}\n\nclass FIDO2EnrollEntity {\n    client_response: any;\n    fidoRequestId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IEnrollVerificationSetupResponseEntity;\n}\n\ninterface IEnrollVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    device_id: string;\n    ph_id: string;\n    friendly_name: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","enroll","pattern"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc9eddea-1bc3-4f15-b0ad-1fd50e05b9ee"}],"id":"a6ac789b-c17b-411d-9ced-b06508e6102e","_postman_id":"a6ac789b-c17b-411d-9ced-b06508e6102e","description":""},{"name":"Touch ID","item":[{"name":"Initiate","id":"1a804551-35e6-42a4-96cb-ac92e5c857ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/initiate/touchid","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the TouchId verification process </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>touchid</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    track_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    authenticator_client_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","touchid"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a804551-35e6-42a4-96cb-ac92e5c857ca"},{"name":"Rotate Exchange Id","id":"c634f9ff-88b9-41d8-80c1-1e6e0bf0d2ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseurl}}/verification-srv/v2/setup/rotate/touchid/:exchange_id","description":"<h1 id=\"description\">Description</h1>\n<p>To rotate / exchange the Exchange Id which was obtained in the previous call response</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>exchange_id</code> and verification_type as <code>touchid</code> in the Path param</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>exchange_id: string;\nverification_type: string\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IExchangeIdConfig;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","rotate","touchid",":exchange_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"37bd808b-38aa-4fa8-be72-da9353d12456","type":"string","value":"b9007da8-b494-4059-a415-51ec4d9a8316","key":"exchange_id"}]}},"response":[],"_postman_id":"c634f9ff-88b9-41d8-80c1-1e6e0bf0d2ae"},{"name":"Scan","id":"4d5fa832-b8c8-4dc9-b0cc-4c14e83c3345","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"495e8647-16a4-4f73-a215-10467ec88fd1\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/scan/touchid","description":"<h1 id=\"description\">Description</h1>\n<p>To scan the QR code using the authenticator App</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IScanVerificationSetupRequestEntity</code> entity in the body section and pass <code>touchid</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IScanVerificationSetupRequestEntity {\n    sub: string;\n    exchange_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n    push_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScanVerificationSetupResponseEntity;\n}\n\ninterface IScanVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    user_info: IUserinfoLite;\n    push_random_numbers: string[];\n}\n\nexport interface IUserinfoLite {\n    sub: string;\n    given_name: string;\n    family_name: string;\n    email: string;\n    mobile_number: string;\n    picture: string;\n    profile: string;\n    providerUserId: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","scan","touchid"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d5fa832-b8c8-4dc9-b0cc-4c14e83c3345"},{"name":"Enroll","id":"7332b80e-a130-4966-b6c4-24384d346a71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"66693371-d7ce-4ba5-a5b9-d7718138f9d8\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/enroll/touchid","description":"<h1 id=\"description\">Description</h1>\n<p>To enroll Touch Id to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IEnrollVerificationSetupRequestEntity</code> entity in the body section and pass verification_type as <code>touchid</code> in the Path Param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IEnrollVerificationSetupRequestEntity {\n    exchange_id: string; // *\n    device_id: string; // *\n    finger_print: string;\n    client_id: string; // *\n    push_id: string; // *\n    pass_code: string; \n    pkce_key: string;\n    face_attempt: number;\n    attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n}\n\nclass FIDO2EnrollEntity {\n    client_response: any;\n    fidoRequestId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IEnrollVerificationSetupResponseEntity;\n}\n\ninterface IEnrollVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    device_id: string;\n    ph_id: string;\n    friendly_name: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","enroll","touchid"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7332b80e-a130-4966-b6c4-24384d346a71"}],"id":"a8f5f234-fe51-4b60-bdfc-9cefafdbe36f","_postman_id":"a8f5f234-fe51-4b60-bdfc-9cefafdbe36f","description":""},{"name":"Push","item":[{"name":"Initiate","id":"58e1f4e3-ec17-4de3-bb74-dee1ad5df636","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/initiate/push","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Smart Push verification process </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>push</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    track_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    authenticator_client_id: string;\n    push_selected_number: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","push"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"58e1f4e3-ec17-4de3-bb74-dee1ad5df636"},{"name":"Rotate Exchange Id","id":"91dce75c-1782-4c52-9f2a-5ec30fd8a4dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseurl}}/verification-srv/v2/setup/rotate/push/:exchange_id","description":"<h1 id=\"description\">Description</h1>\n<p>To rotate / exchange the Exchange Id which was obtained in the Previous call response</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>exchange_id</code> and verification_type as <code>push</code> in the Path param</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>exchange_id: string;\nverification_type: string\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IExchangeIdConfig;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","rotate","push",":exchange_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"9b198bd9-d697-4c02-9001-2a979713cc2e","type":"string","value":"b9007da8-b494-4059-a415-51ec4d9a8316","key":"exchange_id"}]}},"response":[],"_postman_id":"91dce75c-1782-4c52-9f2a-5ec30fd8a4dd"},{"name":"Scan","id":"f808fb40-668c-43fe-a1e9-8336528d67f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"973d5513-d70a-45c7-ab93-ff9af409785f\",\n\t\"device_id\":\"9F62C781-D871-4A93-8AEE-81875C0FA6CB\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cRxbCjxMQB4:APA91bFvTkMZzg5YasCpk_sXMrPpz1ursHn9Cmve64rPgYG26h4RPcDXB9sozBtNo5ehSAlP5GvSiWWsRNv-SYxVQSQZrvI7ONuOfnYRwsevuwYOlnKYRYHngAXdraVmdjXo-2bHyI3r\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/scan/push","description":"<h1 id=\"description\">Description</h1>\n<p>To scan the QR code using the authenticator App</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IScanVerificationSetupRequestEntity</code> entity in the body section and pass <code>push</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IScanVerificationSetupRequestEntity {\n    sub: string;\n    exchange_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n    push_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScanVerificationSetupResponseEntity;\n}\n\ninterface IScanVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    user_info: IUserinfoLite;\n    push_random_numbers: string[];\n}\n\nexport interface IUserinfoLite {\n    sub: string;\n    given_name: string;\n    family_name: string;\n    email: string;\n    mobile_number: string;\n    picture: string;\n    profile: string;\n    providerUserId: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","scan","push"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f808fb40-668c-43fe-a1e9-8336528d67f6"},{"name":"Enroll","id":"02d93178-9b3a-4116-9be4-6741d3148440","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"b2cf88e2-198c-424c-921b-dcfad9df9073\",\n\t\"device_id\":\"9F62C781-D871-4A93-8AEE-81875C0FA6CB\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cRxbCjxMQB4:APA91bFvTkMZzg5YasCpk_sXMrPpz1ursHn9Cmve64rPgYG26h4RPcDXB9sozBtNo5ehSAlP5GvSiWWsRNv-SYxVQSQZrvI7ONuOfnYRwsevuwYOlnKYRYHngAXdraVmdjXo-2bHyI3r\",\n\t\"pass_code\":\"28\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/enroll/push","description":"<h1 id=\"description\">Description</h1>\n<p>To enroll Smart Push to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IEnrollVerificationSetupRequestEntity</code> entity in the body section and pass verification_type as <code>push</code> in the Path Param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IEnrollVerificationSetupRequestEntity {\n    exchange_id: string; // *\n    device_id: string; // *\n    finger_print: string;\n    client_id: string; // *\n    push_id: string; // *\n    pass_code: string; // *\n    pkce_key: string;\n    face_attempt: number;\n    attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n}\n\nclass FIDO2EnrollEntity {\n    client_response: any;\n    fidoRequestId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IEnrollVerificationSetupResponseEntity;\n}\n\ninterface IEnrollVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    device_id: string;\n    ph_id: string;\n    friendly_name: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","enroll","push"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"02d93178-9b3a-4116-9be4-6741d3148440"}],"id":"394501a1-252a-4ea8-81aa-8089b5c6c78d","_postman_id":"394501a1-252a-4ea8-81aa-8089b5c6c78d","description":""},{"name":"Face","item":[{"name":"Initiate","id":"e04701ff-f252-4c41-80a7-ae600ece9ea8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/initiate/face","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Face recognition process </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>face</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    track_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    authenticator_client_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","face"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e04701ff-f252-4c41-80a7-ae600ece9ea8"},{"name":"Rotate Exchange Id","id":"fac5e441-492b-488a-b032-b4264504f695","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseurl}}/verification-srv/v2/setup/rotate/face/:exchange_id","description":"<h1 id=\"description\">Description</h1>\n<p>To rotate / exchange the Exchange Id which was obtained in the Previous call response</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>exchange_id</code> and verification_type as <code>face</code> in the Path param</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>exchange_id: string;\nverification_type: string\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IExchangeIdConfig;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","rotate","face",":exchange_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"40f9064f-25b9-414a-8fc2-068e8b423ee4","type":"string","value":"b9007da8-b494-4059-a415-51ec4d9a8316","key":"exchange_id"}]}},"response":[],"_postman_id":"fac5e441-492b-488a-b032-b4264504f695"},{"name":"Scan","id":"28ae8c97-63ac-41f3-aaa9-62a114cbed8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"65a75066-4f57-4361-92b5-fe87195341ec\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/scan/face","description":"<h1 id=\"description\">Description</h1>\n<p>To scan the QR code using the authenticator App</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IScanVerificationSetupRequestEntity</code> entity in the body section and pass <code>face</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IScanVerificationSetupRequestEntity {\n    sub: string;\n    exchange_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n    push_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScanVerificationSetupResponseEntity;\n}\n\ninterface IScanVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    user_info: IUserinfoLite;\n    push_random_numbers: string[];\n}\n\nexport interface IUserinfoLite {\n    sub: string;\n    given_name: string;\n    family_name: string;\n    email: string;\n    mobile_number: string;\n    picture: string;\n    profile: string;\n    providerUserId: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","scan","face"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"28ae8c97-63ac-41f3-aaa9-62a114cbed8c"},{"name":"Enroll","id":"d0643ad0-c4a8-4494-a75d-0eeeae836297","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"sub","value":"7243bb35-2ff2-4705-9094-52da378f852d","type":"text"},{"key":"exchange_id","value":"da53e6a2-dcc4-4765-a7d3-4588ecd38293","type":"text"},{"key":"device_id","value":"098B97F3-2D0D-45B4-8B52-532C7B17CA6B","type":"text"},{"key":"client_id","value":"ab4922b8-d344-426f-8af0-3a92e5f40775","type":"text"},{"key":"push_id","value":"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL","type":"text"},{"key":"photo","value":null,"type":"file"},{"key":"face_attempt","value":"1","type":"text"}]},"url":"{{baseurl}}/verification-srv/v2/setup/enroll/face","description":"<h1 id=\"description\">Description</h1>\n<p>To enroll Face to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IEnrollVerificationSetupRequestEntity</code> entity in the body section, pass verification_type as <code>face</code> in the Path Param and add photo to the request</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IEnrollVerificationSetupRequestEntity {\n    exchange_id: string; // *\n    device_id: string; // *\n    finger_print: string;\n    client_id: string; // *\n    push_id: string; // *\n    pass_code: string; // *\n    pkce_key: string;\n    face_attempt: number; // *\n    attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n}\n\nclass FIDO2EnrollEntity {\n    client_response: any;\n    fidoRequestId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IEnrollVerificationSetupResponseEntity;\n}\n\ninterface IEnrollVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    device_id: string;\n    ph_id: string;\n    friendly_name: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","enroll","face"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d0643ad0-c4a8-4494-a75d-0eeeae836297"}],"id":"814ef8b9-912a-4e24-8240-f6d5cd852a4f","_postman_id":"814ef8b9-912a-4e24-8240-f6d5cd852a4f","description":""},{"name":"Voice","item":[{"name":"Initiate","id":"34dbb1a6-dde0-465e-b553-dd694ebb0705","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/initiate/voice","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Voice recognition process </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>voice</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    track_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    authenticator_client_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","voice"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"34dbb1a6-dde0-465e-b553-dd694ebb0705"},{"name":"Rotate Exchange Id","id":"2629ed30-44f5-4db5-9439-e46b2e4859f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"url":"{{baseurl}}/verification-srv/v2/setup/rotate/voice/:exchange_id","description":"<h1 id=\"description\">Description</h1>\n<p>To rotate / exchange the Exchange Id which was obtained in the Previous call response</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>exchange_id</code> and verification_type as <code>voice</code> in the Path param</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>exchange_id: string;\nverification_type: string\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IExchangeIdConfig;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","rotate","voice",":exchange_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"ac9f3c6a-ff03-487b-b83e-673dfa0f44af","type":"string","value":"b9007da8-b494-4059-a415-51ec4d9a8316","key":"exchange_id"}]}},"response":[],"_postman_id":"2629ed30-44f5-4db5-9439-e46b2e4859f2"},{"name":"Scan","id":"5c467c10-84bd-4688-864e-89c3cf4099e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"73a8cc09-6396-4052-a895-6909309055bf\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/scan/voice","description":"<h1 id=\"description\">Description</h1>\n<p>To scan the QR code using the authenticator App</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IScanVerificationSetupRequestEntity</code> entity in the body section and pass <code>voice</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IScanVerificationSetupRequestEntity {\n    sub: string;\n    exchange_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n    push_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IScanVerificationSetupResponseEntity;\n}\n\ninterface IScanVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    user_info: IUserinfoLite;\n    push_random_numbers: string[];\n}\n\nexport interface IUserinfoLite {\n    sub: string;\n    given_name: string;\n    family_name: string;\n    email: string;\n    mobile_number: string;\n    picture: string;\n    profile: string;\n    providerUserId: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","scan","voice"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5c467c10-84bd-4688-864e-89c3cf4099e9"},{"name":"Enroll","id":"d63f8cb3-ffd9-4808-ad70-07e842d024d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"sub","value":"7243bb35-2ff2-4705-9094-52da378f852d","type":"text"},{"key":"exchange_id","value":"b60e46ee-f3e2-489d-890f-1de2e2ce66a6","type":"text"},{"key":"device_id","value":"098B97F3-2D0D-45B4-8B52-532C7B17CA6B","type":"text"},{"key":"client_id","value":"ab4922b8-d344-426f-8af0-3a92e5f40775","type":"text"},{"key":"push_id","value":"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL","type":"text"},{"key":"voice","value":null,"type":"file"},{"key":"face_attempt","value":"1","type":"text"}]},"url":"{{baseurl}}/verification-srv/v2/setup/enroll/voice","description":"<h1 id=\"description\">Description</h1>\n<p>To enroll Email to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IEnrollVerificationSetupRequestEntity</code> entity in the body section and pass verification_type as <code>voice</code> in the Path Param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IEnrollVerificationSetupRequestEntity {\n    exchange_id: string; // *\n    device_id: string; // *\n    finger_print: string;\n    client_id: string; // *\n    push_id: string; // *\n    pass_code: string; // *\n    pkce_key: string;\n    face_attempt: number;\n    attempt: number; // *\n    fido2_client_response: FIDO2EnrollEntity;\n}\n\nclass FIDO2EnrollEntity {\n    client_response: any;\n    fidoRequestId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IEnrollVerificationSetupResponseEntity;\n}\n\ninterface IEnrollVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    device_id: string;\n    ph_id: string;\n    friendly_name: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","enroll","voice"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d63f8cb3-ffd9-4808-ad70-07e842d024d7"}],"id":"8cce2dc7-d0f2-41f8-8c0d-2959c12596e1","_postman_id":"8cce2dc7-d0f2-41f8-8c0d-2959c12596e1","description":""},{"name":"FIDO2","item":[{"name":"Initiate","id":"65320ec3-842c-40dc-ba39-e7b2f5bb18bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/initiate/fido2","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Fido2 verification process </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>fido2</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    fido_request_type: string;\n    track_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    fido2_entity: FIDO2InitEntity;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\nclass FIDO2InitEntity {\n    type: string = \"\";\n    server_challenge: any;\n    fidoRequestId: string = \"\";\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","fido2"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"65320ec3-842c-40dc-ba39-e7b2f5bb18bd"},{"name":"Enroll","id":"157f8545-cef7-4d6c-bc97-ae7d72d30652","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"dd1410f7-db76-4a7f-a843-1e7fab915613\",\n\t\"fido2_client_response\":{\n\t\t\"client_response\":{\n\t\t\t\n\t\t},\n\t\t\"fidoRequestId\": \"b327e1f2-65c3-4653-b72c-93665c019791\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/enroll/fido2","description":"<h1 id=\"description\">Description</h1>\n<p>To enroll FIDO2 to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IEnrollVerificationSetupRequestEntity</code> entity in the body section and pass verification_type as <code>fido2</code> in the Path Param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IEnrollVerificationSetupRequestEntity {\n    exchange_id: string; // *\n    device_id: string;\n    finger_print: string;\n    client_id: string; // *\n    push_id: string;\n    pass_code: string; \n    pkce_key: string;\n    face_attempt: number;\n    attempt: number;\n    fido2_client_response: FIDO2EnrollEntity; // *\n}\n\nclass FIDO2EnrollEntity {\n    client_response: any; // *\n    fidoRequestId: string = \"\"; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IEnrollVerificationSetupResponseEntity;\n}\n\ninterface IEnrollVerificationSetupResponseEntity {\n    status_id: string;\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    device_id: string;\n    ph_id: string;\n    friendly_name: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","enroll","fido2"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"157f8545-cef7-4d6c-bc97-ae7d72d30652"}],"id":"bc3629c0-00b9-4ef5-9d01-0c1dcfeda317","_postman_id":"bc3629c0-00b9-4ef5-9d01-0c1dcfeda317","description":""},{"name":"SecurityQuestion","item":[{"name":"Master","item":[{"name":"Create","id":"81891024-14ce-410d-9f41-c6fdf1590651","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"question\":[{\n\t\t\"locale\":\"en\",\n\t\t\"question\":\"What is your birthdate?\"\n\t}]\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/master/security_question","description":"<h1 id=\"description\">Description</h1>\n<p>To create a security question in the system which will be showed to the user to answer</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>ISecurityQuestionsMaster</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ISecurityQuestionsMaster {\n    question: ILocaleQuestion[]; // *\n    enabled: boolean; \n}\n\ninterface ILocaleQuestion {\n    locale: string; // *\n    question: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ISecurityQuestionsMaster;\n}\n\ninterface ISecurityQuestionsMaster {\n    _id: string;\n    id: string;\n    question: ILocaleQuestion[];\n    enabled: boolean;\n}\n\ninterface ILocaleQuestion {\n    _id: string;\n    id: string;\n    locale: string;\n    question: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","master","security_question"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"81891024-14ce-410d-9f41-c6fdf1590651"},{"name":"Update","id":"fe482e5f-f71c-46d3-9b91-47be5c7f01ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"id\":\"94445d72-c486-45a3-81d1-5d86db51f53e\",\n\t\"question\":[{\n\t\t\"locale\":\"en\",\n\t\t\"question\":\"What is your birthdate ?\"\n\t}]\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/master/security_question","description":"<h1 id=\"description\">Description</h1>\n<p>To update the security question in the system</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>ISecurityQuestionsMaster</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ISecurityQuestionsMaster {\n    id: string; // *\n    question: ILocaleQuestion[]; // *\n    enabled: boolean; \n}\n\ninterface ILocaleQuestion {\n    id : string; // *\n    locale: string; // *\n    question: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ISecurityQuestionsMaster;\n}\n\ninterface ISecurityQuestionsMaster {\n    _id: string;\n    id: string;\n    question: ILocaleQuestion[];\n    enabled: boolean;\n}\n\ninterface ILocaleQuestion {\n    _id: string;\n    id: string;\n    locale: string;\n    question: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","master","security_question"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe482e5f-f71c-46d3-9b91-47be5c7f01ee"},{"name":"Find List","id":"620aa65d-638c-41fa-b0fc-63c3d6c64449","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/master/security_question","description":"<h1 id=\"description\">Description</h1>\n<p>Get list of all security questions</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>access_token</code> in the header</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ISecurityQuestionsMaster[];\n}\n\ninterface ISecurityQuestionsMaster {\n    _id: string;\n    id: string;\n    question: ILocaleQuestion[];\n    enabled: boolean;\n}\n\ninterface ILocaleQuestion {\n    _id: string;\n    id: string;\n    locale: string;\n    question: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","master","security_question"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"620aa65d-638c-41fa-b0fc-63c3d6c64449"},{"name":"Find List For usage","id":"cb910d00-613b-4833-9f42-c4f7283861a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Accept-Language","type":"text","value":"en"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/master/security_question/usage","description":"<h1 id=\"description\">Description</h1>\n<p>Get list of security questions for usage based on accept language</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>accept_language</code> in the query param</p>\n<h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>accept_language: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ISecurityQuestionsUsageResponse[];\n}\n\ninterface ISecurityQuestionsUsageResponse {\n    question: string;\n    id: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","master","security_question","usage"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb910d00-613b-4833-9f42-c4f7283861a4"}],"id":"ea429cfd-3dfb-4df9-8779-8bf59e50a415","_postman_id":"ea429cfd-3dfb-4df9-8779-8bf59e50a415","description":""},{"name":"Usage","item":[{"name":"Initiate and Enroll","id":"eb211c0b-9871-4a22-9ac5-82f314ede924","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"security_questions\":[\n\t\t{\n\t\t\t\"question_id\":\"94445d72-c486-45a3-81d1-5d86db51f53e\",\n\t\t\t\"answer\":\"1-1-1\"\n\t\t}\n\t\t]\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/initiate/security_question","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate and enroll the Security question to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationSetupRequestEntity</code> entity in the body section and pass <code>security_question</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationSetupRequestEntity {\n    security_questions: ISecurityQuestionsAnswers[];\n    track_id: string;\n}\n\ninterface ISecurityQuestionsAnswers {\n    ph_id: string;\n    sub: string;\n    question_id: string;\n    answer: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationSetupResponseEntity;\n}\n\ninterface IInitVerificationSetupResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","initiate","security_question"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb211c0b-9871-4a22-9ac5-82f314ede924"}],"id":"bfc0211f-777c-4a89-91ef-10ec2439a746","_postman_id":"bfc0211f-777c-4a89-91ef-10ec2439a746","description":""}],"id":"b4257ddb-478f-4ad9-9028-c18bbd5e298a","_postman_id":"b4257ddb-478f-4ad9-9028-c18bbd5e298a","description":""},{"name":"Common","item":[{"name":"Cancel By User","id":"4e1c1591-a9ec-4b47-ba87-65790de53a8d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"lat","type":"text","value":"12.893642"},{"key":"lon","type":"text","value":"77.679130"},{"key":"x-forwarded-for","type":"text","value":"49.207.48.190"}],"body":{"mode":"raw","raw":"{\n\t\"exchange_id\":\"77b940ea-5589-4b71-acb2-74e2d6a0c062\",\n\t\"reason\":\"back clicked\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/cancel/:verification_type","description":"<h1 id=\"description\">Description</h1>\n<p>To cancel the verification setup process</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>ICancelAuthRequestEntity</code> in the body section and <code>verification_type</code> in the path param</p>\n<h2 id=\"path-param\">Path Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ICancelAuthRequestEntity {\n    exchange_id: string; // *\n    reason: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRejectVerificationAuthenticationResponseEntity;\n}\n\ninterface IRejectVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","cancel",":verification_type"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"974ba67f-7470-4e11-b65d-a3b0bf1e4472","type":"string","value":"","key":"verification_type"}]}},"response":[],"_postman_id":"4e1c1591-a9ec-4b47-ba87-65790de53a8d"}],"id":"56b914e2-b545-45d9-8c04-6a14a9cb31bd","_postman_id":"56b914e2-b545-45d9-8c04-6a14a9cb31bd","description":""}],"id":"240464ac-16dc-4026-92fd-3a90f6d2b0f8","_postman_id":"240464ac-16dc-4026-92fd-3a90f6d2b0f8","description":""},{"name":"VerificationAuthenticate","item":[{"name":"Email","item":[{"name":"Initiate","id":"bfd18e60-0f08-4922-b9ca-2d99643ad83f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/email","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the authentication process and send Email to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>email</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string;\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; \n    push_id: string;\n    device_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","email"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bfd18e60-0f08-4922-b9ca-2d99643ad83f"},{"name":"Authenticate","id":"f9c48a6c-623c-43f3-bb9d-8af753d6c87d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"exchange_id\":\"2119c11a-3f62-4de4-aa32-28dc13945e7a\",\n\t\"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n\t\"pass_code\":\"710472\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/email","description":"<h1 id=\"description\">Description</h1>\n<p>To authenticate the user using Email verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAuthVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>email</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    pass_code: string; // *\n    client_id: string; // *\n    device_id: string;\n    push_id: string;\n    upload_attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n    single_factor_auth: boolean;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthVerificationAuthenticationResponseEntity;\n}\n\ninterface IAuthVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","email"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9c48a6c-623c-43f3-bb9d-8af753d6c87d"}],"id":"24af7622-d6ea-4a9b-abb5-78b0a4f9175e","_postman_id":"24af7622-d6ea-4a9b-abb5-78b0a4f9175e","description":""},{"name":"SMS","item":[{"name":"Initiate","id":"4057a968-cd87-437c-96e7-5e1ca351e441","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"6bf074bc-79c0-45b7-b5bf-0f9bb05c213a\",\n\t\"medium_id\":\"04689993-8df1-4c86-88b8-eb2442aeb927\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/sms","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the authentication process and send SMS to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>sms</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string;\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; \n    push_id: string;\n    device_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","sms"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4057a968-cd87-437c-96e7-5e1ca351e441"},{"name":"Authenticate","id":"0706b580-4b3a-446c-a65c-220caaaf4821","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"exchange_id\":\"007ecb83-3471-4b63-846a-00a03110b790\",\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"pass_code\":\"396549\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/sms","description":"<h1 id=\"description\">Description</h1>\n<p>To authenticate the user using SMS verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAuthVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>sms</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    pass_code: string; // *\n    client_id: string; // *\n    device_id: string;\n    push_id: string;\n    upload_attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n    single_factor_auth: boolean;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthVerificationAuthenticationResponseEntity;\n}\n\ninterface IAuthVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","sms"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0706b580-4b3a-446c-a65c-220caaaf4821"}],"id":"b5308c79-1723-4e53-82b5-78c69cc6741f","_postman_id":"b5308c79-1723-4e53-82b5-78c69cc6741f","description":""},{"name":"IVR","item":[{"name":"Initiate","id":"184329ef-f165-438b-ab98-799dc580283d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"6bf074bc-79c0-45b7-b5bf-0f9bb05c213a\",\n\t\"medium_id\":\"04689993-8df1-4c86-88b8-eb2442aeb927\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/ivr","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the authentication process and trigger IVR verification call to the user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>ivr</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string;\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; \n    push_id: string;\n    device_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n    push_selected_number: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","ivr"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"184329ef-f165-438b-ab98-799dc580283d"},{"name":"Authenticate","id":"8aec1697-5d6b-42d3-8df8-2fea3f970dd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"exchange_id\":\"2e9a1b82-67b4-45dc-8783-284f71aaa8c3\",\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"pass_code\":\"925626\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/ivr","description":"<h1 id=\"description\">Description</h1>\n<p>To authenticate the user using IVR verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAuthVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>ivr</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    pass_code: string; // *\n    client_id: string; // *\n    device_id: string;\n    push_id: string;\n    upload_attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n    single_factor_auth: boolean;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthVerificationAuthenticationResponseEntity;\n}\n\ninterface IAuthVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","ivr"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8aec1697-5d6b-42d3-8df8-2fea3f970dd3"}],"id":"2ebce7d1-6d27-466e-a3ad-369db38da623","_postman_id":"2ebce7d1-6d27-466e-a3ad-369db38da623","description":""},{"name":"TOTP","item":[{"name":"Initiate","id":"de7b9c6b-5b8f-438d-8150-8c40de6e2cbc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"6bf074bc-79c0-45b7-b5bf-0f9bb05c213a\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/totp","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the TOTP authentication process</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>totp</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string;\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; // *\n    push_id: string;\n    device_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","totp"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de7b9c6b-5b8f-438d-8150-8c40de6e2cbc"},{"name":"Authenticate","id":"a5c9c0a9-9911-4c31-bbf6-285398dabcac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"exchange_id\":\"b1aba244-4ec9-4295-8e66-b25a89ddaea3\",\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"pass_code\":\"589953\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/totp","description":"<h1 id=\"description\">Description</h1>\n<p>To authenticate the user using TOTP verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAuthVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>totp</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    pass_code: string; // *\n    client_id: string; // *\n    device_id: string; // *\n    push_id: string; // *\n    upload_attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n    single_factor_auth: boolean;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthVerificationAuthenticationResponseEntity;\n}\n\ninterface IAuthVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","totp"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5c9c0a9-9911-4c31-bbf6-285398dabcac"}],"id":"372da94d-79da-4100-a8c1-1c0655694b4f","_postman_id":"372da94d-79da-4100-a8c1-1c0655694b4f","description":""},{"name":"BackupCode","item":[{"name":"Initiate","id":"75b689e2-fe92-4eb5-9ac3-97caba158d24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"6bf074bc-79c0-45b7-b5bf-0f9bb05c213a\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/backupcode","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the backupcode authentication process</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>backupcode</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string;\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; \n    push_id: string;\n    device_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","backupcode"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"75b689e2-fe92-4eb5-9ac3-97caba158d24"},{"name":"Authenticate","id":"3d9ba78e-1929-48b9-a24b-0949089b6ccb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"exchange_id\":\"b1aba244-4ec9-4295-8e66-b25a89ddaea3\",\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"pass_code\":\"589953\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/backupcode","description":"<h1 id=\"description\">Description</h1>\n<p>To authenticate the user using Backupcode verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAuthVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>backupcode</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    pass_code: string; // *\n    client_id: string; // *\n    device_id: string; \n    push_id: string; \n    upload_attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n    single_factor_auth: boolean;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthVerificationAuthenticationResponseEntity;\n}\n\ninterface IAuthVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","backupcode"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3d9ba78e-1929-48b9-a24b-0949089b6ccb"}],"id":"57805bd1-5bda-4b00-bfba-431f638ce1cb","_postman_id":"57805bd1-5bda-4b00-bfba-431f638ce1cb","description":""},{"name":"Pattern","item":[{"name":"Initiate","id":"0dfab02e-e13a-4e56-8fb1-b63f18ecfd91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"4221e022-0341-40ad-9a05-5404aa02c876\",\n\t\"medium_id\":\"75a8dfb5-ddf7-4776-99bb-f34123008a97\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/pattern","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Pattern authentication process</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>pattern</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string;\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; // *\n    push_id: string;\n    device_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","pattern"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0dfab02e-e13a-4e56-8fb1-b63f18ecfd91"},{"name":"Ack Push","id":"35c2081b-85f0-4266-9c48-517473f920f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"748b90a0-63a7-4427-bb42-039ef673139f\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/push_acknowledge/pattern","description":"<h1 id=\"description\">Description</h1>\n<p>To acknowledge the pushId </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IACKVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>pattern</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IACKVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IACKVerificationAuthenticationResponseEntity;\n}\n\ninterface IACKVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n    address: IAddress;\n    device_info: IDeviceInfo;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\ninterface IAddress {\n    country_short: string;\n    country_long: string;\n    region: string;\n    city: string;\n    zipcode: string;\n    street: string;\n    houseNo: string;\n    formattedAddress: string;\n    latitude: number;\n    longitude: number;\n    ip: string;\n    ip_no: string;\n    resolver: string;\n}\n\ninterface IDeviceInfo {\n    user_device_id: string;\n    device_info: IDeviceRequest;\n}\n\ninterface IDeviceRequest {\n    userAgent: string;\n    ipAddress: string;\n    lat: string;\n    lon: string;\n    deviceId: string;\n    usedTime: Date;\n    purpose: string;\n    requestId: string;\n    sub: string;\n    os?: IVersionInfo;\n    engine?: IVersionInfo;\n    browser?: IVersionInfo;\n    pushNotificationId: string;\n    deviceMake: string;\n    deviceModel: string;\n    deviceType: string;\n}\n\ninterface IVersionInfo {\n    name: string;\n    version: string;\n    major: string;\n    minor: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","push_acknowledge","pattern"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"35c2081b-85f0-4266-9c48-517473f920f6"},{"name":"Allow","id":"ead62b25-33dd-447a-89f8-5b0f7cd01e03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n\t\"exchange_id\":\"5a2d75f8-577b-47e6-9310-88154ed070ab\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"938c570e-7728-4fa3-b62f-5167f722c788\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/allow/pattern","description":"<h1 id=\"description\">Description</h1>\n<p>To allow the user to authenticate by accepting the notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAllowVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>pattern</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAllowVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAllowVerificationAuthenticationResponseEntity;\n}\n\ninterface IAllowVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n    push_random_numbers: string[];\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","allow","pattern"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ead62b25-33dd-447a-89f8-5b0f7cd01e03"},{"name":"Reject","id":"797f2956-5886-45b2-8d4c-93411058be3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"77b940ea-5589-4b71-acb2-74e2d6a0c062\",\n\t\"device_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"client_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"push_id\":\"20cdbcbe-1802-4612-a428-618225acce74\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/reject/pattern","description":"<h1 id=\"description\">Description</h1>\n<p>To reject the user by denying the notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IRejectVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>pattern</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IRejectVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n    reason: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRejectVerificationAuthenticationResponseEntity;\n}\n\ninterface IRejectVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","reject","pattern"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"797f2956-5886-45b2-8d4c-93411058be3e"},{"name":"Authenticate","id":"de3475e4-63d5-4515-8a06-e1420758467b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n\t\"exchange_id\":\"ce8e3eed-9294-40b7-890d-e8e42ade9d7e\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"938c570e-7728-4fa3-b62f-5167f722c788\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\",\n\t\"pass_code\":\"1234\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/pattern","description":"<h1 id=\"description\">Description</h1>\n<p>To authenticate the user using Pattern verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAuthVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>pattern</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    pass_code: string; // *\n    client_id: string; // *\n    device_id: string; // *\n    push_id: string; // *\n    upload_attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n    single_factor_auth: boolean;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthVerificationAuthenticationResponseEntity;\n}\n\ninterface IAuthVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","pattern"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"de3475e4-63d5-4515-8a06-e1420758467b"},{"name":"Acknowledge","id":"e748c3bf-0a11-4465-814f-ffe690225923","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"fe95ca28-3e98-4e48-bf64-4618e1857711\",\n\t\"device_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"client_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"push_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"pass_code\":\"1234\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/acknowledge/pattern","description":"<h1 id=\"description\">Description</h1>\n<p>To acknowledge the process for Pattern Recognition</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAcknowledgeVerificationAuthenticationRequest</code> entity in the body section and pass <code>pattern</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAcknowledgeVerificationAuthenticationRequest {\n    exchange_id: string; // *\n    status_id: string; // *\n    load_history: boolean; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAcknowledgeVerificationAuthenticationResponseEntity;\n}\n\ninterface IAcknowledgeVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n    completed: boolean;\n    requested_types: string[];\n    completed_types: string[];\n    access_history: IACKAccessVerificationHistory[];\n    usage_type: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\ninterface IACKAccessVerificationHistory {\n    verification_type: string;\n    history: IACKAccessHistory[];\n}\n\ninterface IACKAccessHistory {\n    status: string;\n    location_details: ILocationDetailsTracking;\n    device_info: IDeviceInfo;\n}\n\ninterface ILocationDetailsTracking extends mongoose.Document {\n    _id: string;\n    id: string;\n    ipaddress_info: IIpAddress;\n    location_info: ILocation;\n    distance_metter: number;\n}\n\ninterface IIpAddress {\n    ipAddress: string;\n    type: string;\n    location: ILocation;\n}\n\ninterface ILocation {\n    id: string;\n    lat?: string;\n    lon?: string;\n    address: IAddress;\n}\n\ninterface IAddress {\n    country_short: string;\n    country_long: string;\n    region: string;\n    city: string;\n    zipcode: string;\n    street: string;\n    houseNo: string;\n    formattedAddress: string;\n    latitude: number;\n    longitude: number;\n    ip: string;\n    ip_no: string;\n    resolver: string;\n}\n\ninterface IDeviceInfo {\n    user_device_id: string;\n    device_info: IDeviceRequest;\n}\n\ninterface IDeviceRequest {\n    userAgent: string;\n    ipAddress: string;\n    lat: string;\n    lon: string;\n    deviceId: string;\n    usedTime: Date;\n    purpose: string;\n    requestId: string;\n    sub: string;\n    os?: IVersionInfo;\n    engine?: IVersionInfo;\n    browser?: IVersionInfo;\n    pushNotificationId: string;\n    deviceMake: string;\n    deviceModel: string;\n    deviceType: string;\n}\n\ninterface IVersionInfo {\n    name: string;\n    version: string;\n    major: string;\n    minor: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","acknowledge","pattern"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e748c3bf-0a11-4465-814f-ffe690225923"}],"id":"8b85e61b-183f-468c-bbe5-69168e4d79c2","_postman_id":"8b85e61b-183f-468c-bbe5-69168e4d79c2","description":""},{"name":"TouchId","item":[{"name":"Initiate","id":"a75bb9d1-f212-4d29-955d-ca4635129106","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"6bf074bc-79c0-45b7-b5bf-0f9bb05c213a\",\n\t\"medium_id\":\"68512b79-823b-40bd-ac73-6eca234d2b6f\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/touchid","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Touch Id authentication process</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>touchid</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string;\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; // *\n    push_id: string;\n    device_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","touchid"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a75bb9d1-f212-4d29-955d-ca4635129106"},{"name":"Ack Push","id":"6041fe45-5a7d-476d-be5e-ae4e4faad3bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"c68b0875-8600-4d72-b4dd-93c0113c627a\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/push_acknowledge/touchid","description":"<h1 id=\"description\">Description</h1>\n<p>To acknowledge the pushId </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IACKVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>touchid</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IACKVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IACKVerificationAuthenticationResponseEntity;\n}\n\ninterface IACKVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n    address: IAddress;\n    device_info: IDeviceInfo;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\ninterface IAddress {\n    country_short: string;\n    country_long: string;\n    region: string;\n    city: string;\n    zipcode: string;\n    street: string;\n    houseNo: string;\n    formattedAddress: string;\n    latitude: number;\n    longitude: number;\n    ip: string;\n    ip_no: string;\n    resolver: string;\n}\n\ninterface IDeviceInfo {\n    user_device_id: string;\n    device_info: IDeviceRequest;\n}\n\ninterface IDeviceRequest {\n    userAgent: string;\n    ipAddress: string;\n    lat: string;\n    lon: string;\n    deviceId: string;\n    usedTime: Date;\n    purpose: string;\n    requestId: string;\n    sub: string;\n    os?: IVersionInfo;\n    engine?: IVersionInfo;\n    browser?: IVersionInfo;\n    pushNotificationId: string;\n    deviceMake: string;\n    deviceModel: string;\n    deviceType: string;\n}\n\ninterface IVersionInfo {\n    name: string;\n    version: string;\n    major: string;\n    minor: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","push_acknowledge","touchid"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6041fe45-5a7d-476d-be5e-ae4e4faad3bb"},{"name":"Allow","id":"7409847b-e128-4cf6-a80b-e1c6ffd4334d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"a80ac7a0-8122-4fe1-8dcd-ed1f3237aeb5\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/allow/touchid","description":"<h1 id=\"description\">Description</h1>\n<p>To allow the user to authenticate by accepting the notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAllowVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>touchid</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAllowVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAllowVerificationAuthenticationResponseEntity;\n}\n\ninterface IAllowVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n    push_random_numbers: string[];\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","allow","touchid"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7409847b-e128-4cf6-a80b-e1c6ffd4334d"},{"name":"Reject","id":"75d31342-dc3b-44f4-b367-861a355bf1c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"77b940ea-5589-4b71-acb2-74e2d6a0c062\",\n\t\"device_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"client_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"push_id\":\"20cdbcbe-1802-4612-a428-618225acce74\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/reject/touchid","description":"<h1 id=\"description\">Description</h1>\n<p>To reject the user by denying the notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IRejectVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>touchid</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IRejectVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n    reason: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRejectVerificationAuthenticationResponseEntity;\n}\n\ninterface IRejectVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","reject","touchid"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"75d31342-dc3b-44f4-b367-861a355bf1c5"},{"name":"Authenticate","id":"02971385-8607-4d58-96a0-d08f6af905a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"01daeb05-8f87-4198-9b31-c54fcbe855c4\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/touchid","description":"<h1 id=\"description\">Description</h1>\n<p>To authenticate the user using Touch Id verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAuthVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>touchid</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    pass_code: string; // *\n    client_id: string; // *\n    device_id: string; // *\n    push_id: string; // *\n    upload_attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n    single_factor_auth: boolean;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthVerificationAuthenticationResponseEntity;\n}\n\ninterface IAuthVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","touchid"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"02971385-8607-4d58-96a0-d08f6af905a5"},{"name":"Acknowledge","id":"73d1aaa8-dbc5-4e6a-a551-4fece5207b88","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"f1197b67-c833-4a8a-b78f-4309bdcd7676\"\n\t\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/acknowledge/touchid","description":"<h1 id=\"description\">Description</h1>\n<p>To acknowledge the process for TouchId verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAcknowledgeVerificationAuthenticationRequest</code> entity in the body section and pass <code>touchid</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAcknowledgeVerificationAuthenticationRequest {\n    exchange_id: string; // *\n    status_id: string; // *\n    load_history: boolean; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAcknowledgeVerificationAuthenticationResponseEntity;\n}\n\ninterface IAcknowledgeVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n    completed: boolean;\n    requested_types: string[];\n    completed_types: string[];\n    access_history: IACKAccessVerificationHistory[];\n    usage_type: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\ninterface IACKAccessVerificationHistory {\n    verification_type: string;\n    history: IACKAccessHistory[];\n}\n\ninterface IACKAccessHistory {\n    status: string;\n    location_details: ILocationDetailsTracking;\n    device_info: IDeviceInfo;\n}\n\ninterface ILocationDetailsTracking extends mongoose.Document {\n    _id: string;\n    id: string;\n    ipaddress_info: IIpAddress;\n    location_info: ILocation;\n    distance_metter: number;\n}\n\ninterface IIpAddress {\n    ipAddress: string;\n    type: string;\n    location: ILocation;\n}\n\ninterface ILocation {\n    id: string;\n    lat?: string;\n    lon?: string;\n    address: IAddress;\n}\n\ninterface IAddress {\n    country_short: string;\n    country_long: string;\n    region: string;\n    city: string;\n    zipcode: string;\n    street: string;\n    houseNo: string;\n    formattedAddress: string;\n    latitude: number;\n    longitude: number;\n    ip: string;\n    ip_no: string;\n    resolver: string;\n}\n\ninterface IDeviceInfo {\n    user_device_id: string;\n    device_info: IDeviceRequest;\n}\n\ninterface IDeviceRequest {\n    userAgent: string;\n    ipAddress: string;\n    lat: string;\n    lon: string;\n    deviceId: string;\n    usedTime: Date;\n    purpose: string;\n    requestId: string;\n    sub: string;\n    os?: IVersionInfo;\n    engine?: IVersionInfo;\n    browser?: IVersionInfo;\n    pushNotificationId: string;\n    deviceMake: string;\n    deviceModel: string;\n    deviceType: string;\n}\n\ninterface IVersionInfo {\n    name: string;\n    version: string;\n    major: string;\n    minor: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","acknowledge","touchid"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"73d1aaa8-dbc5-4e6a-a551-4fece5207b88"}],"id":"5536466d-ae40-4014-829b-e2046716b6dc","_postman_id":"5536466d-ae40-4014-829b-e2046716b6dc","description":""},{"name":"Push","item":[{"name":"Initiate","id":"b649ae67-8979-4cc8-af30-faa90c0b024e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"6bf074bc-79c0-45b7-b5bf-0f9bb05c213a\",\n\t\"medium_id\":\"0ad9c6b0-be9e-4dc6-9b58-caca74abb4f7\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/push","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Push authentication process</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>push</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string;\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; // *\n    push_id: string;\n    device_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n    push_selected_number: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","push"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b649ae67-8979-4cc8-af30-faa90c0b024e"},{"name":"Ack Push","id":"22d51c33-723a-4ec3-879e-bd0a88462d6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"1dac8361-3c4b-47b8-9c1c-5ab5409f84a6\",\n\t\"device_id\":\"9F62C781-D871-4A93-8AEE-81875C0FA6CB\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cRxbCjxMQB4:APA91bFvTkMZzg5YasCpk_sXMrPpz1ursHn9Cmve64rPgYG26h4RPcDXB9sozBtNo5ehSAlP5GvSiWWsRNv-SYxVQSQZrvI7ONuOfnYRwsevuwYOlnKYRYHngAXdraVmdjXo-2bHyI3r\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/push_acknowledge/push","description":"<h1 id=\"description\">Description</h1>\n<p>To acknowledge the pushId </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IACKVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>push</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IACKVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IACKVerificationAuthenticationResponseEntity;\n}\n\ninterface IACKVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n    address: IAddress;\n    device_info: IDeviceInfo;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\ninterface IAddress {\n    country_short: string;\n    country_long: string;\n    region: string;\n    city: string;\n    zipcode: string;\n    street: string;\n    houseNo: string;\n    formattedAddress: string;\n    latitude: number;\n    longitude: number;\n    ip: string;\n    ip_no: string;\n    resolver: string;\n}\n\ninterface IDeviceInfo {\n    user_device_id: string;\n    device_info: IDeviceRequest;\n}\n\ninterface IDeviceRequest {\n    userAgent: string;\n    ipAddress: string;\n    lat: string;\n    lon: string;\n    deviceId: string;\n    usedTime: Date;\n    purpose: string;\n    requestId: string;\n    sub: string;\n    os?: IVersionInfo;\n    engine?: IVersionInfo;\n    browser?: IVersionInfo;\n    pushNotificationId: string;\n    deviceMake: string;\n    deviceModel: string;\n    deviceType: string;\n}\n\ninterface IVersionInfo {\n    name: string;\n    version: string;\n    major: string;\n    minor: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","push_acknowledge","push"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"22d51c33-723a-4ec3-879e-bd0a88462d6f"},{"name":"Allow","id":"2e38499f-d635-4d6a-a344-30c551a2ef2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"bc326e51-5ae8-4619-a913-0587c30eff19\",\n\t\"device_id\":\"9F62C781-D871-4A93-8AEE-81875C0FA6CB\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cRxbCjxMQB4:APA91bFvTkMZzg5YasCpk_sXMrPpz1ursHn9Cmve64rPgYG26h4RPcDXB9sozBtNo5ehSAlP5GvSiWWsRNv-SYxVQSQZrvI7ONuOfnYRwsevuwYOlnKYRYHngAXdraVmdjXo-2bHyI3r\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/allow/push","description":"<h1 id=\"description\">Description</h1>\n<p>To allow the user to authenticate by accepting the notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAllowVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>push</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAllowVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAllowVerificationAuthenticationResponseEntity;\n}\n\ninterface IAllowVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n    push_random_numbers: string[];\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","allow","push"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e38499f-d635-4d6a-a344-30c551a2ef2e"},{"name":"Reject","id":"e3c38801-7aec-4a36-a790-64b12a82438e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"77b940ea-5589-4b71-acb2-74e2d6a0c062\",\n\t\"device_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"client_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"push_id\":\"20cdbcbe-1802-4612-a428-618225acce74\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/reject/push","description":"<h1 id=\"description\">Description</h1>\n<p>To reject the user by denying the notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IRejectVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>push</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IRejectVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n    reason: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRejectVerificationAuthenticationResponseEntity;\n}\n\ninterface IRejectVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","reject","push"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e3c38801-7aec-4a36-a790-64b12a82438e"},{"name":"Authenticate","id":"8a8b6eda-166a-4bab-9c5a-08a31a9941d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"26e1313a-7d9a-4488-83b3-164ff4424f57\",\n\t\"device_id\":\"9F62C781-D871-4A93-8AEE-81875C0FA6CB\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cRxbCjxMQB4:APA91bFvTkMZzg5YasCpk_sXMrPpz1ursHn9Cmve64rPgYG26h4RPcDXB9sozBtNo5ehSAlP5GvSiWWsRNv-SYxVQSQZrvI7ONuOfnYRwsevuwYOlnKYRYHngAXdraVmdjXo-2bHyI3r\",\n\t\"pass_code\":\"32\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/push","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","push"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8a8b6eda-166a-4bab-9c5a-08a31a9941d0"},{"name":"Acknowledge","id":"ee2ab8ce-15a4-4a73-85e7-825d83abfcb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"652efc73-e08f-4476-9bae-c1ecc516bdec\"\n\t\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/acknowledge/push","description":"<h1 id=\"description\">Description</h1>\n<p>To acknowledge the process for Smart push verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAcknowledgeVerificationAuthenticationRequest</code> entity in the body section and pass <code>push</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAcknowledgeVerificationAuthenticationRequest {\n    exchange_id: string; // *\n    status_id: string; // *\n    load_history: boolean; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAcknowledgeVerificationAuthenticationResponseEntity;\n}\n\ninterface IAcknowledgeVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n    completed: boolean;\n    requested_types: string[];\n    completed_types: string[];\n    access_history: IACKAccessVerificationHistory[];\n    usage_type: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\ninterface IACKAccessVerificationHistory {\n    verification_type: string;\n    history: IACKAccessHistory[];\n}\n\ninterface IACKAccessHistory {\n    status: string;\n    location_details: ILocationDetailsTracking;\n    device_info: IDeviceInfo;\n}\n\ninterface ILocationDetailsTracking extends mongoose.Document {\n    _id: string;\n    id: string;\n    ipaddress_info: IIpAddress;\n    location_info: ILocation;\n    distance_metter: number;\n}\n\ninterface IIpAddress {\n    ipAddress: string;\n    type: string;\n    location: ILocation;\n}\n\ninterface ILocation {\n    id: string;\n    lat?: string;\n    lon?: string;\n    address: IAddress;\n}\n\ninterface IAddress {\n    country_short: string;\n    country_long: string;\n    region: string;\n    city: string;\n    zipcode: string;\n    street: string;\n    houseNo: string;\n    formattedAddress: string;\n    latitude: number;\n    longitude: number;\n    ip: string;\n    ip_no: string;\n    resolver: string;\n}\n\ninterface IDeviceInfo {\n    user_device_id: string;\n    device_info: IDeviceRequest;\n}\n\ninterface IDeviceRequest {\n    userAgent: string;\n    ipAddress: string;\n    lat: string;\n    lon: string;\n    deviceId: string;\n    usedTime: Date;\n    purpose: string;\n    requestId: string;\n    sub: string;\n    os?: IVersionInfo;\n    engine?: IVersionInfo;\n    browser?: IVersionInfo;\n    pushNotificationId: string;\n    deviceMake: string;\n    deviceModel: string;\n    deviceType: string;\n}\n\ninterface IVersionInfo {\n    name: string;\n    version: string;\n    major: string;\n    minor: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","acknowledge","push"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ee2ab8ce-15a4-4a73-85e7-825d83abfcb0"}],"id":"bdf4dafa-3fcc-4e9a-a493-80eaebeb2acb","_postman_id":"bdf4dafa-3fcc-4e9a-a493-80eaebeb2acb","description":""},{"name":"Face","item":[{"name":"SingleFactor","item":[{"name":"Singlefactor Initiate","id":"11c9665b-e165-49e9-bce8-1eb32652bba2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"lat","type":"text","value":"12.893642"},{"key":"lon","type":"text","value":"77.679130"},{"key":"x-forwarded-for","type":"text","value":"49.207.48.190"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"6bf074bc-79c0-45b7-b5bf-0f9bb05c213a\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\",\n\t\"single_factor_auth\":true\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/face","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Face authentication process </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>face</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string; // *\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; // *\n    push_id: string;\n    device_id: string;\n    single_factor_auth: boolean; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","face"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"11c9665b-e165-49e9-bce8-1eb32652bba2"},{"name":"Singlefactor Authenticate","id":"81bca116-1512-49c2-bae1-337d98a623f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"lat","type":"text","value":"12.893642"},{"key":"lon","type":"text","value":"77.679130"},{"key":"x-forwarded-for","type":"text","value":"49.207.48.190"}],"body":{"mode":"formdata","formdata":[{"key":"sub","value":"7243bb35-2ff2-4705-9094-52da378f852d","type":"text"},{"key":"exchange_id","value":"f0fa414e-6938-4a17-8f59-f50eddc9c5f4","type":"text"},{"key":"device_id","value":"098B97F3-2D0D-45B4-8B52-532C7B17CA6B","type":"text"},{"key":"client_id","value":"ab4922b8-d344-426f-8af0-3a92e5f40775","type":"text"},{"key":"push_id","value":"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL","type":"text"},{"key":"photo","value":null,"type":"file"},{"key":"single_factor_auth","value":"true","type":"text"}]},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/face","description":"<h1 id=\"description\">Description</h1>\n<p>To authenticate the user using Face verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAuthVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>face</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    pass_code: string; // *\n    client_id: string; // *\n    device_id: string; // *\n    push_id: string; // *\n    upload_attempt: number;\n    fido2_client_response: FIDO2EnrollEntity;\n    single_factor_auth: boolean; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthVerificationAuthenticationResponseEntity;\n}\n\ninterface IAuthVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","face"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"81bca116-1512-49c2-bae1-337d98a623f8"}],"id":"b384e348-9ce0-4548-8130-3b190d217007","_postman_id":"b384e348-9ce0-4548-8130-3b190d217007","description":""},{"name":"Initiate","id":"6c134101-02dc-4828-aa80-653c4b85bb6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"6bf074bc-79c0-45b7-b5bf-0f9bb05c213a\",\n\t\"medium_id\":\"66192a93-0430-44e0-a409-ce0e7fdb8639\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/face","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Face authentication process </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>face</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string; // *\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; // *\n    push_id: string;\n    device_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","face"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6c134101-02dc-4828-aa80-653c4b85bb6e"},{"name":"Ack Push","id":"d67c61da-9dbd-4292-82f9-a9feaa04b6c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"9a9b4c29-4370-45dc-a353-bb9b95c45af8\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/push_acknowledge/face","description":"<h1 id=\"description\">Description</h1>\n<p>To acknowledge the pushId </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IACKVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>face</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IACKVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IACKVerificationAuthenticationResponseEntity;\n}\n\ninterface IACKVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n    address: IAddress;\n    device_info: IDeviceInfo;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\ninterface IAddress {\n    country_short: string;\n    country_long: string;\n    region: string;\n    city: string;\n    zipcode: string;\n    street: string;\n    houseNo: string;\n    formattedAddress: string;\n    latitude: number;\n    longitude: number;\n    ip: string;\n    ip_no: string;\n    resolver: string;\n}\n\ninterface IDeviceInfo {\n    user_device_id: string;\n    device_info: IDeviceRequest;\n}\n\ninterface IDeviceRequest {\n    userAgent: string;\n    ipAddress: string;\n    lat: string;\n    lon: string;\n    deviceId: string;\n    usedTime: Date;\n    purpose: string;\n    requestId: string;\n    sub: string;\n    os?: IVersionInfo;\n    engine?: IVersionInfo;\n    browser?: IVersionInfo;\n    pushNotificationId: string;\n    deviceMake: string;\n    deviceModel: string;\n    deviceType: string;\n}\n\ninterface IVersionInfo {\n    name: string;\n    version: string;\n    major: string;\n    minor: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","push_acknowledge","face"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d67c61da-9dbd-4292-82f9-a9feaa04b6c8"},{"name":"Allow","id":"e0dbd3ab-5cf3-49ac-8894-dcf019628b9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"b1fdf96d-aa83-4bc6-be51-f8a80701bf60\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/allow/face","description":"<h1 id=\"description\">Description</h1>\n<p>To allow the user to authenticate by accepting the notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAllowVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>face</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAllowVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAllowVerificationAuthenticationResponseEntity;\n}\n\ninterface IAllowVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n    push_random_numbers: string[];\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","allow","face"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e0dbd3ab-5cf3-49ac-8894-dcf019628b9a"},{"name":"Reject","id":"cef32bb3-1000-451a-a391-c23a6d945ad9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"77b940ea-5589-4b71-acb2-74e2d6a0c062\",\n\t\"device_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"client_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"push_id\":\"20cdbcbe-1802-4612-a428-618225acce74\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/reject/face","description":"<h1 id=\"description\">Description</h1>\n<p>To reject the user by denying the notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IRejectVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>face</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IRejectVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n    reason: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRejectVerificationAuthenticationResponseEntity;\n}\n\ninterface IRejectVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","reject","face"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cef32bb3-1000-451a-a391-c23a6d945ad9"},{"name":"Authenticate","id":"f6addd97-0397-4e20-946b-0da0a28b41e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"sub","value":"7243bb35-2ff2-4705-9094-52da378f852d","type":"text"},{"key":"exchange_id","value":"1651f7be-e68c-42ad-b1b5-bc71950b5821","type":"text"},{"key":"device_id","value":"098B97F3-2D0D-45B4-8B52-532C7B17CA6B","type":"text"},{"key":"client_id","value":"ab4922b8-d344-426f-8af0-3a92e5f40775","type":"text"},{"key":"push_id","value":"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL","type":"text"},{"key":"photo","value":null,"type":"file"}]},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/face","description":"<h1 id=\"description\">Description</h1>\n<p>To authenticate the user using Face verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAuthVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>face</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    pass_code: string; // *\n    client_id: string; // *\n    device_id: string; // *\n    push_id: string; // *\n    upload_attempt: number; // *\n    fido2_client_response: FIDO2EnrollEntity;\n    single_factor_auth: boolean;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthVerificationAuthenticationResponseEntity;\n}\n\ninterface IAuthVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","face"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f6addd97-0397-4e20-946b-0da0a28b41e8"},{"name":"Acknowledge","id":"5fa84b14-077a-41e7-b995-e9b86bef71b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"8cfe08a5-ab37-4e75-9e70-0bf28af12cb1\"\n\t\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/acknowledge/face","description":"<h1 id=\"description\">Description</h1>\n<p>To acknowledge the process for Face recognition</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAcknowledgeVerificationAuthenticationRequest</code> entity in the body section and pass <code>face</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAcknowledgeVerificationAuthenticationRequest {\n    exchange_id: string; // *\n    status_id: string; // *\n    load_history: boolean; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAcknowledgeVerificationAuthenticationResponseEntity;\n}\n\ninterface IAcknowledgeVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n    completed: boolean;\n    requested_types: string[];\n    completed_types: string[];\n    access_history: IACKAccessVerificationHistory[];\n    usage_type: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\ninterface IACKAccessVerificationHistory {\n    verification_type: string;\n    history: IACKAccessHistory[];\n}\n\ninterface IACKAccessHistory {\n    status: string;\n    location_details: ILocationDetailsTracking;\n    device_info: IDeviceInfo;\n}\n\ninterface ILocationDetailsTracking extends mongoose.Document {\n    _id: string;\n    id: string;\n    ipaddress_info: IIpAddress;\n    location_info: ILocation;\n    distance_metter: number;\n}\n\ninterface IIpAddress {\n    ipAddress: string;\n    type: string;\n    location: ILocation;\n}\n\ninterface ILocation {\n    id: string;\n    lat?: string;\n    lon?: string;\n    address: IAddress;\n}\n\ninterface IAddress {\n    country_short: string;\n    country_long: string;\n    region: string;\n    city: string;\n    zipcode: string;\n    street: string;\n    houseNo: string;\n    formattedAddress: string;\n    latitude: number;\n    longitude: number;\n    ip: string;\n    ip_no: string;\n    resolver: string;\n}\n\ninterface IDeviceInfo {\n    user_device_id: string;\n    device_info: IDeviceRequest;\n}\n\ninterface IDeviceRequest {\n    userAgent: string;\n    ipAddress: string;\n    lat: string;\n    lon: string;\n    deviceId: string;\n    usedTime: Date;\n    purpose: string;\n    requestId: string;\n    sub: string;\n    os?: IVersionInfo;\n    engine?: IVersionInfo;\n    browser?: IVersionInfo;\n    pushNotificationId: string;\n    deviceMake: string;\n    deviceModel: string;\n    deviceType: string;\n}\n\ninterface IVersionInfo {\n    name: string;\n    version: string;\n    major: string;\n    minor: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","acknowledge","face"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5fa84b14-077a-41e7-b995-e9b86bef71b9"}],"id":"2ebf9ab6-5468-45f2-98b5-43a9584301ec","_postman_id":"2ebf9ab6-5468-45f2-98b5-43a9584301ec","description":""},{"name":"Voice","item":[{"name":"Initiate","id":"225c5833-471c-455b-aa06-369556051423","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"6bf074bc-79c0-45b7-b5bf-0f9bb05c213a\",\n\t\"medium_id\":\"22bc5418-d9e8-439c-b01a-6dd594b339e6\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/voice","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Voice authentication process </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>voice</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string; // *\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; // *\n    push_id: string;\n    device_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","voice"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"225c5833-471c-455b-aa06-369556051423"},{"name":"Ack Push","id":"df41116d-8dfb-442a-8cb7-e456724d3d15","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"bdf54eae-3d43-4aed-8d69-8cfbae12d384\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/push_acknowledge/voice","description":"<h1 id=\"description\">Description</h1>\n<p>To acknowledge the pushId </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IACKVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>voice</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IACKVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IACKVerificationAuthenticationResponseEntity;\n}\n\ninterface IACKVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n    address: IAddress;\n    device_info: IDeviceInfo;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\ninterface IAddress {\n    country_short: string;\n    country_long: string;\n    region: string;\n    city: string;\n    zipcode: string;\n    street: string;\n    houseNo: string;\n    formattedAddress: string;\n    latitude: number;\n    longitude: number;\n    ip: string;\n    ip_no: string;\n    resolver: string;\n}\n\ninterface IDeviceInfo {\n    user_device_id: string;\n    device_info: IDeviceRequest;\n}\n\ninterface IDeviceRequest {\n    userAgent: string;\n    ipAddress: string;\n    lat: string;\n    lon: string;\n    deviceId: string;\n    usedTime: Date;\n    purpose: string;\n    requestId: string;\n    sub: string;\n    os?: IVersionInfo;\n    engine?: IVersionInfo;\n    browser?: IVersionInfo;\n    pushNotificationId: string;\n    deviceMake: string;\n    deviceModel: string;\n    deviceType: string;\n}\n\ninterface IVersionInfo {\n    name: string;\n    version: string;\n    major: string;\n    minor: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","push_acknowledge","voice"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"df41116d-8dfb-442a-8cb7-e456724d3d15"},{"name":"Allow","id":"884f086f-693f-4a5a-9bfc-682946c447c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"c8965853-a400-46f0-b513-defc3630ae37\",\n\t\"device_id\":\"098B97F3-2D0D-45B4-8B52-532C7B17CA6B\",\n\t\"client_id\":\"ab4922b8-d344-426f-8af0-3a92e5f40775\",\n\t\"push_id\":\"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/allow/voice","description":"<h1 id=\"description\">Description</h1>\n<p>To allow the user to authenticate by accepting the notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAllowVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>voice</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAllowVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAllowVerificationAuthenticationResponseEntity;\n}\n\ninterface IAllowVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n    push_random_numbers: string[];\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","allow","voice"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"884f086f-693f-4a5a-9bfc-682946c447c8"},{"name":"Reject","id":"b4daaee7-e830-43a8-b5a4-0afd5d25791e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"77b940ea-5589-4b71-acb2-74e2d6a0c062\",\n\t\"device_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"client_id\":\"20cdbcbe-1802-4612-a428-618225acce74\",\n\t\"push_id\":\"20cdbcbe-1802-4612-a428-618225acce74\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/reject/voice","description":"<h1 id=\"description\">Description</h1>\n<p>To reject the user by denying the notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IRejectVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>voice</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IRejectVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    push_id: string; // *\n    device_id: string; // *\n    client_id: string; // *\n    reason: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRejectVerificationAuthenticationResponseEntity;\n}\n\ninterface IRejectVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","reject","voice"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b4daaee7-e830-43a8-b5a4-0afd5d25791e"},{"name":"Authenticate","id":"6602f6ed-90a7-412c-ae3d-b151be7ed7d1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"formdata","formdata":[{"key":"sub","value":"7243bb35-2ff2-4705-9094-52da378f852d","type":"text"},{"key":"exchange_id","value":"eaa2f4e9-4407-41ca-8616-0c2efdcf73bf","type":"text"},{"key":"device_id","value":"098B97F3-2D0D-45B4-8B52-532C7B17CA6B","type":"text"},{"key":"client_id","value":"ab4922b8-d344-426f-8af0-3a92e5f40775","type":"text"},{"key":"push_id","value":"cS7fVZg5hFs:APA91bFKbzKiS18c46YLA8XNq71gVZQ2mWGGnkkwAFRp3kJshvhMaITLpc4Oa-jWJueU-r64J47l-6jwWS2zDIF97u1uUxOBqv7EwBsyxkror_sxSSthIMYc_9ClJdmjpoL6PzIxs1wL","type":"text"},{"key":"voice","value":null,"type":"file"}]},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/voice","description":"<h1 id=\"description\">Description</h1>\n<p>To authenticate the user using Voice verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAuthVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>voice</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    pass_code: string; // *\n    client_id: string; // *\n    device_id: string; // *\n    push_id: string; // *\n    upload_attempt: number; // *\n    fido2_client_response: FIDO2EnrollEntity;\n    single_factor_auth: boolean;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthVerificationAuthenticationResponseEntity;\n}\n\ninterface IAuthVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","voice"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6602f6ed-90a7-412c-ae3d-b151be7ed7d1"},{"name":"Acknowledge","id":"c6af5fe4-7a08-4fab-ae4d-afc92ab0b9f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"lat","value":"12.893642","type":"text"},{"key":"lon","value":"77.679130","type":"text"},{"key":"x-forwarded-for","value":"49.207.48.190","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"8cfe08a5-ab37-4e75-9e70-0bf28af12cb1\"\n\t\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/acknowledge/voice","description":"<h1 id=\"description\">Description</h1>\n<p>To acknowledge the process for Voice Recognition</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAcknowledgeVerificationAuthenticationRequest</code> entity in the body section and pass <code>voice</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAcknowledgeVerificationAuthenticationRequest {\n    exchange_id: string; // *\n    status_id: string; // *\n    load_history: boolean; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAcknowledgeVerificationAuthenticationResponseEntity;\n}\n\ninterface IAcknowledgeVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n    completed: boolean;\n    requested_types: string[];\n    completed_types: string[];\n    access_history: IACKAccessVerificationHistory[];\n    usage_type: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n\ninterface IACKAccessVerificationHistory {\n    verification_type: string;\n    history: IACKAccessHistory[];\n}\n\ninterface IACKAccessHistory {\n    status: string;\n    location_details: ILocationDetailsTracking;\n    device_info: IDeviceInfo;\n}\n\ninterface ILocationDetailsTracking extends mongoose.Document {\n    _id: string;\n    id: string;\n    ipaddress_info: IIpAddress;\n    location_info: ILocation;\n    distance_metter: number;\n}\n\ninterface IIpAddress {\n    ipAddress: string;\n    type: string;\n    location: ILocation;\n}\n\ninterface ILocation {\n    id: string;\n    lat?: string;\n    lon?: string;\n    address: IAddress;\n}\n\ninterface IAddress {\n    country_short: string;\n    country_long: string;\n    region: string;\n    city: string;\n    zipcode: string;\n    street: string;\n    houseNo: string;\n    formattedAddress: string;\n    latitude: number;\n    longitude: number;\n    ip: string;\n    ip_no: string;\n    resolver: string;\n}\n\ninterface IDeviceInfo {\n    user_device_id: string;\n    device_info: IDeviceRequest;\n}\n\ninterface IDeviceRequest {\n    userAgent: string;\n    ipAddress: string;\n    lat: string;\n    lon: string;\n    deviceId: string;\n    usedTime: Date;\n    purpose: string;\n    requestId: string;\n    sub: string;\n    os?: IVersionInfo;\n    engine?: IVersionInfo;\n    browser?: IVersionInfo;\n    pushNotificationId: string;\n    deviceMake: string;\n    deviceModel: string;\n    deviceType: string;\n}\n\ninterface IVersionInfo {\n    name: string;\n    version: string;\n    major: string;\n    minor: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","acknowledge","voice"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c6af5fe4-7a08-4fab-ae4d-afc92ab0b9f0"}],"id":"f500e520-4c1b-4cff-a4f4-2207ba47811d","_postman_id":"f500e520-4c1b-4cff-a4f4-2207ba47811d","description":""},{"name":"FIDO2","item":[{"name":"Initiate","id":"6aaad1e1-c10d-4e52-9cb2-7191dcb5f21a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"6bf074bc-79c0-45b7-b5bf-0f9bb05c213a\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/fido2","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Fido2 authentication process </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>fido2</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string; // *\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string;\n    push_id: string;\n    device_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n    fido2_entity: FIDO2InitEntity;\n}\n\nclass FIDO2InitEntity {\n    type: string = \"\";\n    server_challenge: any;\n    fidoRequestId: string = \"\";\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","fido2"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6aaad1e1-c10d-4e52-9cb2-7191dcb5f21a"},{"name":"Authenticate","id":"580b4d45-78fe-4178-b164-cabc0ef85542","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"exchange_id\":\"dd1410f7-db76-4a7f-a843-1e7fab915613\",\n\t\"fido2_client_response\":{\n\t\t\"client_response\":{\n\t\t\t\n\t\t},\n\t\t\"fidoRequestId\": \"b327e1f2-65c3-4653-b72c-93665c019791\"\n\t}\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/fido2","description":"<h1 id=\"description\">Description</h1>\n<p>To authenticate the user using Fido2 verification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IAuthVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>fido2</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthVerificationAuthenticationRequestEntity {\n    exchange_id: string; // *\n    pass_code: string; // *\n    client_id: string; // *\n    device_id: string; \n    push_id: string; \n    upload_attempt: number;\n    fido2_client_response: FIDO2EnrollEntity; // *\n    single_factor_auth: boolean;\n}\n\nclass FIDO2EnrollEntity {\n    client_response: any;\n    fidoRequestId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthVerificationAuthenticationResponseEntity;\n}\n\ninterface IAuthVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    status_id: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","fido2"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"580b4d45-78fe-4178-b164-cabc0ef85542"}],"id":"7789374b-42a9-4636-b944-efa7eaa943a5","_postman_id":"7789374b-42a9-4636-b944-efa7eaa943a5","description":""},{"name":"SecurityQuestion","item":[{"name":"Initiate","id":"8c7415cd-20b0-47cb-96ed-6ca717a15c0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"security_questions\":[\n\t\t{\n\t\t\t\"question_id\":\"94445d72-c486-45a3-81d1-5d86db51f53e\",\n\t\t\t\"answer\":\"1-1-1\"\n\t\t}\n\t\t]\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/initiate/security_question","description":"<h1 id=\"description\">Description</h1>\n<p>To initiate the Security Question authentication process </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required \n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>IInitVerificationAuthenticationRequestEntity</code> entity in the body section and pass <code>security_question</code> in the verification_type as Path params</p>\n<h2 id=\"path-params\">Path params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IInitVerificationAuthenticationRequestEntity {\n    q: string;\n    sub: string; // *\n    email: string;\n    mobile_number: string;\n    username: string;\n    client_id: string;\n    request_id: string; // *\n    usage_type: string; // *\n    medium_id: string; \n    push_id: string;\n    device_id: string;\n    single_factor_auth: boolean; \n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IInitVerificationAuthenticateResponseEntity;\n}\n\ninterface IInitVerificationAuthenticateResponseEntity {\n    status_id: string;\n    exchange_id: IExchangeIdConfig;\n    sub: string;\n    medium_text: string;\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","initiate","security_question"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8c7415cd-20b0-47cb-96ed-6ca717a15c0d"},{"name":"Authenticate","id":"98fb28e5-df79-475f-a181-04ed3aa473e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"security_questions\":[\n\t\t{\n\t\t\t\"question_id\":\"94445d72-c486-45a3-81d1-5d86db51f53e\",\n\t\t\t\"answer\":\"1-1-1\"\n\t\t}\n\t\t]\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/authenticate/security_question","urlObject":{"path":["verification-srv","v2","authenticate","authenticate","security_question"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"98fb28e5-df79-475f-a181-04ed3aa473e2"}],"id":"3ebb09ae-aefa-4128-bad7-6a223985fea4","_postman_id":"3ebb09ae-aefa-4128-bad7-6a223985fea4","description":""},{"name":"Common","item":[{"name":"Cancel By User","id":"df657adc-2e6b-4345-a9c5-1e1ad35d0706","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"lat","type":"text","value":"12.893642"},{"key":"lon","type":"text","value":"77.679130"},{"key":"x-forwarded-for","type":"text","value":"49.207.48.190"}],"body":{"mode":"raw","raw":"{\n\t\"exchange_id\":\"77b940ea-5589-4b71-acb2-74e2d6a0c062\",\n\t\"reason\":\"back clicked\"\n}"},"url":"{{baseurl}}/verification-srv/v2/authenticate/cancel/:verification_type","description":"<h1 id=\"description\">Description</h1>\n<p>To cancel the verification authentication process</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>ICancelAuthRequestEntity</code> in the body section and <code>verification_type</code> in the path param</p>\n<h2 id=\"path-param\">Path Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ICancelAuthRequestEntity {\n    exchange_id: string; // *\n    reason: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRejectVerificationAuthenticationResponseEntity;\n}\n\ninterface IRejectVerificationAuthenticationResponseEntity {\n    exchange_id: IExchangeIdConfig;\n    push_id: string;\n    device_id: string;\n    client_id: string;\n    sub: string;\n    status_id: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","authenticate","cancel",":verification_type"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"c0bb3a72-f08b-476e-9890-e5e2f4b834fc","type":"string","value":"","key":"verification_type"}]}},"response":[],"_postman_id":"df657adc-2e6b-4345-a9c5-1e1ad35d0706"}],"id":"4d0b0198-8f9c-4ce2-ad08-2109ab7a9e35","_postman_id":"4d0b0198-8f9c-4ce2-ad08-2109ab7a9e35","description":""}],"id":"4214e80f-8ae5-47a5-8e11-7a378cb9fb27","_postman_id":"4214e80f-8ae5-47a5-8e11-7a378cb9fb27","description":""},{"name":"Public Metadata","item":[{"name":"List Configured Items","id":"0e7cbd37-f22b-4621-b42c-80ba66eeb508","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\": \"7243bb35-2ff2-4705-9094-52da378f852d\",\n\t\"request_id\":\"4221e022-0341-40ad-9a05-5404aa02c876\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/public/configured/list","description":"<h1 id=\"description\">Description</h1>\n<p>Get List of Configured Items using request_id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>request_id</code> in request headers.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IConfiguredListRequestEntity {\n    q: string;\n    sub: string;\n    email: string;\n    mobile_number: string;\n    username: string;\n    request_id: string; // *\n    verification_types: string[];\n    single_factor_sub_ref: string;\n    device_fp: string;\n    provider: string;\n\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IConfiguredResponseEntity;\n}\n\ninterface IConfiguredResponseEntity {\n    last_used_type: string;\n    configured_list: IConfiguredListResponseEntity[];\n}\n\ninterface IConfiguredListResponseEntity {\n    type: string;\n    mediums: IConfiguredMediums[];\n}\n\ninterface IConfiguredMediums {\n    id: string;\n    key_name: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","public","configured","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0e7cbd37-f22b-4621-b42c-80ba66eeb508"}],"id":"06130577-e8ad-4e89-a170-2ed32e037294","_postman_id":"06130577-e8ad-4e89-a170-2ed32e037294","description":""},{"name":"Device Metadata","item":[{"name":"List Configured Items","id":"e60ca23d-92ff-4e7a-b898-46523cf151be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n\t\"device_id\":\"9F62C781-D871-4A93-8AEE-81875C0FA6CB\",\n\t\"client_id\":\"938c570e-7728-4fa3-b62f-5167f722c788\",\n\t\"push_id\":\"enWVHzsqZGg:APA91bFn0jRx3kkWmrtj1d70YOqSuD7NY_bgoiN8qC4eF0cqjDhGGQxxp_uLr_qr9g5g_xpcgL1bXq-51pWko2MD6Sd59PDfUlH89Y1pMIpIt5ASHe7PvTezMVUYctN9QqZC3dyUDpus\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/device/configured/list","description":"<h1 id=\"description\">Description</h1>\n<p>Get List Configured Items By Device</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>device_id</code>, <code>push_id</code>, <code>client_id</code> and <code>sub</code> in request body.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IDeviceConfiguredListRequest {\n    device_id: string; // *\n    push_id: string; // *\n    client_id: string; // *\n    sub: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserinfoLite;\n}\n\ninterface IUserinfoLite {\n    sub: string;\n    given_name: string;\n    family_name: string;\n    email: string;\n    mobile_number: string;\n    picture: string;\n    profile: string;\n    providerUserId: string;\n}\n\ninterface IConfiguredListByDeviceResponse {\n    configured_at: Date;\n    verification_type: string;\n    sub: string;\n    totp_secret: string;\n}\n\ninterface IVerificationDeviceSyncResponse {\n    user_info: IUserinfoLite;\n    tenant_name: string;\n    tenant_key: string;\n    configured_list: IConfiguredListByDeviceResponse[];\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","device","configured","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e60ca23d-92ff-4e7a-b898-46523cf151be"},{"name":"Get Auth Pending list","id":"8170107e-6e7f-46ba-a42f-7d9a41ec85e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"client_id\": \"938c570e-7728-4fa3-b62f-5167f722c788\",\n    \"device_id\": \"ae77d2c83baaad1d\",\n    \"push_id\": \"cbXi8SlKrRg:APA91bFpaUYQyWekvOUEuV_F6CYdlOeBujOrk6KUPLMrVQSroN0ISae_CZYr2ysND2n8suc_k8UcdZ_fzBQesgZaoGytbauhkJOOetoIT0ngz-jq9zNkVZ0FvbHqfm5Nr-u6yEjX83CG\",\n    \"sub\": \"825ef0f8-4f2d-46ad-831d-08a30561305d\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/device/pending/auth/list","description":"<h1 id=\"description\">Description</h1>\n<p>Get Device Authentication Pending List</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>device_id</code>, <code>push_id</code>, <code>client_id</code> and <code>sub</code> in request body.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IDeviceConfiguredListRequest {\n    device_id: string; // *\n    push_id: string; // *\n    client_id: string; // *\n    sub: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: InitiatePushEntity[];\n}\n\ninterface InitiatePushEntity {\n    sub: string;\n    exchange_id: IExchangeIdConfig;\n    tenant_name: string;\n    tenant_key: string;\n    verification_type: string;\n    request_time: number;\n    requested_types: string[];\n}\n\ninterface IExchangeIdConfig {\n    _id: string;\n    id: string;\n    exchange_id: string;\n    expires_at: Date;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","device","pending","auth","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8170107e-6e7f-46ba-a42f-7d9a41ec85e0"},{"name":"Login history By Device","id":"6bea01d2-2a03-415e-a4a7-ce7aacc595c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"device_id\":\"9F62C781-D871-4A93-8AEE-81875C0FA6CB\",\n\t\"client_id\":\"938c570e-7728-4fa3-b62f-5167f722c788\",\n\t\"push_id\":\"enWVHzsqZGg:APA91bFn0jRx3kkWmrtj1d70YOqSuD7NY_bgoiN8qC4eF0cqjDhGGQxxp_uLr_qr9g5g_xpcgL1bXq-51pWko2MD6Sd59PDfUlH89Y1pMIpIt5ASHe7PvTezMVUYctN9QqZC3dyUDpus\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/device/authenticated/list","description":"<h1 id=\"description\">Description</h1>\n<p>Login history By Authenticated Device</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>device_id</code>, <code>verification_type</code>, <code>client_id</code> and <code>sub</code> in request body.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IDeviceLoginHistoryRequest {\n    device_id: string; // *\n    push_id: string;\n    client_id: string; // *\n    sub: string; // *\n    start_time: string;\n    end_time: string;\n    verification_type: string; // *\n    skip: number;\n    take: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IDeviceLoginHistory[];\n}\n\ninterface IDeviceLoginHistory {\n    status_id: string;\n    sub: string;\n    device_info: IDeviceRequest;\n    address: IAddress;\n    auth_time: Date;\n}\n\ninterface IVersionInfo {\n    name: string;\n    version: string;\n    major: string;\n    minor: string;\n}\n\ninterface IDeviceRequest {\n    userAgent: string;\n    ipAddress: string;\n    lat: string;\n    lon: string;\n    deviceId: string;\n    usedTime: Date;\n    purpose: string;\n    requestId: string;\n    sub: string;\n    os?: IVersionInfo;\n    engine?: IVersionInfo;\n    browser?: IVersionInfo;\n    pushNotificationId: string;\n    deviceMake: string;\n    deviceModel: string;\n    deviceType: string;\n}\n\ninterface IAddress {\n    country_short: string;\n    country_long: string;\n    region: string;\n    city: string;\n    zipcode: string;\n    street: string;\n    houseNo: string;\n    formattedAddress: string;\n    latitude: number;\n    longitude: number;\n    ip: string;\n    ip_no: string;\n    resolver: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","device","authenticated","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6bea01d2-2a03-415e-a4a7-ce7aacc595c0"},{"name":"Update push id","id":"dc1b97dd-6846-41d9-b5c8-c77929b92850","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"device_id\":\"9F62C781-D871-4A93-8AEE-81875C0FA6CB\",\n\t\"client_id\":\"938c570e-7728-4fa3-b62f-5167f722c788\",\n\t\"push_id\":\"enWVHzsqZGg:APA91bFn0jRx3kkWmrtj1d70YOqSuD7NY_bgoiN8qC4eF0cqjDhGGQxxp_uLr_qr9g5g_xpcgL1bXq-51pWko2MD6Sd59PDfUlH89Y1pMIpIt5ASHe7PvTezMVUYctN9QqZC3dyUDpus\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/device/update/pushid","description":"<h1 id=\"description\">Description</h1>\n<p>Update Device push Id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>device_id</code>, <code>push_id</code>, <code>client_id</code> in request body.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IPushIdUpdateEntity {\n    device_id: string; // *\n    old_push_id: string;\n    push_id: string; // *\n    client_id: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUpdatePushId;\n}\n\ninterface IUpdatePushId {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","device","update","pushid"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dc1b97dd-6846-41d9-b5c8-c77929b92850"},{"name":"Remove by Verification and Sub","id":"8182cf6e-ec16-49e3-a95f-649b61d00014","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"4221e022-0341-40ad-9a05-5404aa02c876\",\n\t\"push_id\":\"4221e022-0341-40ad-9a05-5404aa02c876\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/device/configured/remove/:verification_type/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Remove Configured Authentication type By type and sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>verification_type</code> and <code>sub</code> in the request params.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\nsub: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRemoveVerification;\n}\n\ninterface IRemoveVerification {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","device","configured","remove",":verification_type",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"f42bdfc6-5178-403f-a22f-d1c4e33ece93","type":"string","value":"face","key":"verification_type"},{"id":"889c30c0-48bf-4642-8fa9-eb4652ec7333","type":"string","value":"ssdsd","key":"sub"}]}},"response":[],"_postman_id":"8182cf6e-ec16-49e3-a95f-649b61d00014"},{"name":"RemoveAll by Sub","id":"93077026-a659-4982-8361-abe106014bfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"4221e022-0341-40ad-9a05-5404aa02c876\",\n\t\"push_id\":\"4221e022-0341-40ad-9a05-5404aa02c876\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/device/configured/removeall/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Remove All Configured Authentication types By sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>sub</code> in the request params.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRemoveVerification;\n}\n\ninterface IRemoveVerification {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","device","configured","removeall",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"7d65d17a-2bfc-44d3-9059-f2c0e5dc1b80","type":"string","value":"ssdsd","key":"sub"}]}},"response":[],"_postman_id":"93077026-a659-4982-8361-abe106014bfb"},{"name":"RemoveAll by Device id","id":"dfa6947e-d8ae-4a99-a14e-8e748f54c230","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"4221e022-0341-40ad-9a05-5404aa02c876\",\n\t\"push_id\":\"4221e022-0341-40ad-9a05-5404aa02c876\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/device/configured/removeallbydeviceid/:device_id","description":"<h1 id=\"description\">Description</h1>\n<p>Remove All Configured Authentication By Device Id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>device_id</code> in the request params.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>device_id: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRemoveVerification;\n}\n\ninterface IRemoveVerification {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","device","configured","removeallbydeviceid",":device_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"4255ece0-0ef1-4e06-ad0c-520f98e1fba3","type":"string","value":"","key":"device_id"}]}},"response":[],"_postman_id":"dfa6947e-d8ae-4a99-a14e-8e748f54c230"}],"id":"53d9f81c-ec44-4923-8c49-8114259df712","_postman_id":"53d9f81c-ec44-4923-8c49-8114259df712","description":""},{"name":"Users Metadata","item":[{"name":"List Configured Items","id":"271c2a5c-7628-4a41-9dcf-57a6abdccd11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/users/configured/list","description":"<h1 id=\"description\">Description</h1>\n<p>Get List of Authentication types by token</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>acess_token</code> in the request headers.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IConfiguredListRequestEntity {\n    q: string;\n    sub: string; // *\n    email: string;\n    mobile_number: string;\n    username: string;\n    request_id: string;\n    verification_types: string[];\n    single_factor_sub_ref: string;\n    device_fp: string;\n    provider: string;\n\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IConfiguredResponseEntity;\n}\n\ninterface IConfiguredResponseEntity {\n    last_used_type: string;\n    configured_list: IConfiguredListResponseEntity[];\n}\n\ninterface IConfiguredListResponseEntity {\n    type: string;\n    mediums: IConfiguredMediums[];\n}\n\ninterface IConfiguredMediums {\n    id: string;\n    key_name: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","users","configured","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"271c2a5c-7628-4a41-9dcf-57a6abdccd11"},{"name":"Configured Backup Code list","id":"3fc2933e-f69a-43c1-9718-9aa002e627c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/users/configured/backupcode/list","description":"<h1 id=\"description\">Description</h1>\n<p>Get Backup Code List by token</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>acess_token</code> in the request headers.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IConfiguredListRequestEntity {\n    q: string;\n    sub: string; // *\n    email: string;\n    mobile_number: string;\n    username: string;\n    request_id: string;\n    verification_types: string[];\n    single_factor_sub_ref: string;\n    device_fp: string;\n    provider: string;\n\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IBackupCodeVerification[];\n}\n\ninterface IBackupCodeVerification {\n    _id: string;\n    id: string;\n    sub: string;\n    ph_id: string;\n    status_id: string;\n    code: string;\n    used: boolean;\n    used_time: Date;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","users","configured","backupcode","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3fc2933e-f69a-43c1-9718-9aa002e627c2"},{"name":"Remove by Verification with Token","id":"0e0657b0-f388-41e7-825b-0ed0c83f4b7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/users/configured/remove/:verification_type","description":"<h1 id=\"description\">Description</h1>\n<p>Remove Authentication type by access_token</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>access_token</code> in the request header and <code>verification_type</code> in the request param.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Body Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRemoveVerification;\n}\n\ninterface IRemoveVerification {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","users","configured","remove",":verification_type"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"11b2c916-78ac-403a-8825-1c055f73e31f","type":"string","value":"face","key":"verification_type"}]}},"response":[],"_postman_id":"0e0657b0-f388-41e7-825b-0ed0c83f4b7a"},{"name":"Remove all","id":"f5482ecd-c7b7-428f-a358-891d3a25abfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/users/configured/removeall","description":"<h1 id=\"description\">Description</h1>\n<p>Remove All Verification By token</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>access_token</code> in the request header.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Body Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRemoveVerification;\n}\n\ninterface IRemoveVerification {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","users","configured","removeall"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5482ecd-c7b7-428f-a358-891d3a25abfb"},{"name":"Remove all in Device","id":"c1dd8fcf-dfe8-4fb2-a8fa-38c2be873c58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/users/configured/removeallbydeviceid/:device_id","description":"<h1 id=\"description\">Description</h1>\n<p>Remove All Verification By device</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>access_token</code> in the request header and requires <code>device_id</code> in the request param.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>device_id: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Body Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRemoveVerification;\n}\n\ninterface IRemoveVerification {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","users","configured","removeallbydeviceid",":device_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"b76d3ac6-577f-40eb-8eb5-5685ca46fdac","type":"string","value":"","key":"device_id"}]}},"response":[],"_postman_id":"c1dd8fcf-dfe8-4fb2-a8fa-38c2be873c58"}],"id":"cf4e236d-a139-42f5-b453-d31bb53e4326","_postman_id":"cf4e236d-a139-42f5-b453-d31bb53e4326","description":""},{"name":"Admin Metadata","item":[{"name":"Get Usage History","id":"634b1b5c-9d04-435e-8ee1-c1370c29b99c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"verification_type\":\"FACE\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\",\n\t\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/admin/usage/history","description":"<h1 id=\"description\">Description</h1>\n<p>Get Authentication type Usage History</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\",  \"cidaas:registration_setup_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"MFA_READ\",  \"MFA_CREATE\", \"MFA_VIEW_USERS\", \"MFA_ACTIVATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>access_token</code> in the request header.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAuthHistoryByAdminRequest {\n    verification_type: string; // *\n    usage_type: string;\n    sub: string;\n    skip: number;\n    take: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IAuthHistoryByAdminResponse[];\n}\n\ninterface IAuthHistoryByAdminResponse {\n    verification_type: string;\n    status: string;\n    usage_type: string;\n    createdTime: Date;\n    status_id: string;\n    sub: string;\n    device_id: string;\n    user_device_id: string;\n    device_make: string;\n    device_model: string;\n    device_type: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","admin","usage","history"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"7c6e392e-3add-46d2-9a76-9553c162f2f7","name":"Get Usage History","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"verification_type\":\"FACE\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\",\n\t\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/admin/usage/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2019 20:24:41 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3842"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1558988678339-0b791a68-c62c-4b13-b9cc-9f8aa64322e9"},{"key":"ETag","value":"W/\"f02-dEvEX+R9NfvpYUybJ6VmO72pTdI\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"cea33074-278f-4c0f-ae8c-259c4566f504\",\n            \"status_id\": \"df50d504-a5e0-4a68-9ead-9485330f6e2f\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ACKNOWLEDGED\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T13:00:50.065Z\",\n            \"device_id\": \"fabcaa97871555b68aa095335975e613\",\n            \"user_device_id\": \"14a079c9-b176-468f-9f09-85e384689914\",\n            \"device_make\": \"\",\n            \"device_model\": \"\"\n        },\n        {\n            \"_id\": \"5945db2e-11f1-4b34-b9f3-5aa10b5066df\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"PUSH_ACKNOWLEDGED\",\n            \"status_id\": \"22d43307-bca5-4255-84aa-a16060030f8b\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T12:59:51.316Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"e81b847b-efe7-4fdf-b2fb-83f70405566f\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ALLOWED_BY_USER\",\n            \"status_id\": \"97ff5c9a-319d-4145-823a-c8d7e9b76e60\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T12:12:46.041Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"99604714-f2b5-4e79-9742-155ca084e5a1\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ALLOWED_BY_USER\",\n            \"status_id\": \"c99435be-6603-4493-8b91-bc4210d9f92f\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T11:11:05.888Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"d7befa98-c5cb-404a-a82d-5db294a3661b\",\n            \"status_id\": \"2bcdcf5f-4df2-498a-a0d1-8bededde7d58\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"INITIATED\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T11:09:31.905Z\",\n            \"device_id\": \"675c74d5f114ba25a49fb0f4cb02f70f\",\n            \"user_device_id\": \"675c74d5f114ba25a49fb0f4cb02f70f\",\n            \"device_make\": \"\",\n            \"device_model\": \"\"\n        },\n        {\n            \"_id\": \"b244f8d4-6c4f-423a-8514-510d918b11cc\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ALLOWED_BY_USER\",\n            \"status_id\": \"64ab25a9-f03c-4f24-ab6a-aff5cb6cb585\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T11:08:12.448Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"413fc6ee-a955-4589-a37e-70e1a8febe5b\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ALLOWED_BY_USER\",\n            \"status_id\": \"d84e98ad-e774-4c17-bd60-4d187f0e8168\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T09:12:29.831Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"27a72490-b4d3-48e1-a387-48498d6a72ee\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ALLOWED_BY_USER\",\n            \"status_id\": \"585d828b-cbd0-40c9-937d-0bea0cbb9005\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T08:02:56.459Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"cf45626e-d503-43d4-aab8-77703ab68a6f\",\n            \"status_id\": \"3c3e613d-7c3a-40d2-8339-e55251724b98\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"INITIATED\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T08:02:23.224Z\",\n            \"device_id\": \"675c74d5f114ba25a49fb0f4cb02f70f\",\n            \"user_device_id\": \"675c74d5f114ba25a49fb0f4cb02f70f\",\n            \"device_make\": \"\",\n            \"device_model\": \"\"\n        }\n    ]\n}"}],"_postman_id":"634b1b5c-9d04-435e-8ee1-c1370c29b99c"},{"name":"Configured List","id":"d0ce74de-d810-49c9-9949-a283165ba487","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/admin/configured/list/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Get Configured List By User SUB</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\",  \"cidaas:registration_setup_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"MFA_READ\",  \"MFA_CREATE\", \"MFA_VIEW_USERS\", \"MFA_ACTIVATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>access_token</code> in the request header and it requires <code>sub</code> in the request param.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IConfiguredListRequestEntity {\n    q: string;\n    sub: string; // *\n    email: string;\n    mobile_number: string;\n    username: string;\n    request_id: string;\n    verification_types: string[];\n    single_factor_sub_ref: string;\n    device_fp: string;\n    provider: string;\n\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IConfiguredResponseEntity;\n}\n\ninterface IConfiguredResponseEntity {\n    last_used_type: string;\n    configured_list: IConfiguredListResponseEntity[];\n}\n\ninterface IConfiguredListResponseEntity {\n    type: string;\n    mediums: IConfiguredMediums[];\n}\n\ninterface IConfiguredMediums {\n    id: string;\n    key_name: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","admin","configured","list",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"fe09bccd-f467-4355-9897-6b1118f2e778","type":"string","value":"78a07e04-a49d-4bdb-a8be-4f931f2684f5","key":"sub"}]}},"response":[{"id":"353f851b-2988-49ed-b457-ea0737e8563b","name":"Get Usage History","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"verification_type\":\"FACE\",\n\t\"usage_type\":\"PASSWORDLESS_AUTHENTICATION\",\n\t\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\"\n}"},"url":"{{baseurl}}/verification-srv/v2/setup/admin/usage/history"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2019 20:24:41 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3842"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1558988678339-0b791a68-c62c-4b13-b9cc-9f8aa64322e9"},{"key":"ETag","value":"W/\"f02-dEvEX+R9NfvpYUybJ6VmO72pTdI\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"cea33074-278f-4c0f-ae8c-259c4566f504\",\n            \"status_id\": \"df50d504-a5e0-4a68-9ead-9485330f6e2f\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ACKNOWLEDGED\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T13:00:50.065Z\",\n            \"device_id\": \"fabcaa97871555b68aa095335975e613\",\n            \"user_device_id\": \"14a079c9-b176-468f-9f09-85e384689914\",\n            \"device_make\": \"\",\n            \"device_model\": \"\"\n        },\n        {\n            \"_id\": \"5945db2e-11f1-4b34-b9f3-5aa10b5066df\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"PUSH_ACKNOWLEDGED\",\n            \"status_id\": \"22d43307-bca5-4255-84aa-a16060030f8b\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T12:59:51.316Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"e81b847b-efe7-4fdf-b2fb-83f70405566f\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ALLOWED_BY_USER\",\n            \"status_id\": \"97ff5c9a-319d-4145-823a-c8d7e9b76e60\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T12:12:46.041Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"99604714-f2b5-4e79-9742-155ca084e5a1\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ALLOWED_BY_USER\",\n            \"status_id\": \"c99435be-6603-4493-8b91-bc4210d9f92f\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T11:11:05.888Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"d7befa98-c5cb-404a-a82d-5db294a3661b\",\n            \"status_id\": \"2bcdcf5f-4df2-498a-a0d1-8bededde7d58\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"INITIATED\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T11:09:31.905Z\",\n            \"device_id\": \"675c74d5f114ba25a49fb0f4cb02f70f\",\n            \"user_device_id\": \"675c74d5f114ba25a49fb0f4cb02f70f\",\n            \"device_make\": \"\",\n            \"device_model\": \"\"\n        },\n        {\n            \"_id\": \"b244f8d4-6c4f-423a-8514-510d918b11cc\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ALLOWED_BY_USER\",\n            \"status_id\": \"64ab25a9-f03c-4f24-ab6a-aff5cb6cb585\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T11:08:12.448Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"413fc6ee-a955-4589-a37e-70e1a8febe5b\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ALLOWED_BY_USER\",\n            \"status_id\": \"d84e98ad-e774-4c17-bd60-4d187f0e8168\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T09:12:29.831Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"27a72490-b4d3-48e1-a387-48498d6a72ee\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"ALLOWED_BY_USER\",\n            \"status_id\": \"585d828b-cbd0-40c9-937d-0bea0cbb9005\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T08:02:56.459Z\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\"\n        },\n        {\n            \"_id\": \"cf45626e-d503-43d4-aab8-77703ab68a6f\",\n            \"status_id\": \"3c3e613d-7c3a-40d2-8339-e55251724b98\",\n            \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"verification_type\": \"FACE\",\n            \"status\": \"INITIATED\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T08:02:23.224Z\",\n            \"device_id\": \"675c74d5f114ba25a49fb0f4cb02f70f\",\n            \"user_device_id\": \"675c74d5f114ba25a49fb0f4cb02f70f\",\n            \"device_make\": \"\",\n            \"device_model\": \"\"\n        }\n    ]\n}"}],"_postman_id":"d0ce74de-d810-49c9-9949-a283165ba487"},{"name":"Get Usage History By status_id and verification_type","id":"763dfd6f-ff6b-4ae0-af59-682942aca9a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/admin/usage/history/details/:verification_type/:status_id","description":"<h1 id=\"description\">Description</h1>\n<p>Get Usage History By Status_id and Verification type</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\",  \"cidaas:registration_setup_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"MFA_READ\",  \"MFA_CREATE\", \"MFA_VIEW_USERS\", \"MFA_ACTIVATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>access_token</code> in the request header and requires <code>verification_type</code>, <code>status_id</code> in the request param.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\nstatus_id: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IConfiguredListResponse[];\n}\n\ninterface IConfiguredListResponse {\n    device_id: string;\n    device_make: string;\n    device_model: string;\n    device_type: string;\n    active: boolean;\n    user_device_id: string;\n    friendly_name: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","admin","usage","history","details",":verification_type",":status_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"ddfb8d5c-510c-4341-8da5-0309be5aae5e","type":"string","value":"touchid","key":"verification_type"},{"id":"54992009-fae0-4901-b616-def3b2dfc9aa","type":"string","value":"78a07e04-a49d-4bdb-a8be-4f931f2684f5","key":"status_id"}]}},"response":[{"id":"d08eeafb-e408-41d2-a819-3ffd8b18851b","name":"Get Usage History By status_id and verification_type","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{baseurl}}/verification-srv/v2/setup/admin/usage/history/details/:verification_type/:status_id","host":["{{baseurl}}"],"path":["verification-srv","v2","setup","admin","usage","history","details",":verification_type",":status_id"],"variable":[{"key":"verification_type","value":"touchid"},{"key":"status_id","value":"78a07e04-a49d-4bdb-a8be-4f931f2684f5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2019 20:11:17 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"8068"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1558987877246-461343d2-b8f7-4555-b3bc-dd2a43abc438"},{"key":"ETag","value":"W/\"1f84-tDzE3V+EZrPltyZ17HXesl5ABwo\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"9f850412-01f1-459a-8fce-0d8a636d3d25\",\n            \"status_id\": \"78a07e04-a49d-4bdb-a8be-4f931f2684f5\",\n            \"ph_id\": \"7f8a257e-5e71-4559-8cf1-2114176a21e7\",\n            \"verification_type\": \"TOUCHID\",\n            \"status\": \"ACKNOWLEDGED\",\n            \"client_id\": \"938c570e-7728-4fa3-b62f-5167f722c788\",\n            \"device_info\": {\n                \"user_device_id\": \"14a079c9-b176-468f-9f09-85e384689914\",\n                \"device_info\": {\n                    \"ipAddress\": \"172.31.1.10\",\n                    \"userAgent\": \"bot\",\n                    \"deviceModel\": \"\",\n                    \"deviceMake\": \"\",\n                    \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n                    \"deviceId\": \"fabcaa97871555b68aa095335975e613\"\n                }\n            },\n            \"location_details\": {\n                \"_id\": \"d7620ec7-176d-4aab-a408-b4c46d60d92d\",\n                \"ipaddress_info\": {\n                    \"ipAddress\": \"172.31.1.10\",\n                    \"location\": {\n                        \"address\": {\n                            \"ip\": \"172.31.1.10\",\n                            \"ip_no\": \"2887713034\",\n                            \"country_short\": \"-\",\n                            \"country_long\": \"-\",\n                            \"region\": \"-\",\n                            \"city\": \"-\",\n                            \"latitude\": 0,\n                            \"longitude\": 0,\n                            \"zipcode\": \"-\",\n                            \"status\": \"OK\",\n                            \"elevation\": 0,\n                            \"formattedAddress\": \"-, -, -, -\",\n                            \"resolver\": \"IP\"\n                        }\n                    }\n                },\n                \"createdTime\": \"2019-05-27T07:25:13.577Z\",\n                \"updatedTime\": \"2019-05-27T07:25:13.577Z\",\n                \"__ref\": \"1558941913539-7b1762ca-909f-4952-8fb3-2ee703be4667\",\n                \"id\": \"d7620ec7-176d-4aab-a408-b4c46d60d92d\"\n            },\n            \"request_id\": \"6625c517-514d-4b14-9b81-619d865f0d87\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T07:25:13.577Z\",\n            \"id\": \"9f850412-01f1-459a-8fce-0d8a636d3d25\"\n        },\n        {\n            \"_id\": \"94d4bcd6-67bb-4c0d-bd6d-99610c2ea5db\",\n            \"status_id\": \"78a07e04-a49d-4bdb-a8be-4f931f2684f5\",\n            \"ph_id\": \"7f8a257e-5e71-4559-8cf1-2114176a21e7\",\n            \"verification_type\": \"TOUCHID\",\n            \"status\": \"AUTHENTICATED\",\n            \"client_id\": \"938c570e-7728-4fa3-b62f-5167f722c788\",\n            \"device_info\": {\n                \"user_device_id\": \"8f4b2fd643f74ac6245242f43eeb81bb\",\n                \"device_info\": {\n                    \"ipAddress\": \"182.72.240.54\",\n                    \"userAgent\": \"cidaas/2.0.34(0.0.0.7) Dalvik/2.1.0 (Linux; U; Android 9; Redmi Note 6 Pro MIUI/V10.3.2.0.PEKMIXM)\",\n                    \"lat\": \"12.9196848\",\n                    \"lon\": \"77.6683542\",\n                    \"deviceModel\": \"\",\n                    \"deviceMake\": \"\",\n                    \"os\": {\n                        \"version\": \"9\",\n                        \"name\": \"Android\"\n                    },\n                    \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n                    \"deviceId\": \"8f4b2fd643f74ac6245242f43eeb81bb\"\n                }\n            },\n            \"location_details\": {\n                \"_id\": \"4985a442-cb85-4941-a710-a636c5e8edc8\",\n                \"location_info\": {\n                    \"lat\": \"12.9196848\",\n                    \"lon\": \"77.6683542\",\n                    \"address\": {\n                        \"latitude\": 12.9196848,\n                        \"longitude\": 77.6683542,\n                        \"resolver\": \"GEO_LOCATION\"\n                    }\n                },\n                \"ipaddress_info\": {\n                    \"ipAddress\": \"182.72.240.54\",\n                    \"location\": {\n                        \"address\": {\n                            \"ip\": \"182.72.240.54\",\n                            \"ip_no\": \"3058233398\",\n                            \"country_short\": \"IN\",\n                            \"country_long\": \"India\",\n                            \"region\": \"Karnataka\",\n                            \"city\": \"Bangalore\",\n                            \"latitude\": 12.97623,\n                            \"longitude\": 77.603287,\n                            \"zipcode\": \"560018\",\n                            \"status\": \"OK\",\n                            \"elevation\": 0,\n                            \"formattedAddress\": \"Bangalore, Karnataka, India, 560018\",\n                            \"resolver\": \"IP\"\n                        },\n                        \"lat\": \"12.9196848\",\n                        \"lon\": \"77.6683542\"\n                    }\n                },\n                \"distance_metter\": 0,\n                \"createdTime\": \"2019-05-27T07:25:13.358Z\",\n                \"updatedTime\": \"2019-05-27T07:25:13.582Z\",\n                \"__ref\": \"1558941913539-7b1762ca-909f-4952-8fb3-2ee703be4667\",\n                \"id\": \"4985a442-cb85-4941-a710-a636c5e8edc8\"\n            },\n            \"request_id\": \"6625c517-514d-4b14-9b81-619d865f0d87\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T07:25:13.359Z\",\n            \"id\": \"94d4bcd6-67bb-4c0d-bd6d-99610c2ea5db\"\n        },\n        {\n            \"_id\": \"31b8b1e3-f8ba-49bc-a46a-597bed5128ae\",\n            \"verification_type\": \"TOUCHID\",\n            \"status\": \"ALLOWED_BY_USER\",\n            \"client_id\": \"938c570e-7728-4fa3-b62f-5167f722c788\",\n            \"device_info\": {\n                \"user_device_id\": \"69fde9c60dd9c7d5\",\n                \"device_info\": {\n                    \"ipAddress\": \"182.72.240.54\",\n                    \"userAgent\": \"cidaas/2.0.34(0.0.0.7) Dalvik/2.1.0 (Linux; U; Android 9; Redmi Note 6 Pro MIUI/V10.3.2.0.PEKMIXM)\",\n                    \"lat\": \"12.9196848\",\n                    \"lon\": \"77.6683542\",\n                    \"deviceModel\": \"\",\n                    \"deviceMake\": \"\",\n                    \"os\": {\n                        \"version\": \"9\",\n                        \"name\": \"Android\"\n                    },\n                    \"pushNotificationId\": \"fGxotpThLuk:APA91bE6trkdTX-LZFua5IoYU-wGDdNJ_8-ZFgYADnCsQtOX-yoY9TS5aMGXLMqGc3cyBSPIH_sKBmJtZ0-OJK7Afs6rIK7uNl-f7EXAZOK2aXiKtV0yMgijikprxM1RYxCfTqC4ZuB5\",\n                    \"deviceId\": \"69fde9c60dd9c7d5\"\n                }\n            },\n            \"location_details\": {\n                \"_id\": \"961147a6-5452-43f0-a9b9-74febbe6be3f\",\n                \"location_info\": {\n                    \"lat\": \"12.9196848\",\n                    \"lon\": \"77.6683542\",\n                    \"address\": {\n                        \"latitude\": 12.9196848,\n                        \"longitude\": 77.6683542,\n                        \"resolver\": \"GEO_LOCATION\"\n                    }\n                },\n                \"ipaddress_info\": {\n                    \"ipAddress\": \"182.72.240.54\",\n                    \"location\": {\n                        \"address\": {\n                            \"ip\": \"182.72.240.54\",\n                            \"ip_no\": \"3058233398\",\n                            \"country_short\": \"IN\",\n                            \"country_long\": \"India\",\n                            \"region\": \"Karnataka\",\n                            \"city\": \"Bangalore\",\n                            \"latitude\": 12.97623,\n                            \"longitude\": 77.603287,\n                            \"zipcode\": \"560018\",\n                            \"status\": \"OK\",\n                            \"elevation\": 0,\n                            \"formattedAddress\": \"Bangalore, Karnataka, India, 560018\",\n                            \"resolver\": \"IP\"\n                        },\n                        \"lat\": \"12.9196848\",\n                        \"lon\": \"77.6683542\"\n                    }\n                },\n                \"distance_metter\": 0,\n                \"createdTime\": \"2019-05-27T07:25:10.525Z\",\n                \"updatedTime\": \"2019-05-27T07:25:13.362Z\",\n                \"__ref\": \"1558941913214-36ab2f27-c8e0-4788-bbf9-b70a61aa0444\",\n                \"id\": \"961147a6-5452-43f0-a9b9-74febbe6be3f\"\n            },\n            \"status_id\": \"78a07e04-a49d-4bdb-a8be-4f931f2684f5\",\n            \"ph_id\": \"7f8a257e-5e71-4559-8cf1-2114176a21e7\",\n            \"request_id\": \"6625c517-514d-4b14-9b81-619d865f0d87\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T07:25:10.525Z\",\n            \"id\": \"31b8b1e3-f8ba-49bc-a46a-597bed5128ae\"\n        },\n        {\n            \"_id\": \"5224f783-9505-4039-93d6-9fabbb6fdfca\",\n            \"verification_type\": \"TOUCHID\",\n            \"status\": \"PUSH_ACKNOWLEDGED\",\n            \"client_id\": \"938c570e-7728-4fa3-b62f-5167f722c788\",\n            \"device_info\": {\n                \"user_device_id\": \"69fde9c60dd9c7d5\",\n                \"device_info\": {\n                    \"ipAddress\": \"182.72.240.54\",\n                    \"userAgent\": \"cidaas/2.0.34(0.0.0.7) Dalvik/2.1.0 (Linux; U; Android 9; Redmi Note 6 Pro MIUI/V10.3.2.0.PEKMIXM)\",\n                    \"lat\": \"12.9197226\",\n                    \"lon\": \"77.668376\",\n                    \"deviceModel\": \"\",\n                    \"deviceMake\": \"\",\n                    \"os\": {\n                        \"version\": \"9\",\n                        \"name\": \"Android\"\n                    },\n                    \"pushNotificationId\": \"fGxotpThLuk:APA91bE6trkdTX-LZFua5IoYU-wGDdNJ_8-ZFgYADnCsQtOX-yoY9TS5aMGXLMqGc3cyBSPIH_sKBmJtZ0-OJK7Afs6rIK7uNl-f7EXAZOK2aXiKtV0yMgijikprxM1RYxCfTqC4ZuB5\",\n                    \"deviceId\": \"69fde9c60dd9c7d5\"\n                }\n            },\n            \"location_details\": {\n                \"_id\": \"d34f8bc9-bcde-4e91-b056-2abdb7db8e28\",\n                \"location_info\": {\n                    \"lat\": \"12.9197226\",\n                    \"lon\": \"77.668376\",\n                    \"address\": {\n                        \"latitude\": 12.9197226,\n                        \"longitude\": 77.668376,\n                        \"resolver\": \"GEO_LOCATION\"\n                    }\n                },\n                \"ipaddress_info\": {\n                    \"ipAddress\": \"182.72.240.54\",\n                    \"location\": {\n                        \"address\": {\n                            \"ip\": \"182.72.240.54\",\n                            \"ip_no\": \"3058233398\",\n                            \"country_short\": \"IN\",\n                            \"country_long\": \"India\",\n                            \"region\": \"Karnataka\",\n                            \"city\": \"Bangalore\",\n                            \"latitude\": 12.97623,\n                            \"longitude\": 77.603287,\n                            \"zipcode\": \"560018\",\n                            \"status\": \"OK\",\n                            \"elevation\": 0,\n                            \"formattedAddress\": \"Bangalore, Karnataka, India, 560018\",\n                            \"resolver\": \"IP\"\n                        },\n                        \"lat\": \"12.9197226\",\n                        \"lon\": \"77.668376\"\n                    }\n                },\n                \"distance_metter\": 0,\n                \"createdTime\": \"2019-05-27T07:24:56.483Z\",\n                \"updatedTime\": \"2019-05-27T07:25:10.528Z\",\n                \"__ref\": \"1558941910208-eb17d6ed-1327-4ae9-8bb2-f00cdc072e21\",\n                \"id\": \"d34f8bc9-bcde-4e91-b056-2abdb7db8e28\"\n            },\n            \"status_id\": \"78a07e04-a49d-4bdb-a8be-4f931f2684f5\",\n            \"ph_id\": \"7f8a257e-5e71-4559-8cf1-2114176a21e7\",\n            \"request_id\": \"6625c517-514d-4b14-9b81-619d865f0d87\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T07:24:56.483Z\",\n            \"id\": \"5224f783-9505-4039-93d6-9fabbb6fdfca\"\n        },\n        {\n            \"_id\": \"ed22055d-6fbe-4fe8-a949-1a6acf04a0b2\",\n            \"status_id\": \"78a07e04-a49d-4bdb-a8be-4f931f2684f5\",\n            \"ph_id\": \"7f8a257e-5e71-4559-8cf1-2114176a21e7\",\n            \"verification_type\": \"TOUCHID\",\n            \"status\": \"INITIATED\",\n            \"client_id\": \"4d5e6e20-9347-4255-9790-5b7196843103\",\n            \"device_info\": {\n                \"user_device_id\": \"675c74d5f114ba25a49fb0f4cb02f70f\",\n                \"device_info\": {\n                    \"ipAddress\": \"182.72.240.54\",\n                    \"userAgent\": \"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36\",\n                    \"deviceModel\": \"\",\n                    \"deviceMake\": \"\",\n                    \"engine\": {\n                        \"version\": \"537.36\",\n                        \"name\": \"WebKit\"\n                    },\n                    \"os\": {\n                        \"version\": \"10.14.5\",\n                        \"name\": \"Mac OS\"\n                    },\n                    \"browser\": {\n                        \"version\": \"74.0.3729.169\",\n                        \"name\": \"Chrome\",\n                        \"major\": \"74\"\n                    },\n                    \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n                    \"deviceId\": \"675c74d5f114ba25a49fb0f4cb02f70f\"\n                }\n            },\n            \"location_details\": {\n                \"_id\": \"629a906b-070f-43cf-8e0a-0cc98a7068ad\",\n                \"ipaddress_info\": {\n                    \"ipAddress\": \"182.72.240.54\",\n                    \"location\": {\n                        \"address\": {\n                            \"ip\": \"182.72.240.54\",\n                            \"ip_no\": \"3058233398\",\n                            \"country_short\": \"IN\",\n                            \"country_long\": \"India\",\n                            \"region\": \"Karnataka\",\n                            \"city\": \"Bangalore\",\n                            \"latitude\": 12.97623,\n                            \"longitude\": 77.603287,\n                            \"zipcode\": \"560018\",\n                            \"status\": \"OK\",\n                            \"elevation\": 0,\n                            \"formattedAddress\": \"Bangalore, Karnataka, India, 560018\",\n                            \"resolver\": \"IP\"\n                        },\n                        \"lat\": \"12.97623\",\n                        \"lon\": \"77.603287\"\n                    }\n                },\n                \"createdTime\": \"2019-05-27T07:24:52.414Z\",\n                \"updatedTime\": \"2019-05-27T07:24:56.487Z\",\n                \"__ref\": \"1558941896135-938e8d3e-f9c6-43d1-9d8f-c1dae123fbd9\",\n                \"id\": \"629a906b-070f-43cf-8e0a-0cc98a7068ad\"\n            },\n            \"request_id\": \"6625c517-514d-4b14-9b81-619d865f0d87\",\n            \"usage_type\": \"PASSWORDLESS_AUTHENTICATION\",\n            \"createdTime\": \"2019-05-27T07:24:52.414Z\",\n            \"id\": \"ed22055d-6fbe-4fe8-a949-1a6acf04a0b2\"\n        }\n    ]\n}"}],"_postman_id":"763dfd6f-ff6b-4ae0-af59-682942aca9a6"},{"name":"Get Configured Device By Sub and Type","id":"d9403680-70eb-44be-9ff8-5f1d3b3ae9e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/admin/configured/devices/:verification_type/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Get Configured Device By Sub and type</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\",  \"cidaas:registration_setup_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"MFA_READ\",  \"MFA_CREATE\", \"MFA_VIEW_USERS\", \"MFA_ACTIVATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>access_token</code> in the request header and requires <code>verification_type</code>, <code>sub</code> in the request params.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\nsub: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request entity Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IConfiguredListResponse[];\n}\n\ninterface IConfiguredListResponse {\n    device_id: string;\n    device_make: string;\n    device_model: string;\n    device_type: string;\n    active: boolean;\n    user_device_id: string;\n    friendly_name: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","admin","configured","devices",":verification_type",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"705293ce-22c0-4121-b138-70caf719f416","type":"string","value":"touchid","key":"verification_type"},{"id":"099aef01-410a-40c7-83ef-730d8d01b34d","type":"string","value":"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9","key":"sub"}]}},"response":[{"id":"34b83ba8-f792-47c5-bf78-b69e47c5c102","name":"List Configured Items Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{baseurl}}/verification-srv/v2/setup/admin/configured/devices/:verification_type/:sub","host":["{{baseurl}}"],"path":["verification-srv","v2","setup","admin","configured","devices",":verification_type",":sub"],"variable":[{"key":"verification_type","value":"touchid"},{"key":"sub","value":"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2019 20:07:52 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"246"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1558987672071-b4aab6eb-1ff7-4112-b645-c2f9d53978e2"},{"key":"ETag","value":"W/\"f6-GLO0wjgFfW/e1QwoKNU6ns3BAXY\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=15, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"6f9ff462-35e8-41c1-bf8e-d84a0e15720d\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\",\n            \"active\": true\n        }\n    ]\n}"}],"_postman_id":"d9403680-70eb-44be-9ff8-5f1d3b3ae9e3"},{"name":"Remove by Verification with Token","id":"8bde8b76-d500-413b-9a82-de50680937e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/admin/configured/remove/:verification_type","description":"<h1 id=\"description\">Description</h1>\n<p>Remove Verification By Admin</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\",  \"cidaas:registration_setup_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"MFA_READ\",  \"MFA_CREATE\", \"MFA_VIEW_USERS\", \"MFA_ACTIVATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>access_token</code> in the request header and requires <code>verification_type</code> and <code>sub</code> in the request param.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>device_id: string;\nsub: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Body Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRemoveVerification;\n}\n\ninterface IRemoveVerification {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","admin","configured","remove",":verification_type"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"1db71215-07cd-4fbf-86e2-0b6beb6403f2","type":"string","value":"face","key":"verification_type"}]}},"response":[],"_postman_id":"8bde8b76-d500-413b-9a82-de50680937e7"},{"name":"Remove All By Sub","id":"0e608b71-7cbe-4c1c-ab55-8e207cc3be4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/admin/configured/removeall/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Remove All Verification By Admin using Sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\",  \"cidaas:registration_setup_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"MFA_READ\",  \"MFA_CREATE\", \"MFA_VIEW_USERS\", \"MFA_ACTIVATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>access_token</code> in the request header and requires  <code>sub</code> in the request param.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Body Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRemoveVerification;\n}\n\ninterface IRemoveVerification {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","admin","configured","removeall",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"32c43612-e8f9-45e7-83e3-3b3ded0886ba","type":"string","value":"","key":"sub"}]}},"response":[],"_postman_id":"0e608b71-7cbe-4c1c-ab55-8e207cc3be4c"},{"name":"Remove All in Deviec By Sub","id":"5092a79e-4e07-4613-b923-9832f6548c36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/admin/configured/removeallbydeviceid/:device_id/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Remove All Verification By Admin using DeviceId and Sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\",  \"cidaas:registration_setup_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"MFA_READ\",  \"MFA_CREATE\", \"MFA_VIEW_USERS\", \"MFA_ACTIVATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>access_token</code> in the request header and requires  <code>device_id</code>, <code>sub</code> in the request param.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>device_id: string;\nsub: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Body Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRemoveVerification;\n}\n\ninterface IRemoveVerification {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","admin","configured","removeallbydeviceid",":device_id",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"09702451-8e82-41ce-b67f-9ee91bc302f5","type":"string","value":"","key":"device_id"},{"id":"b9a06241-18ee-4a70-97c2-f93b93d89679","type":"string","value":"","key":"sub"}]}},"response":[],"_postman_id":"5092a79e-4e07-4613-b923-9832f6548c36"},{"name":"Remove One Type in Deviec By Sub","id":"3a8fba75-2cd8-4d82-a975-a0decf5732d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/setup/admin/configured/removebydeviceid/:verification_type/:device_id/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Remove All Verification By Admin using Verification_type, DeviceId and Sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\",  \"cidaas:registration_setup_read\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"USER_READ\", \"USER_CREATE\", \"MFA_READ\",  \"MFA_CREATE\", \"MFA_VIEW_USERS\", \"MFA_ACTIVATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It requires <code>access_token</code> in the request header and requires <code>verification_type</code> <code>device_id</code>, <code>sub</code> in the request param.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>verification_type: string;\ndevice_id: string;\nsub: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Body Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRemoveVerification;\n}\n\ninterface IRemoveVerification {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","setup","admin","configured","removebydeviceid",":verification_type",":device_id",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"e3148e0f-b1b2-4c7a-bef9-3d14d14a57c4","type":"string","value":"","key":"verification_type"},{"id":"bede66eb-cb9e-4a16-9f61-23547cf0db03","type":"string","value":"","key":"device_id"},{"id":"4b3232fe-4416-4f82-b2a9-d1c5b8c90596","type":"string","value":"","key":"sub"}]}},"response":[],"_postman_id":"3a8fba75-2cd8-4d82-a975-a0decf5732d0"}],"id":"dbeec689-84a2-4b58-a190-ca60f02e0807","_postman_id":"dbeec689-84a2-4b58-a190-ca60f02e0807","description":""},{"name":"Notification","item":[{"name":"Check socket Status","id":"d51b325e-505e-4b44-af3c-c73779fd4a6e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/v2/notification/status/:status_id","description":"<h1 id=\"description\">Description</h1>\n<p>Check Socket Status</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>status_id</code> in the request param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity Requried\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IPushTracking;\n}\n\ninterface IPushTracking {\n    _id: string;\n    id: string;\n    type: string;\n    status: string;\n    current_level: number;\n    sub: string;\n    status_id: string;\n    device_id: string;\n    ph_id: string;\n    friendly_name: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","notification","status",":status_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"eb64f35f-477b-47d3-9269-fa401d662af8","type":"string","value":"","key":"status_id"}]}},"response":[{"id":"2abd0238-e974-49f8-9fcd-13b92506dca0","name":"List Configured Items Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{baseurl}}/verification-srv/v2/setup/admin/configured/devices/:verification_type/:sub","host":["{{baseurl}}"],"path":["verification-srv","v2","setup","admin","configured","devices",":verification_type",":sub"],"variable":[{"key":"verification_type","value":"touchid"},{"key":"sub","value":"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2019 20:07:52 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"246"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1558987672071-b4aab6eb-1ff7-4112-b645-c2f9d53978e2"},{"key":"ETag","value":"W/\"f6-GLO0wjgFfW/e1QwoKNU6ns3BAXY\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=15, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"6f9ff462-35e8-41c1-bf8e-d84a0e15720d\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\",\n            \"active\": true\n        }\n    ]\n}"}],"_postman_id":"d51b325e-505e-4b44-af3c-c73779fd4a6e"}],"id":"3e34d1d9-24e3-4ccf-8101-371a548fc10c","_postman_id":"3e34d1d9-24e3-4ccf-8101-371a548fc10c","description":""},{"name":"Passwordless","item":[{"name":"Create Passwordless Flow","id":"5eb1910c-68c8-4db6-bb28-2b6d69fa579b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n\t\"auth_request\":{\n\t\t\"client_id\":\"4d5e6e20-9347-4255-9790-5b7196843103\",\n\t\t\"redirect_uri\":\"https://nightlybuild.cidaas.de/user-profile/editprofile\",\n\t\t\"response_type\":\"token\",\n\t\t\"nonce\":\"123\",\n\t\t\"scope\":\"openid email profile mobile\"\n\t},\n\t\"preferred_communication_type\":\"EMAIL\",\n\t\"state\":\"696d2a2d-1084-4f47-932c-20ccf3cb7549\"\n}"},"url":"{{baseurl}}/verification-srv/v2/passwordless/create","description":"<h1 id=\"description\">Description</h1>\n<p>It allows admin to Create a Custom Password Flow.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:passwordless_create\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"MFA_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>AppQuery</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IPasswordLessLoginFlow {\n    sub: string; // * | User id or Subject\n    auth_request: AuthRequestEntity; // * | Oauth2 Authz request\n    preferred_communication_type: string; // To specify which way the OTP needs  to send to the  user. by default it will try to use EMAIL. if user not configured the Specified type here, you will get error.\n    max_hit_per_minute: number; // This is to limit number times user can hit the generated link, by default no limitation. it is like the rate limit.\n    usable_count: number; // This is to limit number times user can use this generated link, by default no limitation. \n    expires_at: Date; // This is to set the expire time for the link, by default no limitation. \n    state: string; // * | any unique value per request. treat this like a session id\n}\n\ninterface AuthRequestEntity {\n    client_id: string; // *\n    response_mode: string;\n    response_type: string;\n    scope: string;\n    state: string;\n    redirect_uri: string;\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: ClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n    protocol: string;\n    viewtype: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IPasswordLessLoginFlowResponse;\n}\n\ninterface IPasswordLessLoginFlowResponse {\n    state: string;\n    trace_id: string;\n    resolver_url_by_trace: string;\n    resolver_url_by_state: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","passwordless","create"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"9c624c93-76d0-4ae6-b508-a8172a70fe3e","name":"List Configured Items Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{baseurl}}/verification-srv/v2/setup/admin/configured/devices/:verification_type/:sub","host":["{{baseurl}}"],"path":["verification-srv","v2","setup","admin","configured","devices",":verification_type",":sub"],"variable":[{"key":"verification_type","value":"touchid"},{"key":"sub","value":"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2019 20:07:52 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"246"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1558987672071-b4aab6eb-1ff7-4112-b645-c2f9d53978e2"},{"key":"ETag","value":"W/\"f6-GLO0wjgFfW/e1QwoKNU6ns3BAXY\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=15, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"6f9ff462-35e8-41c1-bf8e-d84a0e15720d\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\",\n            \"active\": true\n        }\n    ]\n}"}],"_postman_id":"5eb1910c-68c8-4db6-bb28-2b6d69fa579b"},{"name":"Resolve Password less token by trace","id":"4d867b2f-2156-4617-a1e8-090be0256a7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseurl}}/verification-srv/v2/passwordless/resolve/trace/95845ec6-1d82-4093-8ec9-a32d5746e40e","description":"<h1 id=\"description\">Description</h1>\n<p>With this call the end user resolves the password less auth page</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>trace_id</code> as param parameter.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Special headers required\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Data required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>It retuns the page\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","passwordless","resolve","trace","95845ec6-1d82-4093-8ec9-a32d5746e40e"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"8ddabc70-e6d7-4a5f-afa4-459dd6f32ab8","name":"List Configured Items Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{baseurl}}/verification-srv/v2/setup/admin/configured/devices/:verification_type/:sub","host":["{{baseurl}}"],"path":["verification-srv","v2","setup","admin","configured","devices",":verification_type",":sub"],"variable":[{"key":"verification_type","value":"touchid"},{"key":"sub","value":"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2019 20:07:52 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"246"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1558987672071-b4aab6eb-1ff7-4112-b645-c2f9d53978e2"},{"key":"ETag","value":"W/\"f6-GLO0wjgFfW/e1QwoKNU6ns3BAXY\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=15, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"6f9ff462-35e8-41c1-bf8e-d84a0e15720d\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\",\n            \"active\": true\n        }\n    ]\n}"}],"_postman_id":"4d867b2f-2156-4617-a1e8-090be0256a7d"},{"name":"Resolve Password less token by state","id":"ebefd829-df0d-4ad8-916d-853f76d7da3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"url":"{{baseurl}}/verification-srv/v2/passwordless/resolve/state/asdfsdf","description":"<h1 id=\"description\">Description</h1>\n<p>With this call the end user resolves the password less auth page</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scope Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>state</code> as param parameter.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Special headers required\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Data required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>It retuns the page\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","v2","passwordless","resolve","state","asdfsdf"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"d3817b09-948e-4f4e-9686-54fcb55e87cd","name":"List Configured Items Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{baseurl}}/verification-srv/v2/setup/admin/configured/devices/:verification_type/:sub","host":["{{baseurl}}"],"path":["verification-srv","v2","setup","admin","configured","devices",":verification_type",":sub"],"variable":[{"key":"verification_type","value":"touchid"},{"key":"sub","value":"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 27 May 2019 20:07:52 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains; includeSubDomains"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"246"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1558987672071-b4aab6eb-1ff7-4112-b645-c2f9d53978e2"},{"key":"ETag","value":"W/\"f6-GLO0wjgFfW/e1QwoKNU6ns3BAXY\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=15, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"6f9ff462-35e8-41c1-bf8e-d84a0e15720d\",\n            \"device_id\": \"69fde9c60dd9c7d5\",\n            \"user_device_id\": \"69fde9c60dd9c7d5\",\n            \"device_make\": \"Xiaomi\",\n            \"device_model\": \"Redmi Note 6 Pro\",\n            \"device_type\": \"MOBILE\",\n            \"active\": true\n        }\n    ]\n}"}],"_postman_id":"ebefd829-df0d-4ad8-916d-853f76d7da3b"}],"id":"f1a7cb42-5b0d-40c6-9a32-37748c35aa21","_postman_id":"f1a7cb42-5b0d-40c6-9a32-37748c35aa21","description":""},{"name":"Common","item":[{"name":"Get Configured MFA list","id":"cfbba045-5b53-4e32-b603-99132ab7c469","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/verification-srv/config/list","description":"<h1 id=\"description\">Description</h1>\n<p>Get all configured MFA for Tenant</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IVerificationSettings[];\n}\ninterface IVerificationSettings  {\n    _id: string;\n    id: string;\n    verificationType: string,\n    active: boolean\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["verification-srv","config","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cfbba045-5b53-4e32-b603-99132ab7c469"}],"id":"4f1c9937-61fc-4e13-a146-82776441034f","_postman_id":"4f1c9937-61fc-4e13-a146-82776441034f","description":""}],"id":"6aad4908-47e1-4559-bf89-95bb2046899b","_postman_id":"6aad4908-47e1-4559-bf89-95bb2046899b","description":""}],"id":"4fdd9719-720c-40f3-a6d7-555848576d36","_postman_id":"4fdd9719-720c-40f3-a6d7-555848576d36","description":""},{"name":"Reports","item":[{"name":"Get quota list","id":"cab02343-eea5-4179-826f-21936d178cd7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/settings-srv/quota/list","urlObject":{"path":["settings-srv","quota","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cab02343-eea5-4179-826f-21936d178cd7"},{"name":"New user registration report","id":"1ffd76ad-fc64-428f-abf4-74ebcf4f179f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"access_token","value":"{{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-04-28T18:30:00.000Z\",\n  \"endDate\": \"2018-05-11T18:29:59.999Z\",\n  \"reportType\": \"daily\"\n}"},"url":"{{baseurl}}/reports-srv/newuserscount","description":"<h1 id=\"description\">Description</h1>\n<p>New user registration report</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>NewUsersEntity</code> entity  in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export class NewUsersEntity {\n    reportType?: string; // *\n    timeZone?: string;\n    startDate?: string;// *\n    endDate?: string;// *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":{\n      \"2019-11-10T00:00:00.000Z\":1,\n      \"2019-11-11T00:00:00.000Z\":1,\n      \"2019-11-12T00:00:00.000Z\":5,\n      \"2019-11-13T00:00:00.000Z\":2,\n      \"2019-11-14T00:00:00.000Z\":2,\n      \"2019-11-15T00:00:00.000Z\":3\n   }\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","newuserscount"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ffd76ad-fc64-428f-abf4-74ebcf4f179f"},{"name":"Provider wise consolidate count (Register & Login)","id":"cae6e157-7fd8-40df-bdb2-922d149dda7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"access_token","value":"{{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-04-28T18:30:00.000Z\",\n  \"endDate\": \"2018-05-13T18:29:59.999Z\",\n  \"reportType\": \"daily\"\n}"},"url":"{{baseurl}}/reports-srv/providerwiseconsolidatecount","description":"<h1 id=\"description\">Description</h1>\n<p>Provider wise consolidate count (Register &amp; Login)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>ProviderEntity</code> entity  in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export class ProviderEntity {\n    reportType?: string; // *\n    timeZone?: string; \n    startDate?: string; // *\n    endDate?: string;// *\n    eventType?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"Registration\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"5\"\n            }\n         ]\n      },\n      {\n         \"Login\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"241\"\n            },\n            {\n               \"key\":\"Facebook\",\n               \"value\":\"1\"\n            }\n         ]\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","providerwiseconsolidatecount"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cae6e157-7fd8-40df-bdb2-922d149dda7d"},{"name":"Provider Day wise consolidate count (Register & Login)","id":"ba61816f-f180-44ae-a92b-ac1c5a7dc06a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"access_token","value":"{{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-04-28T18:30:00.000Z\",\n  \"endDate\": \"2018-05-11T18:29:59.999Z\",\n  \"reportType\": \"daily\",\n  \"eventType\":\"Login\"\n}"},"url":"{{baseurl}}/reports-srv/providerdaywisecount","description":"<h1 id=\"description\">Description</h1>\n<p>Provider Day wise consolidate count (Register &amp; Login)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>ProviderEntity</code> entity  in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export class ProviderEntity {\n    reportType?: string; // *\n    timeZone?: string; \n    startDate?: string; // *\n    endDate?: string;// *\n    eventType?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"2019-10-22T00:00:00.000Z\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"33\"\n            }\n         ]\n      },\n      {\n         \"2019-10-23T00:00:00.000Z\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"54\"\n            },\n            {\n               \"key\":\"Facebook\",\n               \"value\":\"1\"\n            }\n         ]\n      },\n      {\n         \"2019-10-24T00:00:00.000Z\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"20\"\n            }\n         ]\n      },\n      {\n         \"2019-10-25T00:00:00.000Z\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"12\"\n            }\n         ]\n      },\n      {\n         \"2019-10-26T00:00:00.000Z\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"14\"\n            }\n         ]\n      },\n      {\n         \"2019-10-27T00:00:00.000Z\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"14\"\n            }\n         ]\n      },\n      {\n         \"2019-10-28T00:00:00.000Z\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"25\"\n            }\n         ]\n      },\n      {\n         \"2019-10-29T00:00:00.000Z\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"15\"\n            }\n         ]\n      },\n      {\n         \"2019-10-30T00:00:00.000Z\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"19\"\n            }\n         ]\n      },\n      {\n         \"2019-10-31T00:00:00.000Z\":[\n            {\n               \"key\":\"SELF\",\n               \"value\":\"35\"\n            }\n         ]\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","providerdaywisecount"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ba61816f-f180-44ae-a92b-ac1c5a7dc06a"},{"name":"User Location Consolidate count (Register & Login)","id":"150af168-5bff-4023-b8b3-01cffed0edbe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"access_token","value":"{{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-04-28T18:30:00.000Z\",\n  \"endDate\": \"2018-05-11T18:29:59.999Z\",\n  \"locationType\":\"country\",\n  \"eventType\":\"register\"\n}"},"url":"{{baseurl}}/reports-srv/userlocationconsolidatecount","description":"<h1 id=\"description\">Description</h1>\n<p>User Location Consolidate count (Register &amp; Login)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>RegisterUserLocationEntity</code> entity  in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class RegisterUserLocationEntity {\n    reportType?: string;\n    timeZone?: string;\n    startDate?: string; // *\n    endDate?: string; // *\n    locationType?: string; // *\n    eventType?: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"key\":\"India\",\n         \"value\":5\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","userlocationconsolidatecount"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"150af168-5bff-4023-b8b3-01cffed0edbe"},{"name":"Device Insights","id":"78519131-f01a-4581-b6cc-ac2ab411ac90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"access_token","value":"{{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-04-28T18:30:00.000Z\",\n  \"endDate\": \"2018-05-10T18:29:59.999Z\",\n  \"reportType\":\"daily\",\n  \"deviceInsightType\":\"deviceType\"\n}"},"url":"{{baseurl}}/reports-srv/deviceinsights","description":"<h1 id=\"description\">Description</h1>\n<p>Device Insights</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>DeviceInsightEntity</code> entity  in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class DeviceInsightEntity {\n    reportType?: string; // *\n    timeZone?: string;\n    startDate?: string; // *\n    endDate?: string; // *\n    deviceInsightType?: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"2019-11-08T00:00:00.000Z\":[\n            {\n               \"key\":\"Phone\",\n               \"value\":\"6\"\n            },\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"100\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"2150\"\n            }\n         ]\n      },\n      {\n         \"2019-11-14T00:00:00.000Z\":[\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"42\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"1118\"\n            }\n         ]\n      },\n      {\n         \"2019-11-17T00:00:00.000Z\":[\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"33\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"576\"\n            }\n         ]\n      },\n      {\n         \"2019-11-11T00:00:00.000Z\":[\n            {\n               \"key\":\"Phone\",\n               \"value\":\"85\"\n            },\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"85\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"1623\"\n            }\n         ]\n      },\n      {\n         \"2019-11-05T00:00:00.000Z\":[\n            {\n               \"key\":\"Phone\",\n               \"value\":\"30\"\n            },\n            {\n               \"key\":\"Mobile\",\n               \"value\":\"15\"\n            },\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"45\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"323\"\n            }\n         ]\n      },\n      {\n         \"2019-11-20T00:00:00.000Z\":[\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"12\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"238\"\n            }\n         ]\n      },\n      {\n         \"2019-10-22T00:00:00.000Z\":[\n            {\n               \"key\":\"Phone\",\n               \"value\":\"69\"\n            },\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"61\"\n            },\n            {\n               \"key\":\"Unknown\",\n               \"value\":\"120\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"2092\"\n            }\n         ]\n      },\n      {\n         \"2019-11-07T00:00:00.000Z\":[\n            {\n               \"key\":\"Unknown\",\n               \"value\":\"12\"\n            },\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"61\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"2625\"\n            }\n         ]\n      },\n      {\n         \"2019-11-13T00:00:00.000Z\":[\n            {\n               \"key\":\"Unknown\",\n               \"value\":\"2\"\n            },\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"84\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"1978\"\n            }\n         ]\n      },\n      {\n         \"2019-11-16T00:00:00.000Z\":[\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"31\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"561\"\n            }\n         ]\n      },\n      {\n         \"2019-11-10T00:00:00.000Z\":[\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"36\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"532\"\n            }\n         ]\n      },\n      {\n         \"2019-11-19T00:00:00.000Z\":[\n            {\n               \"key\":\"Mobile\",\n               \"value\":\"12\"\n            },\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"82\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"1451\"\n            }\n         ]\n      },\n      {\n         \"2019-11-18T00:00:00.000Z\":[\n            {\n               \"key\":\"Unknown\",\n               \"value\":\"1\"\n            },\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"88\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"1732\"\n            }\n         ]\n      },\n      {\n         \"2019-11-06T00:00:00.000Z\":[\n            {\n               \"key\":\"Unknown\",\n               \"value\":\"1\"\n            },\n            {\n               \"key\":\"Phone\",\n               \"value\":\"90\"\n            },\n            {\n               \"key\":\"Mobile\",\n               \"value\":\"32\"\n            },\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"150\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"2749\"\n            }\n         ]\n      },\n      {\n         \"2019-11-12T00:00:00.000Z\":[\n            {\n               \"key\":\"Phone\",\n               \"value\":\"4\"\n            },\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"55\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"1607\"\n            }\n         ]\n      },\n      {\n         \"2019-11-09T00:00:00.000Z\":[\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"32\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"568\"\n            }\n         ]\n      },\n      {\n         \"2019-11-15T00:00:00.000Z\":[\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"89\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"2173\"\n            }\n         ]\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","deviceinsights"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"b054d19e-cbbd-4623-9471-8cddf391a3d3","name":"Device Insights (os)","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJhbGciOiJSUzI1NiIsImtpZCI6IjlmNzk5MzdlLTdkYjktNGFhMS04MDIxLWU5Y2JjNGNhNTAwMCJ9.eyJzaWQiOiI3ODQxMjczNy00ZDY4LTRjYjYtYTBiYS05ZTM3ZjA1NjJkZDgiLCJzdWIiOiI5M2YzNDUwMy01MGFiLTQ5Y2QtYjk3OC03ZjBiOTE4OGJjZWYiLCJhdWQiOiI0ZTQxNTIyYi0zNDI0LTQ5MzgtYTAxMC00ZDMyZTExY2MyODciLCJpYXQiOjE1MjU5MzI0NTMsImF1dGhfdGltZSI6MTUyNTg1ODQzMSwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiJhNmY4NTRiNy01MjU3LTRkNzQtODAwZi0wOTZjZmI0ODdlNzkiLCJzY29wZXMiOlsiY2lkYWFzOmFkbWluX3JlYWQiLCJjaWRhYXM6YWRtaW5fd3JpdGUiLCJjaWRhYXM6YWRtaW5fZGVsZXRlIl0sInJvbGVzIjpbIlVTRVIiXSwiZ3JvdXBzIjpbeyJncm91cElkIjoiQ0lEQUFTX1NZU1RFTSIsInBhdGgiOiIvQ0lEQUFTX1NZU1RFTS8iLCJyb2xlcyI6W119XSwiZXhwIjoxNTI2MDE4ODUzfQ.HrAYqnu1uTazFIDdtqo-r_I0cC5dF6HvGCVsUJAOBAQwqHx2WzgbpqHesYv9UnRTwE3nSBpIr7L3hQpetQ1HdGY3-d7eynHIheuSil-kIPwzvSoeFh60DwdYUKqgeZy-jnVznKEpNZgeuVwQm8_eL1GkjATXOmgn60GkEC94pro","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-04-28T18:30:00.000Z\",\n  \"endDate\": \"2018-05-10T18:29:59.999Z\",\n  \"reportType\":\"daily\",\n  \"deviceInsightType\":\"os\"\n}"},"url":"http://localmanagement.cidaas.de/reports-srv/deviceinsights"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"549","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 19:08:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"225-MAADfnRQMToQKIg9rblJ77kYShk\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Tue Apr 23 2019 12:14:57 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"0366fd5a-fe54-425b-a458-8ed354fb5665","key":"cidaas_sid"},{"expires":"Tue Apr 23 2019 12:14:57 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"04c253e3-61b0-4cc4-880d-98b26950acdf","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"2018-05-05T00:00:00.000Z\":[{\"key\":\"Linux\",\"value\":\"1\"},{\"key\":\"Windows 10\",\"value\":\"2\"},{\"key\":\"Other\",\"value\":\"452\"}]},{\"2018-05-08T00:00:00.000Z\":[{\"key\":\"iOS\",\"value\":\"1\"},{\"key\":\"Windows 7\",\"value\":\"1\"},{\"key\":\"Ubuntu\",\"value\":\"1\"},{\"key\":\"Mac OS X\",\"value\":\"3\"},{\"key\":\"Linux\",\"value\":\"9\"},{\"key\":\"Windows 10\",\"value\":\"37\"},{\"key\":\"Other\",\"value\":\"2741\"}]},{\"2018-05-07T00:00:00.000Z\":[{\"key\":\"Other\",\"value\":\"7\"}]},{\"2018-05-04T00:00:00.000Z\":[{\"key\":\"Linux\",\"value\":\"2\"},{\"key\":\"Other\",\"value\":\"63\"}]}]}"},{"id":"b0a819a3-0408-4713-ab19-c4cebe35e2b2","name":"Device Insights (deviceType)","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJhbGciOiJSUzI1NiIsImtpZCI6IjlmNzk5MzdlLTdkYjktNGFhMS04MDIxLWU5Y2JjNGNhNTAwMCJ9.eyJzaWQiOiI3ODQxMjczNy00ZDY4LTRjYjYtYTBiYS05ZTM3ZjA1NjJkZDgiLCJzdWIiOiI5M2YzNDUwMy01MGFiLTQ5Y2QtYjk3OC03ZjBiOTE4OGJjZWYiLCJhdWQiOiI0ZTQxNTIyYi0zNDI0LTQ5MzgtYTAxMC00ZDMyZTExY2MyODciLCJpYXQiOjE1MjU5MzI0NTMsImF1dGhfdGltZSI6MTUyNTg1ODQzMSwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiJhNmY4NTRiNy01MjU3LTRkNzQtODAwZi0wOTZjZmI0ODdlNzkiLCJzY29wZXMiOlsiY2lkYWFzOmFkbWluX3JlYWQiLCJjaWRhYXM6YWRtaW5fd3JpdGUiLCJjaWRhYXM6YWRtaW5fZGVsZXRlIl0sInJvbGVzIjpbIlVTRVIiXSwiZ3JvdXBzIjpbeyJncm91cElkIjoiQ0lEQUFTX1NZU1RFTSIsInBhdGgiOiIvQ0lEQUFTX1NZU1RFTS8iLCJyb2xlcyI6W119XSwiZXhwIjoxNTI2MDE4ODUzfQ.HrAYqnu1uTazFIDdtqo-r_I0cC5dF6HvGCVsUJAOBAQwqHx2WzgbpqHesYv9UnRTwE3nSBpIr7L3hQpetQ1HdGY3-d7eynHIheuSil-kIPwzvSoeFh60DwdYUKqgeZy-jnVznKEpNZgeuVwQm8_eL1GkjATXOmgn60GkEC94pro","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-04-28T18:30:00.000Z\",\n  \"endDate\": \"2018-05-10T18:29:59.999Z\",\n  \"reportType\":\"daily\",\n  \"deviceInsightType\":\"deviceType\"\n}"},"url":"http://localmanagement.cidaas.de/reports-srv/deviceinsights"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"272","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 19:07:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"110-DbjHnKEmPq2c/b5uUGfg8DvUNdY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Tue Apr 23 2019 12:14:57 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"0366fd5a-fe54-425b-a458-8ed354fb5665","key":"cidaas_sid"},{"expires":"Tue Apr 23 2019 12:14:57 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"04c253e3-61b0-4cc4-880d-98b26950acdf","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"2018-05-05T00:00:00.000Z\":[{\"key\":\"Web\",\"value\":\"455\"}]},{\"2018-05-08T00:00:00.000Z\":[{\"key\":\"Web\",\"value\":\"2793\"}]},{\"2018-05-07T00:00:00.000Z\":[{\"key\":\"Web\",\"value\":\"7\"}]},{\"2018-05-04T00:00:00.000Z\":[{\"key\":\"Web\",\"value\":\"65\"}]}]}"},{"id":"b61dd23f-8301-4140-a913-82a12221bdae","name":"Device Insights (Make)","originalRequest":{"method":"POST","header":[{"key":"access_token","value":"eyJhbGciOiJSUzI1NiIsImtpZCI6IjlmNzk5MzdlLTdkYjktNGFhMS04MDIxLWU5Y2JjNGNhNTAwMCJ9.eyJzaWQiOiI3ODQxMjczNy00ZDY4LTRjYjYtYTBiYS05ZTM3ZjA1NjJkZDgiLCJzdWIiOiI5M2YzNDUwMy01MGFiLTQ5Y2QtYjk3OC03ZjBiOTE4OGJjZWYiLCJhdWQiOiI0ZTQxNTIyYi0zNDI0LTQ5MzgtYTAxMC00ZDMyZTExY2MyODciLCJpYXQiOjE1MjU5MzI0NTMsImF1dGhfdGltZSI6MTUyNTg1ODQzMSwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiJhNmY4NTRiNy01MjU3LTRkNzQtODAwZi0wOTZjZmI0ODdlNzkiLCJzY29wZXMiOlsiY2lkYWFzOmFkbWluX3JlYWQiLCJjaWRhYXM6YWRtaW5fd3JpdGUiLCJjaWRhYXM6YWRtaW5fZGVsZXRlIl0sInJvbGVzIjpbIlVTRVIiXSwiZ3JvdXBzIjpbeyJncm91cElkIjoiQ0lEQUFTX1NZU1RFTSIsInBhdGgiOiIvQ0lEQUFTX1NZU1RFTS8iLCJyb2xlcyI6W119XSwiZXhwIjoxNTI2MDE4ODUzfQ.HrAYqnu1uTazFIDdtqo-r_I0cC5dF6HvGCVsUJAOBAQwqHx2WzgbpqHesYv9UnRTwE3nSBpIr7L3hQpetQ1HdGY3-d7eynHIheuSil-kIPwzvSoeFh60DwdYUKqgeZy-jnVznKEpNZgeuVwQm8_eL1GkjATXOmgn60GkEC94pro","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-04-28T18:30:00.000Z\",\n  \"endDate\": \"2018-05-10T18:29:59.999Z\",\n  \"reportType\":\"daily\",\n  \"deviceInsightType\":\"device\"\n}"},"url":"http://localmanagement.cidaas.de/reports-srv/deviceinsights"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"280","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 10 May 2018 19:05:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"118-v/T4BR/5hfU8GGWx+6L4HIJDxbs\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Tue Apr 23 2019 12:14:57 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"0366fd5a-fe54-425b-a458-8ed354fb5665","key":"cidaas_sid"},{"expires":"Tue Apr 23 2019 12:14:57 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"04c253e3-61b0-4cc4-880d-98b26950acdf","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"2018-05-05T00:00:00.000Z\":[{\"key\":\"Other\",\"value\":\"455\"}]},{\"2018-05-08T00:00:00.000Z\":[{\"key\":\"Other\",\"value\":\"2793\"}]},{\"2018-05-07T00:00:00.000Z\":[{\"key\":\"Other\",\"value\":\"7\"}]},{\"2018-05-04T00:00:00.000Z\":[{\"key\":\"Other\",\"value\":\"65\"}]}]}"}],"_postman_id":"78519131-f01a-4581-b6cc-ac2ab411ac90"},{"name":"Returning user count","id":"12b7b685-05a2-4e93-8714-29383e245905","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"access_token","value":"{{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-04-28T18:30:00.000Z\",\n  \"endDate\": \"2018-05-11T18:29:59.999Z\",\n  \"reportType\": \"daily\"\n}"},"url":"{{baseurl}}/reports-srv/returninguserscount","description":"<h1 id=\"description\">Description</h1>\n<p>Returning user count</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>ReturnUsersEntity</code> entity  in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class ReturnUsersEntity {\n    reportType?: string; // *\n    timeZone?: string;\n    startDate?: string; // *\n    endDate?: string; // *\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":{\n      \"2019-10-25T00:00:00.000+05:30\":2,\n      \"2019-10-24T00:00:00.000+05:30\":5,\n      \"2019-10-23T00:00:00.000+05:30\":13,\n      \"2019-10-31T00:00:00.000+05:30\":7,\n      \"2019-10-29T00:00:00.000+05:30\":2,\n      \"2019-10-28T00:00:00.000+05:30\":5,\n      \"2019-10-26T00:00:00.000+05:30\":1,\n      \"2019-10-30T00:00:00.000+05:30\":4,\n      \"2019-10-27T00:00:00.000+05:30\":1,\n      \"2019-10-22T00:00:00.000+05:30\":9\n   }\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","returninguserscount"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"12b7b685-05a2-4e93-8714-29383e245905"},{"name":"Top ten active users","id":"a1ceddcd-e4f3-4cf1-84b7-1eebc6cce05b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"access_token","value":"{{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-04-28T18:30:00.000Z\",\n  \"endDate\": \"2018-05-11T18:29:59.999Z\",\n  \"reportType\": \"daily\"\n}"},"url":"{{baseurl}}/reports-srv/toptenactiveusers","description":"<h1 id=\"description\">Description</h1>\n<p>Top ten active users</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>ActiveUsersEntity</code> entity  in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class ActiveUsersEntity {\n    reportType?: string; // *\n    timeZone?: string;\n    startDate?: string; // *\n    endDate?: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"count\":11526,\n         \"userInfo\":{\n            \"_id\":\"af390738-814b-4383-a90e-bebb20c9e845\",\n            \"className\":\"de.cidaas.core.db.EnternalSocialIdentity\",\n            \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n            \"provider\":\"self\",\n            \"email\":\"ganeshk18@mailinator.com\",\n            \"email_verified\":true,\n            \"family_name\":\"Kumar\",\n            \"given_name\":\"Ganesh133\",\n            \"locale\":\"en-us\",\n            \"mobile_number\":\"+919785361452\",\n            \"mobile_number_obj\":{\n               \"className\":\"de.cidaas.management.db.MobileEntity\",\n               \"_id\":\"fa3f0b7c-1d7a-4a5e-ad82-735e90ca42a9\",\n               \"carrier_name\":\"IDEA Cellular Ltd\",\n               \"carrier_type\":\"mobile\",\n               \"country\":\"IN\",\n               \"dail_code\":\"91\",\n               \"E164_format\":\"+919785361452\",\n               \"given_phone\":\"+919785361452\",\n               \"international_format\":\"+91 97853 61452\",\n               \"national_format\":\"097853 61452\",\n               \"phone\":\"9785361452\",\n               \"createdTime\":\"2019-05-30T13:02:06.582Z\",\n               \"updatedTime\":\"2019-09-19T06:20:39.149Z\",\n               \"id\":\"fa3f0b7c-1d7a-4a5e-ad82-735e90ca42a9\"\n            },\n            \"mobile_number_verified\":false,\n            \"createdTime\":\"2019-05-30T13:02:06.582Z\",\n            \"updatedTime\":\"2019-11-20T00:26:59.628Z\",\n            \"__v\":0,\n            \"username\":\"vijay\",\n            \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n            \"birthdate\":\"2019-06-30T18:30:00.000Z\",\n            \"nickname\":\"Helloe\",\n            \"zoneinfo\":\"South\",\n            \"id\":\"af390738-814b-4383-a90e-bebb20c9e845\"\n         },\n         \"displayName\":\"\",\n         \"picture\":\"\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\"\n      },\n      {\n         \"count\":5029,\n         \"userInfo\":{\n            \"_id\":\"f85d27c0-a43e-4fc3-a3c0-018a3b794738\",\n            \"className\":\"de.cidaas.core.db.EnternalSocialIdentity\",\n            \"sub\":\"9d46ef70-9cc7-4b70-9d3b-a4d8c38be60b\",\n            \"provider\":\"self\",\n            \"email\":\"banu1@mailinator.com\",\n            \"email_verified\":true,\n            \"family_name\":\"mathi\",\n            \"given_name\":\"mathi\",\n            \"locale\":\"en\",\n            \"mobile_number\":\"+918940891258\",\n            \"mobile_number_obj\":{\n               \"className\":\"de.cidaas.management.db.MobileEntity\",\n               \"_id\":\"84083a60-73cf-4371-adc4-2eed182db5c1\",\n               \"carrier_name\":\"Vodafone Essar South Ltd\",\n               \"carrier_type\":\"mobile\",\n               \"country\":\"IN\",\n               \"dail_code\":\"91\",\n               \"E164_format\":\"+918940891258\",\n               \"given_phone\":\"+918940891258\",\n               \"international_format\":\"+91 89408 91258\",\n               \"national_format\":\"089408 91258\",\n               \"phone\":\"8940891258\",\n               \"createdTime\":\"2019-05-27T09:24:26.567Z\",\n               \"updatedTime\":\"2019-10-23T06:14:17.318Z\",\n               \"id\":\"84083a60-73cf-4371-adc4-2eed182db5c1\"\n            },\n            \"mobile_number_verified\":true,\n            \"createdTime\":\"2019-05-27T09:24:26.567Z\",\n            \"updatedTime\":\"2019-11-19T10:21:13.850Z\",\n            \"__v\":0,\n            \"birthdate\":\"2018-05-09T18:30:00.000Z\",\n            \"nickname\":\"chitra\",\n            \"picture\":\"https://nightlybuild.cidaas.de/profile/9d46ef70-9cc7-4b70-9d3b-a4d8c38be60b?v=1571811257145\",\n            \"username\":\"mathi\",\n            \"address\":{\n               \"className\":\"de.cidaas.management.db.UserAddress\",\n               \"_id\":\"c6263c6b-bd1a-40a3-9db6-44aec437f891\",\n               \"street_address\":\"bellendur\",\n               \"country\":\"KN\",\n               \"createdTime\":\"2019-10-18T07:02:23.119Z\",\n               \"updatedTime\":\"2019-10-23T06:14:17.318Z\",\n               \"id\":\"c6263c6b-bd1a-40a3-9db6-44aec437f891\"\n            },\n            \"id\":\"f85d27c0-a43e-4fc3-a3c0-018a3b794738\"\n         },\n         \"displayName\":\"\",\n         \"picture\":\"\",\n         \"sub\":\"9d46ef70-9cc7-4b70-9d3b-a4d8c38be60b\"\n      },\n      {\n         \"count\":933,\n         \"userInfo\":{\n            \"_id\":\"555b13a9-0a27-4982-ac13-11a666a0fd27\",\n            \"className\":\"de.cidaas.core.db.EnternalSocialIdentity\",\n            \"sub\":\"103e03f1-7969-439f-9449-d3dcaee01838\",\n            \"provider\":\"self\",\n            \"email\":\"ganesh.kumar@widas.in\",\n            \"email_verified\":true,\n            \"family_name\":\"MUSTERMANN\",\n            \"given_name\":\"ERIKA\",\n            \"locale\":\"en\",\n            \"nickname\":\"Ganesh\",\n            \"mobile_number\":\"+919597598167\",\n            \"mobile_number_obj\":{\n               \"className\":\"de.cidaas.management.db.MobileEntity\",\n               \"_id\":\"9003841f-2fa9-4930-b8c7-84d8e7ecdb31\",\n               \"carrier_name\":\"\",\n               \"carrier_type\":\"\",\n               \"country\":\"IN\",\n               \"dail_code\":\"91\",\n               \"E164_format\":\"+919597598167\",\n               \"given_phone\":\"+919597598167\",\n               \"international_format\":\"+91 95975 98167\",\n               \"national_format\":\"095975 98167\",\n               \"phone\":\"9597598167\",\n               \"createdTime\":\"2019-09-20T13:59:30.040Z\",\n               \"updatedTime\":\"2019-11-12T10:05:10.119Z\",\n               \"id\":\"9003841f-2fa9-4930-b8c7-84d8e7ecdb31\"\n            },\n            \"mobile_number_verified\":false,\n            \"zoneinfo\":\"Test\",\n            \"createdTime\":\"2019-09-20T13:59:30.040Z\",\n            \"updatedTime\":\"2019-11-18T08:08:34.253Z\",\n            \"__v\":0,\n            \"birthdate\":\"1964-08-11T18:30:00.000Z\",\n            \"id\":\"555b13a9-0a27-4982-ac13-11a666a0fd27\"\n         },\n         \"displayName\":\"\",\n         \"picture\":\"\",\n         \"sub\":\"103e03f1-7969-439f-9449-d3dcaee01838\"\n      },\n      {\n         \"count\":821,\n         \"userInfo\":{\n            \"_id\":\"f10cc6f2-4f40-4ca2-9918-64dfcb9f8a29\",\n            \"updatedTime\":\"2019-11-19T03:54:16.178Z\",\n            \"createdTime\":\"2018-06-29T06:39:11.449Z\",\n            \"className\":\"de.cidaas.core.db.SocialIdentity\",\n            \"username\":\"vaidya\",\n            \"mobile_number_verified\":true,\n            \"mobile_number_obj\":{\n               \"className\":\"de.cidaas.core.db.MobileEntity\",\n               \"_id\":\"d6eb448f-0fa4-4641-8d6f-82aa9513934f\",\n               \"updatedTime\":\"2019-11-12T10:33:35.633Z\",\n               \"createdTime\":\"2018-06-29T06:39:11.448Z\",\n               \"phone\":\"9740402339\",\n               \"national_format\":\"097404 02339\",\n               \"international_format\":\"+91 97404 02339\",\n               \"given_phone\":\"+919740402339\",\n               \"E164_format\":\"+919740402339\",\n               \"dail_code\":\"91\",\n               \"country\":\"IN\",\n               \"carrier_type\":\"mobile\",\n               \"carrier_name\":\"Bharti Airtel Ltd\",\n               \"id\":\"d6eb448f-0fa4-4641-8d6f-82aa9513934f\"\n            },\n            \"mobile_number\":\"+919740402339\",\n            \"locale\":\"en-us\",\n            \"given_name\":\"Narasimha\",\n            \"family_name\":\"vaidya\",\n            \"email_verified\":true,\n            \"email\":\"narasimha.vaidya@widas.in\",\n            \"provider\":\"self\",\n            \"sub\":\"ef718553-6acf-4f2a-a38e-6a949d0d40bc\",\n            \"__v\":0,\n            \"birthdate\":\"1965-07-09T18:30:00.000Z\",\n            \"gender\":\"Male\",\n            \"nickname\":\"Vishnut\",\n            \"zoneinfo\":\"kmlm\",\n            \"id\":\"f10cc6f2-4f40-4ca2-9918-64dfcb9f8a29\"\n         },\n         \"displayName\":\"\",\n         \"picture\":\"\",\n         \"sub\":\"ef718553-6acf-4f2a-a38e-6a949d0d40bc\"\n      },\n      {\n         \"count\":733,\n         \"userInfo\":{\n            \"_id\":\"f9cf5b2a-eea5-4c72-8b50-ad1128d561b9\",\n            \"updatedTime\":\"2019-10-04T06:43:18.285Z\",\n            \"createdTime\":\"2019-04-03T12:20:32.183Z\",\n            \"className\":\"de.cidaas.core.db.SocialIdentity\",\n            \"mobile_number_verified\":false,\n            \"mobile_number_obj\":{\n               \"className\":\"de.cidaas.core.db.MobileEntity\",\n               \"_id\":\"5777ab85-9847-4460-84e9-c78b8a7e9422\",\n               \"updatedTime\":\"2019-10-03T12:45:46.612Z\",\n               \"createdTime\":\"2018-07-25T11:47:34.834Z\",\n               \"carrier_name\":\"Vodafone Essar South Ltd\",\n               \"carrier_type\":\"mobile\",\n               \"country\":\"IN\",\n               \"dail_code\":\"91\",\n               \"E164_format\":\"+919843435147\",\n               \"given_phone\":\"+919843435147\",\n               \"international_format\":\"+91 98434 35147\",\n               \"national_format\":\"098434 35147\",\n               \"phone\":\"9843435147\",\n               \"id\":\"5777ab85-9847-4460-84e9-c78b8a7e9422\"\n            },\n            \"mobile_number\":\"+919843435147\",\n            \"locale\":\"en-us\",\n            \"given_name\":\"Ganesh\",\n            \"family_name\":\"Kumar\",\n            \"email_verified\":true,\n            \"email\":\"thisissaravanan801@gmail.com\",\n            \"provider\":\"self\",\n            \"sub\":\"a8e386a1-0132-4f99-b8f5-3acc135aaa2f\",\n            \"__v\":0,\n            \"username\":\"williambrown\",\n            \"birthdate\":\"1964-08-11T18:30:00.000Z\",\n            \"picture\":\"https://nightlybuild.cidaas.de/profile/a8e386a1-0132-4f99-b8f5-3acc135aaa2f?v=1540890567358\",\n            \"profile\":\"https://sample.com\",\n            \"id\":\"f9cf5b2a-eea5-4c72-8b50-ad1128d561b9\"\n         },\n         \"displayName\":\"\",\n         \"picture\":\"\",\n         \"sub\":\"a8e386a1-0132-4f99-b8f5-3acc135aaa2f\"\n      },\n      {\n         \"count\":667,\n         \"userInfo\":{\n            \"_id\":\"5764e14324aa9a0001cea4bc\",\n            \"updatedTime\":\"2019-11-19T07:24:36.194Z\",\n            \"createdTime\":\"2019-04-03T08:26:48.901Z\",\n            \"className\":\"de.cidaas.core.db.SocialIdentity\",\n            \"profile\":\"test\",\n            \"picture\":\"https://nightlybuild.cidaas.de/profile/2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9?v=1543478313056\",\n            \"locale\":\"en-us\",\n            \"given_name\":\"Vimal\",\n            \"family_name\":\"prakash\",\n            \"email_verified\":true,\n            \"email\":\"vimalprakashts@gmail.com\",\n            \"provider\":\"self\",\n            \"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n            \"__v\":0,\n            \"mobile_number\":\"+919738122401\",\n            \"mobile_number_obj\":{\n               \"className\":\"de.cidaas.management.db.MobileEntity\",\n               \"_id\":\"a92298d3-e496-4727-a246-102d81be21cf\",\n               \"carrier_name\":\"Vodafone Essar South Ltd\",\n               \"carrier_type\":\"mobile\",\n               \"country\":\"IN\",\n               \"dail_code\":\"91\",\n               \"E164_format\":\"+919738122401\",\n               \"given_phone\":\"+919738122401\",\n               \"international_format\":\"+91 97381 22401\",\n               \"national_format\":\"097381 22401\",\n               \"phone\":\"9738122401\",\n               \"createdTime\":\"2019-05-22T11:56:32.950Z\",\n               \"updatedTime\":\"2019-11-11T05:51:36.573Z\",\n               \"id\":\"a92298d3-e496-4727-a246-102d81be21cf\"\n            },\n            \"mobile_number_verified\":false,\n            \"birthdate\":\"1964-08-11T18:30:00.000Z\",\n            \"nickname\":\"ddddddddd\",\n            \"username\":\"ddddddddddddddd\",\n            \"id\":\"5764e14324aa9a0001cea4bc\"\n         },\n         \"displayName\":\"\",\n         \"picture\":\"\",\n         \"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\"\n      },\n      {\n         \"count\":569,\n         \"userInfo\":{\n            \"_id\":\"be142e87-622e-4b2b-8c2a-4e5fa3e15d46\",\n            \"updatedTime\":\"2019-11-15T07:56:41.994Z\",\n            \"createdTime\":\"2019-04-08T09:07:46.995Z\",\n            \"className\":\"de.cidaas.core.db.SocialIdentity\",\n            \"username\":\"dinesh chiramana\",\n            \"mobile_number_verified\":false,\n            \"mobile_number_obj\":{\n               \"className\":\"de.cidaas.management.db.MobileEntity\",\n               \"_id\":\"d77e2720-0574-4d9a-9cf2-bab707ad10c9\",\n               \"carrier_name\":\"IDEA Cellular Ltd\",\n               \"carrier_type\":\"mobile\",\n               \"country\":\"IN\",\n               \"dail_code\":\"91\",\n               \"E164_format\":\"+918970915770\",\n               \"given_phone\":\"+918970915770\",\n               \"international_format\":\"+91 89709 15770\",\n               \"national_format\":\"089709 15770\",\n               \"phone\":\"8970915770\",\n               \"createdTime\":\"2019-05-31T08:05:38.784Z\",\n               \"updatedTime\":\"2019-05-31T08:05:38.784Z\",\n               \"id\":\"d77e2720-0574-4d9a-9cf2-bab707ad10c9\"\n            },\n            \"mobile_number\":\"+918970915770\",\n            \"locale\":\"en-us\",\n            \"given_name\":\"dinesh\",\n            \"gender\":\"Male\",\n            \"family_name\":\"chiramana\",\n            \"email_verified\":true,\n            \"email\":\"dinesh.c@widas.in\",\n            \"provider\":\"self\",\n            \"sub\":\"84649df1-b28d-40c7-83ab-68db4fe7133f\",\n            \"__v\":0,\n            \"website\":\"\",\n            \"birthdate\":\"1998-10-10T00:00:00.000Z\",\n            \"profile\":\"test\",\n            \"id\":\"be142e87-622e-4b2b-8c2a-4e5fa3e15d46\"\n         },\n         \"displayName\":\"\",\n         \"picture\":\"\",\n         \"sub\":\"84649df1-b28d-40c7-83ab-68db4fe7133f\"\n      },\n      {\n         \"count\":568,\n         \"userInfo\":{\n            \"_id\":\"69344c8d-a02a-4c34-a2b8-0f9581837678\",\n            \"updatedTime\":\"2019-11-18T14:01:46.791Z\",\n            \"createdTime\":\"2019-04-03T09:48:05.844Z\",\n            \"className\":\"de.cidaas.core.db.SocialIdentity\",\n            \"mobile_number_verified\":true,\n            \"mobile_number_obj\":{\n               \"className\":\"de.cidaas.core.db.MobileEntity\",\n               \"_id\":\"7e27105d-298e-463c-8db1-8dc9e536abd0\",\n               \"updatedTime\":\"2019-10-01T08:58:55.176Z\",\n               \"createdTime\":\"2018-12-12T10:34:54.180Z\",\n               \"carrier_name\":\"Vodafone Essar South Ltd\",\n               \"carrier_type\":\"mobile\",\n               \"country\":\"IN\",\n               \"dail_code\":\"91\",\n               \"E164_format\":\"+919886236233\",\n               \"given_phone\":\"+919886236233\",\n               \"international_format\":\"+91 98862 36233\",\n               \"national_format\":\"098862 36233\",\n               \"phone\":\"9886236233\",\n               \"id\":\"7e27105d-298e-463c-8db1-8dc9e536abd0\"\n            },\n            \"mobile_number\":\"+919886236233\",\n            \"locale\":\"en-gb\",\n            \"given_name\":\"Dinesh\",\n            \"family_name\":\"Kumar\",\n            \"email_verified\":true,\n            \"email\":\"dineshbabuspr@gmail.com\",\n            \"provider\":\"self\",\n            \"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\n            \"__v\":0,\n            \"username\":\"dineshbabuspr\",\n            \"middle_name\":\"sa\",\n            \"website\":\"http://www.sam.com\",\n            \"nickname\":\"Dinesh\",\n            \"picture\":\"\",\n            \"profile\":\"test\",\n            \"birthdate\":\"2019-09-30T18:30:00.000Z\",\n            \"id\":\"69344c8d-a02a-4c34-a2b8-0f9581837678\"\n         },\n         \"displayName\":\"\",\n         \"picture\":\"\",\n         \"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\"\n      },\n      {\n         \"count\":369,\n         \"userInfo\":{\n            \"_id\":\"bb69a504-fa3b-4ad2-8da5-b0d76352fce7\",\n            \"updatedTime\":\"2019-11-18T06:24:52.859Z\",\n            \"createdTime\":\"2019-04-03T10:50:10.253Z\",\n            \"className\":\"de.cidaas.core.db.SocialIdentity\",\n            \"mobile_number_verified\":true,\n            \"mobile_number_obj\":{\n               \"className\":\"de.cidaas.management.db.MobileEntity\",\n               \"_id\":\"91d5527c-13cc-4469-b588-c61372d631bc\",\n               \"carrier_name\":\"Vodafone Essar South Ltd\",\n               \"carrier_type\":\"mobile\",\n               \"country\":\"IN\",\n               \"dail_code\":\"91\",\n               \"E164_format\":\"+917845448473\",\n               \"given_phone\":\"+917845448473\",\n               \"international_format\":\"+91 78454 48473\",\n               \"national_format\":\"078454 48473\",\n               \"phone\":\"7845448473\",\n               \"createdTime\":\"2019-04-25T10:12:39.671Z\",\n               \"updatedTime\":\"2019-11-14T05:43:09.067Z\",\n               \"id\":\"91d5527c-13cc-4469-b588-c61372d631bc\"\n            },\n            \"mobile_number\":\"+917845448473\",\n            \"locale\":\"en-us\",\n            \"given_name\":\"Karthik\",\n            \"family_name\":\"raja\",\n            \"email_verified\":true,\n            \"email\":\"karthikraja.k@widas.in\",\n            \"provider\":\"self\",\n            \"sub\":\"45cd18b2-f553-4115-9f67-3a68cac74d0a\",\n            \"__v\":0,\n            \"username\":\"karthikrajak\",\n            \"birthdate\":\"2000-11-30T18:30:00.000Z\",\n            \"website\":\"https://widas.in\",\n            \"picture\":\"https://nightlybuild.cidaas.de/profile/45cd18b2-f553-4115-9f67-3a68cac74d0a?v=1551355739907\",\n            \"gender\":\"Male\",\n            \"profile\":\"\",\n            \"nickname\":\"Karthik\",\n            \"id\":\"bb69a504-fa3b-4ad2-8da5-b0d76352fce7\"\n         },\n         \"displayName\":\"\",\n         \"picture\":\"\",\n         \"sub\":\"45cd18b2-f553-4115-9f67-3a68cac74d0a\"\n      },\n      {\n         \"count\":340,\n         \"userInfo\":{\n            \"_id\":\"f124abbf-52b5-4374-a27e-7a41d4192461\",\n            \"updatedTime\":\"2019-11-19T08:24:18.152Z\",\n            \"createdTime\":\"2019-04-04T08:18:39.177Z\",\n            \"className\":\"de.cidaas.core.db.SocialIdentity\",\n            \"username\":\"keshav123\",\n            \"mobile_number_verified\":false,\n            \"mobile_number_obj\":{\n               \"className\":\"de.cidaas.core.db.MobileEntity\",\n               \"_id\":\"d73ba6eb-bd16-41e2-ba3f-d4c71637bfed\",\n               \"updatedTime\":\"2019-11-13T09:44:07.853Z\",\n               \"createdTime\":\"2018-06-29T07:50:27.844Z\",\n               \"phone\":\"9685182689\",\n               \"national_format\":\"096851 82689\",\n               \"international_format\":\"+91 96851 82689\",\n               \"given_phone\":\"+919685182689\",\n               \"E164_format\":\"+919685182689\",\n               \"dail_code\":\"91\",\n               \"country\":\"IN\",\n               \"carrier_type\":\"mobile\",\n               \"carrier_name\":\"Bharti Airtel Ltd\",\n               \"id\":\"d73ba6eb-bd16-41e2-ba3f-d4c71637bfed\"\n            },\n            \"mobile_number\":\"+919685182689\",\n            \"locale\":\"en-gb\",\n            \"given_name\":\"Keshav\",\n            \"family_name\":\"Lodhi\",\n            \"email_verified\":true,\n            \"email\":\"keshav2lodhi@gmail.com\",\n            \"provider\":\"self\",\n            \"sub\":\"58356162-d625-4463-b5e3-fa9ec31efada\",\n            \"__v\":0,\n            \"profile\":\"test\",\n            \"birthdate\":\"1991-04-19T18:30:00.000Z\",\n            \"nickname\":\"keshav\",\n            \"id\":\"f124abbf-52b5-4374-a27e-7a41d4192461\"\n         },\n         \"displayName\":\"\",\n         \"picture\":\"\",\n         \"sub\":\"58356162-d625-4463-b5e3-fa9ec31efada\"\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","toptenactiveusers"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a1ceddcd-e4f3-4cf1-84b7-1eebc6cce05b"},{"name":"Active user count ","id":"1f185070-6dab-4919-86e3-502bc9ece2b2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"access_token","value":"{{access_token}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-04-28T18:30:00.000Z\",\n  \"endDate\": \"2018-05-11T18:29:59.999Z\",\n  \"reportType\": \"daily\"\n}"},"url":"{{baseurl}}/reports-srv/activeusercount","description":"<h1 id=\"description\">Description</h1>\n<p>Active user count </p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>ActiveUsersEntity</code> entity  in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class ActiveUsersEntity {\n    reportType?: string; // *\n    timeZone?: string;\n    startDate?: string; // *\n    endDate?: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":{\n      \"totalActiveuserCount\":\"30\"\n   }\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","activeusercount"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1f185070-6dab-4919-86e3-502bc9ece2b2"},{"name":"Latest 10 user activity","id":"ca6eb323-5b11-4fba-a069-60a6c4f13de9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"access_token","value":"{{access_token}}"},{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/reports-srv/latestuseractivity","description":"<h1 id=\"description\">Description</h1>\n<p>Latest 10 user activity</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGOUT\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:27:49.849Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"null\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGIN_WITH_CIDAAS\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:27:04.489Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGOUT\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:26:37.151Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"null\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGIN_WITH_CIDAAS\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:25:51.335Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGOUT\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:25:33.662Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"null\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGIN_WITH_CIDAAS\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:25:01.320Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"cde4ed7c-5130-499e-8ab6-ef07b46c15de\",\n         \"name\":\"Andrew ganor\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:22:59.927Z\",\n         \"picture\":\"\",\n         \"verificationType\":\"null\",\n         \"email\":\"1290@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGOUT\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:22:33.092Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"null\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"GROUP_UPDATED\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:22:14.508Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"null\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGIN_WITH_CIDAAS\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:21:52.161Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","latestuseractivity"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"c36ca173-1a1f-480b-939f-93b3897115ff","name":"Latest 10 user activity","originalRequest":{"method":"GET","header":[{"key":"access_token","value":"{{access_token}}","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false}],"url":"http://localmanagement.cidaas.de/reports-srv/latestuseractivity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"204","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 11 May 2018 17:30:47 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"cc-FrMyxGAwE9TpBJbyE+5myCEMU7E\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[{"expires":"Tue Apr 23 2019 12:14:57 GMT+0000 (Coordinated Universal Time)","httpOnly":false,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"0366fd5a-fe54-425b-a458-8ed354fb5665","key":"cidaas_sid"},{"expires":"Tue Apr 23 2019 12:14:57 GMT+0000 (Coordinated Universal Time)","httpOnly":true,"domain":"localmanagement.cidaas.de","path":"/","secure":false,"value":"04c253e3-61b0-4cc4-880d-98b26950acdf","key":"cidaas_sso"}],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"tenantId\":\"cidaas-nightlybuild-dev\",\"name\":\"Dinesh Babu\",\"eventType\":\"LOGIN_WITH_CIDAAS\",\"provider\":\"SELF\",\"device\":\"Other\",\"timeStamp\":\"2018-05-11T15:42:01.787Z\"}]}"}],"_postman_id":"ca6eb323-5b11-4fba-a069-60a6c4f13de9"},{"name":"Latest useractivity by sub","id":"bffeed9d-4295-40e3-8523-9b59faa1b065","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"access_token","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n    \"sub\": \"03769c03-1819-4e41-97b0-9d9ade94dd28\",\n     \"startTime\": \"2019-01-19T00:30:00.000Z\",\n  \"endTime\": \"2019-02-21T18:29:59.999Z\"\n}\n"},"url":"{{baseurl}}/reports-srv/latestuseractivitybysub","description":"<h1 id=\"description\">Description</h1>\n<p>Latest useractivity by sub</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>ReportRequestEntity</code> entity  in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class ReportRequestEntity {\n    sub?: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGOUT\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:27:49.849Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"null\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGIN_WITH_CIDAAS\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:27:04.489Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGOUT\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:26:37.151Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"null\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGIN_WITH_CIDAAS\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:25:51.335Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGOUT\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:25:33.662Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"null\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGIN_WITH_CIDAAS\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:25:01.320Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"cde4ed7c-5130-499e-8ab6-ef07b46c15de\",\n         \"name\":\"Andrew ganor\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:22:59.927Z\",\n         \"picture\":\"\",\n         \"verificationType\":\"null\",\n         \"email\":\"1290@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGOUT\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:22:33.092Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"null\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"GROUP_UPDATED\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:22:14.508Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"null\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      },\n      {\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"sub\":\"605aa81c-2ed1-4388-bcc9-1214630497de\",\n         \"name\":\"Ganesh133 Kumar\",\n         \"eventType\":\"LOGIN_WITH_CIDAAS\",\n         \"provider\":\"SELF\",\n         \"device\":\"Windows Desktop\",\n         \"timeStamp\":\"2019-11-20T00:21:52.161Z\",\n         \"picture\":\"https://nightlybuild.cidaas.de/profile/605aa81c-2ed1-4388-bcc9-1214630497de?v=1568613323377\",\n         \"verificationType\":\"\",\n         \"email\":\"ganeshk18@mailinator.com\",\n         \"idType\":\"\"\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","latestuseractivitybysub"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"06e1ecb0-b61a-4908-8c97-b2ac92df1da7","name":"Latest useractivity by sub","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","warning":""},{"key":"access_token","value":"{{access_token}}","warning":""}],"body":{"mode":"raw","raw":"{\n    \"sub\": \"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\n    \"from\": 0\n}\n"},"url":"{{baseurl}}/reports-srv/latestuseractivitybysub"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":""},{"key":"connection","value":"keep-alive","name":"connection","description":""},{"key":"content-length","value":"1214","name":"content-length","description":""},{"key":"content-type","value":"application/json; charset=utf-8","name":"content-type","description":""},{"key":"date","value":"Mon, 23 Jul 2018 15:01:11 GMT","name":"date","description":""},{"key":"etag","value":"W/\"4be-+Isviu6aO77+08wgjytdabd1+Us\"","name":"etag","description":""},{"key":"server","value":"nginx","name":"server","description":""}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"tenantId\":\"cidaas-nightlybuild-dev\",\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\"name\":\"cidaas developer\",\"eventType\":\"LOGIN_WITH_CIDAAS\",\"provider\":\"SELF\",\"device\":\"HTC Nexus One\",\"timeStamp\":\"2018-07-17T06:14:45.169Z\",\"picture\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9-5764e14324aa9a0001cea4bc\"},{\"tenantId\":\"cidaas-nightlybuild-dev\",\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\"name\":\"cidaas developer\",\"eventType\":\"LOGIN_WITH_CIDAAS\",\"provider\":\"SELF\",\"device\":\"HTC Nexus One\",\"timeStamp\":\"2018-07-17T06:02:09.909Z\",\"picture\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9-5764e14324aa9a0001cea4bc\"},{\"tenantId\":\"cidaas-nightlybuild-dev\",\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\"name\":\"cidaas developer\",\"eventType\":\"LOGIN_WITH_CIDAAS\",\"provider\":\"SELF\",\"device\":\"Other\",\"timeStamp\":\"2018-07-17T06:00:24.435Z\",\"picture\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9-5764e14324aa9a0001cea4bc\"},{\"tenantId\":\"cidaas-nightlybuild-dev\",\"sub\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9\",\"name\":\"cidaas developer\",\"eventType\":\"LOGIN_WITH_CIDAAS\",\"provider\":\"SELF\",\"device\":\"Other\",\"timeStamp\":\"2018-07-17T06:00:12.884Z\",\"picture\":\"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9-5764e14324aa9a0001cea4bc\"}]}"}],"_postman_id":"bffeed9d-4295-40e3-8523-9b59faa1b065"},{"name":"Last 10 Registered users","id":"3391acc3-2db8-4d98-99fa-95324c551dad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"access_token","value":"{{access_token}}"}],"url":"{{baseurl}}/reports-srv/lasttenregisteredusers","description":"<h1 id=\"description\">Description</h1>\n<p>Last 10 Registered users</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"timeStamp\":\"2019-11-15T10:33:27.542Z\",\n         \"sub\":\"7c76ea81-b55c-4ece-90a5-656aab582cf3\",\n         \"provider\":\"SELF\",\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"name\":\"Yannick Huebner\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"device\":\"Windows Desktop\",\n         \"picture\":null\n      },\n      {\n         \"timeStamp\":\"2019-11-15T09:45:50.256Z\",\n         \"sub\":\"755558b9-aac6-4880-ae57-7fed5011fa52\",\n         \"provider\":\"SELF\",\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"name\":\"- -\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"device\":\"Windows Desktop\",\n         \"picture\":null\n      },\n      {\n         \"timeStamp\":\"2019-11-14T07:38:10.097Z\",\n         \"sub\":\"a4695b02-37c5-4c08-be49-83bf256d2a27\",\n         \"provider\":\"SELF\",\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"name\":\"Venkatesh Yalavatthi\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"device\":\"Windows Desktop\",\n         \"picture\":null\n      },\n      {\n         \"timeStamp\":\"2019-11-12T12:26:09.657Z\",\n         \"sub\":\"821fc745-0658-421c-bd80-c60f44fa85d1\",\n         \"provider\":\"SELF\",\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"name\":\"vaidya simha\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"device\":\"Windows Desktop\",\n         \"picture\":null\n      },\n      {\n         \"timeStamp\":\"2019-11-12T12:23:38.317Z\",\n         \"sub\":\"eb6e4181-87d6-4cad-b989-455e56738624\",\n         \"provider\":\"SELF\",\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"name\":\"Venkatesh Yalavatthi\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"device\":\"Windows Desktop\",\n         \"picture\":null\n      },\n      {\n         \"timeStamp\":\"2019-11-12T12:21:33.968Z\",\n         \"sub\":\"7414a5be-74f0-45a8-af55-7e04e9e42e46\",\n         \"provider\":\"SELF\",\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"name\":\"vyalavatti Venkatesh\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"device\":\"Windows Desktop\",\n         \"picture\":null\n      },\n      {\n         \"timeStamp\":\"2019-11-12T05:52:17.961Z\",\n         \"sub\":\"b43e84b8-1596-470a-9dcf-824b1cc73306\",\n         \"provider\":\"SELF\",\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"name\":\"Venkatesh Yalavatthi\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"device\":\"Windows Desktop\",\n         \"picture\":null\n      },\n      {\n         \"timeStamp\":\"2019-11-08T12:29:35.643Z\",\n         \"sub\":\"a74a8c37-835c-4337-b0c7-875f0d87a593\",\n         \"provider\":\"SELF\",\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"name\":\"Ganesh Kumar\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"device\":\"Apple Macintosh\",\n         \"picture\":null\n      },\n      {\n         \"timeStamp\":\"2019-11-08T12:26:15.855Z\",\n         \"sub\":\"339c7294-1ea9-4383-8ed2-3a77738ff3d4\",\n         \"provider\":\"SELF\",\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"name\":\"Ganesh Kumar\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"device\":\"Apple Macintosh\",\n         \"picture\":null\n      },\n      {\n         \"timeStamp\":\"2019-11-08T11:31:12.517Z\",\n         \"sub\":\"3840b962-1f4e-4fdd-9b8c-18df0cd246c1\",\n         \"provider\":\"SELF\",\n         \"tenantId\":\"cidaas-nightlybuild-dev\",\n         \"name\":\"Venkatehs Yalavatthi\",\n         \"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\n         \"device\":\"Windows Desktop\",\n         \"picture\":null\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","lasttenregisteredusers"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"79769253-54a5-4182-8055-0b8ab9e35a13","name":"Last 10 Registered users","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","warning":""},{"key":"access_token","value":"{{access_token}}","warning":""}],"url":"{{baseurl}}/reports-srv/lasttenregisteredusers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":""},{"key":"connection","value":"keep-alive","name":"connection","description":""},{"key":"content-length","value":"1248","name":"content-length","description":""},{"key":"content-type","value":"application/json; charset=utf-8","name":"content-type","description":""},{"key":"date","value":"Mon, 23 Jul 2018 14:09:31 GMT","name":"date","description":""},{"key":"etag","value":"W/\"4e0-39mGKQCaP1gDvU0eq20YWu3/3x0\"","name":"etag","description":""},{"key":"server","value":"nginx","name":"server","description":""}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"tenantId\":\"cidaas-nightlybuild-dev\",\"sub\":\"8fd3c0c1-35f4-4290-91ac-af9fb851d6b9\",\"name\":\"vimal prakash\",\"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\"provider\":\"SELF\",\"device\":\"Other\",\"timeStamp\":\"2018-07-17T08:52:22.543Z\",\"picture\":\"\"},{\"tenantId\":\"cidaas-nightlybuild-dev\",\"sub\":\"30d96fac-13d3-4fbd-99d5-e83836b9dfa7\",\"name\":\"ganesh kumar\",\"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\"provider\":\"SELF\",\"device\":\"Other\",\"timeStamp\":\"2018-07-17T06:57:26.597Z\",\"picture\":\"\"},{\"tenantId\":\"cidaas-nightlybuild-dev\",\"sub\":\"e59372d1-932b-49a8-b308-833770f54d7d\",\"name\":\"Dinesh Babu\",\"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\"provider\":\"SELF\",\"device\":\"Other\",\"timeStamp\":\"2018-07-17T06:38:55.947Z\",\"picture\":\"\"},{\"tenantId\":\"cidaas-nightlybuild-dev\",\"sub\":\"603d50c3-d984-4ce0-9a2b-2d987aba9ae7\",\"name\":\"sup Rao\",\"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\"provider\":\"SELF\",\"device\":\"Other\",\"timeStamp\":\"2018-07-17T06:23:42.944Z\",\"picture\":\"\"},{\"tenantId\":\"cidaas-nightlybuild-dev\",\"sub\":\"586fc043-2103-4e36-b9ad-6d5f2ee7d599\",\"name\":\"sup Rao\",\"eventType\":\"ACCOUNT_CREATED_WITH_CIDAAS_IDENTITY\",\"provider\":\"SELF\",\"device\":\"Other\",\"timeStamp\":\"2018-07-17T06:23:42.561Z\",\"picture\":\"\"}]}"}],"_postman_id":"3391acc3-2db8-4d98-99fa-95324c551dad"},{"name":"Login failure activity by sub","id":"161ad417-e4f9-4bfb-bece-a72a250a1362","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"access_token","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n  \"skip\": 0,\n  \"take\": 10,\n  \"sub\": \"73acf3a4-04a5-46e3-b887-f99005066fee\",\n  \"events\":[\"LOGIN_FAILURE\"]\n}"},"url":"{{baseurl}}/useractivity-srv/latestactivity","urlObject":{"path":["useractivity-srv","latestactivity"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"35422ee5-5a23-4dbb-a3b3-9fb17747b080","name":"Login failure activity by sub","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","warning":""},{"key":"access_token","value":"{{access_token}}","warning":""}],"body":{"mode":"raw","raw":"{\n  \"skip\": 0,\n  \"take\": 10,\n  \"sub\": \"73acf3a4-04a5-46e3-b887-f99005066fee\",\n  \"events\":[\"LOGIN_FAILURE\"]\n}"},"url":"{{baseurl}}/useractivity-srv/latestactivity"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"access-control-allow-origin","value":"*","name":"access-control-allow-origin","description":""},{"key":"connection","value":"keep-alive","name":"connection","description":""},{"key":"content-length","value":"1072","name":"content-length","description":""},{"key":"content-type","value":"application/json; charset=utf-8","name":"content-type","description":""},{"key":"date","value":"Mon, 23 Jul 2018 14:54:09 GMT","name":"date","description":""},{"key":"etag","value":"W/\"430-WYjsfSfSCTxiC5dnPoxAI94Q7Ww\"","name":"etag","description":""},{"key":"server","value":"nginx","name":"server","description":""}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"a1614592-16f0-4f3f-bca2-364968fda667\",\"createdTime\":\"2018-07-23T14:50:55.307Z\",\"metaData\":{\"userStatus\":\"VERIFIED\",\"email\":\"dineshbabuspr@gmail.com\",\"firstname\":\"Dinesh\",\"displayName\":\"Dinesh Babu\",\"lastname\":\"Babu\"},\"addressInfo\":{\"city\":\"-\",\"state\":\"-\",\"country\":\"-\"},\"deviceModel\":\"\",\"deviceMake\":\"\",\"browserName\":\"Chrome\",\"osName\":\"Mac OS\",\"socialIdentity\":{\"firstname\":\"Dinesh\",\"lastname\":\"Babu\"},\"userId\":\"73acf3a4-04a5-46e3-b887-f99005066fee\",\"provider\":\"SELF\",\"factEventType\":\"LOGIN_WITH_CIDAAS\"},{\"_id\":\"540fd410-0dec-46bd-9ca8-f7c22bc67f98\",\"createdTime\":\"2018-07-23T14:44:48.594Z\",\"metaData\":{\"error\":\"invalid_username_password\",\"email\":\"dineshbabuspr@gmail.com\",\"firstname\":\"Dinesh\",\"displayName\":\"Dinesh Babu\",\"lastname\":\"Babu\"},\"addressInfo\":{\"city\":\"-\",\"state\":\"-\",\"country\":\"-\"},\"deviceModel\":\"\",\"deviceMake\":\"\",\"browserName\":\"Chrome\",\"osName\":\"Mac OS\",\"socialIdentity\":{\"firstname\":\"Dinesh\",\"lastname\":\"Babu\"},\"userId\":\"73acf3a4-04a5-46e3-b887-f99005066fee\",\"provider\":\"SELF\",\"factEventType\":\"LOGIN_FAILURE\"}]}"}],"_postman_id":"161ad417-e4f9-4bfb-bece-a72a250a1362"},{"name":"Quota management Report","id":"5f075b5a-ec00-48c9-9e99-7d3b15237b2c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"access_token","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-05-31T18:30:00.000Z\",\n  \"endDate\": \"2018-06-30T18:29:59.999Z\"\n}"},"url":"{{baseurl}}/reports-srv/quota/details","description":"<h1 id=\"description\">Description</h1>\n<p>Quota management Report</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>DeviceInsightEntity</code> entity in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class DeviceInsightEntity {\n    reportType?: string;\n    timeZone?: string;\n    startDate?: string;\n    endDate?: string;\n    deviceInsightType?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"className\":\"de.cidaas.management.db.QuotaConfig\",\n         \"_id\":\"8c52e440-a1b3-4de8-8c30-170f6f19d398\",\n         \"resource_type\":\"APPS\",\n         \"allowed_count\":10,\n         \"createdTime\":\"2019-06-25T08:09:03.688Z\",\n         \"updatedTime\":\"2019-06-25T10:24:20.230Z\",\n         \"__v\":0,\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"id\":\"8c52e440-a1b3-4de8-8c30-170f6f19d398\",\n         \"running_count\":85\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"d69743ce-bd9d-47fa-80d3-8ed27b6c7466\",\n         \"running_count\":6842,\n         \"resource_type\":\"EMAIL\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-06-25T11:36:47.054Z\",\n         \"updatedTime\":\"2019-11-20T00:27:06.219Z\",\n         \"__v\":0,\n         \"id\":\"d69743ce-bd9d-47fa-80d3-8ed27b6c7466\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"9352b092-970b-46d2-aa4b-e3bdb06b4a0f\",\n         \"running_count\":547,\n         \"resource_type\":\"USERS\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-06-25T11:36:47.800Z\",\n         \"updatedTime\":\"2019-11-20T00:22:59.716Z\",\n         \"__v\":0,\n         \"id\":\"9352b092-970b-46d2-aa4b-e3bdb06b4a0f\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"e1be2c3d-4e5b-4fc9-9e49-3a71fb9cce0b\",\n         \"running_count\":989,\n         \"resource_type\":\"PUSH\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-06-25T12:30:51.705Z\",\n         \"updatedTime\":\"2019-11-19T14:32:33.943Z\",\n         \"__v\":0,\n         \"id\":\"e1be2c3d-4e5b-4fc9-9e49-3a71fb9cce0b\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"25d00a5c-e8cb-450e-9560-487e9d5d76aa\",\n         \"running_count\":51,\n         \"resource_type\":\"SMS\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-06-27T11:06:39.563Z\",\n         \"updatedTime\":\"2019-11-19T06:53:56.839Z\",\n         \"__v\":0,\n         \"id\":\"25d00a5c-e8cb-450e-9560-487e9d5d76aa\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"08daa073-db75-4a9f-adc9-d8c40a0f3d29\",\n         \"running_count\":38,\n         \"resource_type\":\"IVR\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-07-04T09:56:50.393Z\",\n         \"updatedTime\":\"2019-11-19T08:10:14.097Z\",\n         \"__v\":0,\n         \"id\":\"08daa073-db75-4a9f-adc9-d8c40a0f3d29\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"017fcaf8-d475-40cc-9442-1442aeaac0b9\",\n         \"running_count\":7193,\n         \"resource_type\":\"GROUPS\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-07-08T10:39:57.470Z\",\n         \"updatedTime\":\"2019-11-20T00:22:27.620Z\",\n         \"__v\":0,\n         \"id\":\"017fcaf8-d475-40cc-9442-1442aeaac0b9\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"63935ac8-f2b3-4e3c-802c-2894e6fb7005\",\n         \"running_count\":236,\n         \"resource_type\":\"ROLES\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-07-17T08:03:33.417Z\",\n         \"updatedTime\":\"2019-11-19T07:05:08.687Z\",\n         \"__v\":0,\n         \"id\":\"63935ac8-f2b3-4e3c-802c-2894e6fb7005\"\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","quota","details"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"5c768203-3ada-44c4-ad23-09076a9c7962","name":"Quota management Report","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"access_token","value":"{{access_token}}","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"startDate\": \"2018-05-31T18:30:00.000Z\",\n  \"endDate\": \"2018-06-30T18:29:59.999Z\"\n}"},"url":"{{baseurl}}/reports-srv/quota/details"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"783","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Fri, 03 Aug 2018 05:33:57 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"30f-Y0woDese9LhlYk7yAjyPG7N+dYc\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"_id\":\"5b546da4d309b7c120a6fd5a\",\"resource_type\":\"APPS\",\"tenantKey\":\"cidaas-management\",\"running_count\":27,\"allowed_count\":50,\"__v\":0},{\"_id\":\"5b546da4d309b7c120a6fd77\",\"resource_type\":\"GROUPS\",\"tenantKey\":\"cidaas-management\",\"running_count\":-2,\"allowed_count\":50,\"__v\":0},{\"_id\":\"5b546da6d309b7c120a6fe7c\",\"resource_type\":\"ROLES\",\"tenantKey\":\"cidaas-management\",\"running_count\":15,\"__v\":0},{\"_id\":\"5b546da7d309b7c120a6ff28\",\"resource_type\":\"USERS\",\"tenantKey\":\"cidaas-management\",\"running_count\":99,\"__v\":0},{\"_id\":\"5b55bee37e11dfce8d6e517e\",\"resource_type\":\"EMAIL\",\"tenantKey\":\"cidaas-management\",\"running_count\":14,\"__v\":0},{\"_id\":\"5b55dac07467704b6e89ceae\",\"resource_type\":\"SMS\",\"tenantKey\":\"cidaas-management\",\"running_count\":420,\"__v\":0}]}"}],"_postman_id":"5f075b5a-ec00-48c9-9e99-7d3b15237b2c"},{"name":"Login failure","id":"0d87e65a-9fd1-486f-9480-df1e3be179be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"access_token","value":"{{access_token}}"}],"body":{"mode":"raw","raw":"{\n    \"startDate\": \"2018-08-01T00:36:26.096Z\",\n    \"endDate\": \"2018-08-03T10:20:26.096Z\",\n    \"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\n    \"skip\": 0,\n    \"take\": 10\n}\n"},"url":"{{baseurl}}/reports-srv/loginfailure","description":"<h1 id=\"description\">Description</h1>\n<p>Login failure</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>LoginFailureRequestEntity</code> entity in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class LoginFailureRequestEntity {\n    startTimestamp?: string;\n    endTimestamp?: string;\n    sub?: string;\n    reason?: string;\n    country?: string;\n    city?: string;\n    ipAddress?: string;\n    clientId?: string;\n    appType?: string;\n    skip?: number;\n    take?: number;\n    tenantId: string = \"\";\n    startDate?: string; // *\n    endDate?: string; // *\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"className\":\"de.cidaas.management.db.QuotaConfig\",\n         \"_id\":\"8c52e440-a1b3-4de8-8c30-170f6f19d398\",\n         \"resource_type\":\"APPS\",\n         \"allowed_count\":10,\n         \"createdTime\":\"2019-06-25T08:09:03.688Z\",\n         \"updatedTime\":\"2019-06-25T10:24:20.230Z\",\n         \"__v\":0,\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"id\":\"8c52e440-a1b3-4de8-8c30-170f6f19d398\",\n         \"running_count\":85\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"d69743ce-bd9d-47fa-80d3-8ed27b6c7466\",\n         \"running_count\":6842,\n         \"resource_type\":\"EMAIL\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-06-25T11:36:47.054Z\",\n         \"updatedTime\":\"2019-11-20T00:27:06.219Z\",\n         \"__v\":0,\n         \"id\":\"d69743ce-bd9d-47fa-80d3-8ed27b6c7466\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"9352b092-970b-46d2-aa4b-e3bdb06b4a0f\",\n         \"running_count\":547,\n         \"resource_type\":\"USERS\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-06-25T11:36:47.800Z\",\n         \"updatedTime\":\"2019-11-20T00:22:59.716Z\",\n         \"__v\":0,\n         \"id\":\"9352b092-970b-46d2-aa4b-e3bdb06b4a0f\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"e1be2c3d-4e5b-4fc9-9e49-3a71fb9cce0b\",\n         \"running_count\":989,\n         \"resource_type\":\"PUSH\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-06-25T12:30:51.705Z\",\n         \"updatedTime\":\"2019-11-19T14:32:33.943Z\",\n         \"__v\":0,\n         \"id\":\"e1be2c3d-4e5b-4fc9-9e49-3a71fb9cce0b\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"25d00a5c-e8cb-450e-9560-487e9d5d76aa\",\n         \"running_count\":51,\n         \"resource_type\":\"SMS\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-06-27T11:06:39.563Z\",\n         \"updatedTime\":\"2019-11-19T06:53:56.839Z\",\n         \"__v\":0,\n         \"id\":\"25d00a5c-e8cb-450e-9560-487e9d5d76aa\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"08daa073-db75-4a9f-adc9-d8c40a0f3d29\",\n         \"running_count\":38,\n         \"resource_type\":\"IVR\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-07-04T09:56:50.393Z\",\n         \"updatedTime\":\"2019-11-19T08:10:14.097Z\",\n         \"__v\":0,\n         \"id\":\"08daa073-db75-4a9f-adc9-d8c40a0f3d29\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"017fcaf8-d475-40cc-9442-1442aeaac0b9\",\n         \"running_count\":7193,\n         \"resource_type\":\"GROUPS\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-07-08T10:39:57.470Z\",\n         \"updatedTime\":\"2019-11-20T00:22:27.620Z\",\n         \"__v\":0,\n         \"id\":\"017fcaf8-d475-40cc-9442-1442aeaac0b9\"\n      },\n      {\n         \"className\":\"de.cidaas.management.db.QuotaSettings\",\n         \"_id\":\"63935ac8-f2b3-4e3c-802c-2894e6fb7005\",\n         \"running_count\":236,\n         \"resource_type\":\"ROLES\",\n         \"tenantKey\":\"cidaas-nightlybuild-dev\",\n         \"createdTime\":\"2019-07-17T08:03:33.417Z\",\n         \"updatedTime\":\"2019-11-19T07:05:08.687Z\",\n         \"__v\":0,\n         \"id\":\"63935ac8-f2b3-4e3c-802c-2894e6fb7005\"\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","loginfailure"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"69bd2f13-13ae-4f63-b248-f36ab1bb206e","name":"Login failure","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","disabled":false},{"key":"access_token","value":"{{access_token}}","disabled":false}],"body":{"mode":"raw","raw":"{\n    \"startDate\": \"2018-08-01T00:36:26.096Z\",\n    \"endDate\": \"2018-08-03T10:20:26.096Z\",\n    \"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\n    \"skip\": 0,\n    \"take\": 10\n}\n"},"url":"{{baseurl}}/reports-srv/loginfailure"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"1296","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 02 Aug 2018 14:38:16 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"510-+G+d1AyaoRoo3GZ4sEATYYvYwIs\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":[{\"createdTime\":\"2018-08-02T10:22:29\",\"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\"metaData\":{\"error\":\"invalid_username_password\"},\"reason\":\"invalid_username_password\",\"addressInfo\":{\"city\":\"Bangalore\",\"country\":\"India\"},\"ipAddress\":\"27.59.0.109\",\"username\":\"dineshbabuspr@gmail.com\",\"device\":\"Other\",\"osName\":\"Mac OS X\"},{\"createdTime\":\"2018-08-02T10:11:59\",\"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\"metaData\":{\"error\":\"invalid_username_password\"},\"reason\":\"invalid_username_password\",\"addressInfo\":{\"city\":\"-\",\"country\":\"-\"},\"ipAddress\":\"192.168.5.182\",\"username\":\"dineshbabuspr@gmail.com\",\"device\":\"Other\",\"osName\":\"Mac OS X\"},{\"createdTime\":\"2018-08-02T10:05:45\",\"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\"metaData\":{\"error\":\"invalid_username_password\"},\"reason\":\"invalid_username_password\",\"addressInfo\":{\"city\":\"-\",\"country\":\"-\"},\"ipAddress\":\"192.168.5.182\",\"username\":\"dineshbabuspr@gmail.com\",\"device\":\"Other\",\"osName\":\"Mac OS X\"},{\"createdTime\":\"2018-08-02T10:05:15\",\"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\"metaData\":{\"error\":\"invalid_username_password\"},\"reason\":\"invalid_username_password\",\"addressInfo\":{\"city\":\"-\",\"country\":\"-\"},\"ipAddress\":\"192.168.5.182\",\"username\":\"dineshbabuspr@gmail.com\",\"device\":\"Other\",\"osName\":\"Mac OS X\"}]}"}],"_postman_id":"0d87e65a-9fd1-486f-9480-df1e3be179be"},{"name":"Login location of user","id":"4492eeb7-136c-4102-90e4-67140372b6e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImVhMTBiNDRmLTljNGUtNGM3OC1iYWNlLTZiYTE2YThiODE4YyJ9.eyJzaWQiOiJhNDFhOGRiYy1lNzhlLTRmZTgtOGQ2OC0wNGIxNzk5NTBhYWMiLCJzdWIiOiIxNTdjNGJlMS1mNzc4LTQwMGUtOGYwZS1mOGIwM2M5OGZjYTciLCJpc3ViIjoiZmM4M2JmYzAtNDVjZC00M2EwLTg1NmQtMzRjNWE1MzFjODkzIiwiYXVkIjoiN2QyMzJkOTktYjEzZC00OGM1LTg4NjAtYWMwM2UxNzZkNDFjIiwiaWF0IjoxNTQ5NTE1MzIzLCJhdXRoX3RpbWUiOjE1NDk1MTUzMjMsImlzcyI6Imh0dHA6Ly9sb2NhbG1hbmFnZW1lbnQuY2lkYWFzLmRlIiwianRpIjoiM2FiNWM5YWYtNzI5ZS00MWI2LTlkN2YtMWZlZDI3MmEyMzAyIiwic2NvcGVzIjpbImNpZGFhczphZG1pbl9yZWFkIiwiY2lkYWFzOmFkbWluX3dyaXRlIiwiY2lkYWFzOmFkbWluX2RlbGV0ZSJdLCJyb2xlcyI6WyJVU0VSIl0sImdyb3VwcyI6W3sicm9sZXMiOlsiQURNSU4iXSwiZ3JvdXBJZCI6IkNJREFBU19BRE1JTlMiLCJpZCI6IjNlNDlmZmNkLTFkNzItNDU4MS1hMjg0LTdkOGFmZTRlMDdkNiJ9XSwiZXhwIjoxNTQ5NjAxNzIzfQ.GiZKyNGy7XCQLgk-hawJOll9oW5QkkqD2_MRayWlJkR3M4iZ-jU43JNc1JwjaDG6YBHW69tEO6x5KcyufcEXNWHz0SX6_cCNwOPkxf8hPoH1nDN4zIyjmRPTkNfhE58KNC86eeSxIvhehV9PkJlBnXPIjyp2x5drvPLT_mXGo50","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\"\n}"},"url":"{{baseurl}}/reports-srv/user/loginlocation","description":"<h1 id=\"description\">Description</h1>\n<p>Login location of user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>ReportRequestEntity</code> entity  in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class ReportRequestEntity {\n    sub?: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"key\":\"Bangalore\",\n         \"value\":59\n      },\n      {\n         \"key\":\"Mumbai\",\n         \"value\":7\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","user","loginlocation"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"5ff90035-4bc4-45de-a751-e24a02da6578","name":"Login location of user","originalRequest":{"method":"POST","header":[{"key":"Pragma","value":"no-cache"},{"key":"Accept-Encoding","value":"gzip, deflate"},{"key":"Accept-Language","value":"en-US,en;q=0.9"},{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImVhMTBiNDRmLTljNGUtNGM3OC1iYWNlLTZiYTE2YThiODE4YyJ9.eyJzaWQiOiI0NmFiZDBhZi0yOTFjLTQ5MDgtOTViZi0wNmVkYWQ0ZDhkM2IiLCJzdWIiOiIxNTdjNGJlMS1mNzc4LTQwMGUtOGYwZS1mOGIwM2M5OGZjYTciLCJpc3ViIjoiZmM4M2JmYzAtNDVjZC00M2EwLTg1NmQtMzRjNWE1MzFjODkzIiwiYXVkIjoiN2QyMzJkOTktYjEzZC00OGM1LTg4NjAtYWMwM2UxNzZkNDFjIiwiaWF0IjoxNTQ2NDEzNDY4LCJhdXRoX3RpbWUiOjE1NDY0MTM0NjgsImlzcyI6Imh0dHA6Ly9sb2NhbG1hbmFnZW1lbnQuY2lkYWFzLmRlIiwianRpIjoiZWE4ZTViMmItN2E4Mi00Y2E1LTk0ZDktNDQ5NTg0Njc2N2JjIiwic2NvcGVzIjpbImNpZGFhczphZG1pbl9yZWFkIiwiY2lkYWFzOmFkbWluX3dyaXRlIiwiY2lkYWFzOmFkbWluX2RlbGV0ZSJdLCJyb2xlcyI6WyJVU0VSIl0sImdyb3VwcyI6W3siZ3JvdXBJZCI6IkNJREFBU19BRE1JTlMiLCJyb2xlcyI6WyJBRE1JTiJdfV0sImV4cCI6MTU0NjQ5OTg2OH0.Om0gXcqYUFUl26i6y2AfVJPCqwa1HSV0QEhW_AAm3rvfo_axbWlPSmgDXCnrCKB6Ljqji0_wvu2TcW_QRD_oXD7CmXPj-lh0NpqHEA2ByDJ8h42NiyWk9ZvM_J9FWxwMcsDBR0zvNLM-m7UP4_gXRalddMNKTLADU0YOJcGeenM"},{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json, text/plain, */*"},{"key":"Cache-Control","value":"no-cache"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36"},{"key":"Cookie","value":"_ga=GA1.2.1949635861.1542981762; __utmc=103711261; __utmz=103711261.1543340026.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); io=Huw5mb96-AFaGk7zAAAB; cidaas_sso=06c82633-9005-4793-bbdb-63ff7829afa3; access_token=eyJhbGciOiJSUzI1NiIsImtpZCI6IjM4NDEyZTQ3LTliYjctNDM1Mi04YmY1LTI0MDdlNjIzY2M3ZiJ9.eyJzaWQiOiJjMmVlYzBhYi0yOWNmLTQxOGMtOGUzNS0yYWUwMTAwOWUyMjkiLCJzdWIiOiJmMGEzN2I5Ni1hM2QyLTRmZmUtYjFmMC05ZWU5MmY5Zjg4M2QiLCJhdWQiOiI1Mzc1MmUxYi04YWYxLTRlZjAtYjA5MS0zMjM5Mzc0NGZlZTIiLCJpYXQiOjE1NDM1Njc1ODksImF1dGhfdGltZSI6MTU0MzU2NzU4OSwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiI3NTFhYThhYi1iMmRmLTQyODMtOTc2OC02YzhiNzk0YmJmMmUiLCJzY29wZXMiOlsib3BlbmlkIiwicHJvZmlsZSIsImVtYWlsIiwiYWRkcmVzcyIsInBob25lIiwiY2lkYWFzOnJlZ2lzdGVyIiwib2ZmbGluZV9hY2Nlc3MiXSwicm9sZXMiOlsiVVNFUiJdLCJncm91cHMiOltdLCJleHAiOjE1NDM2NTM5ODl9.iBV1wS5VYMpiuDLU_qwSvFq-HDovauDEIhCx4xPkCwNhAdgBmkMFcdlbqI3od7F9qM5EYeHxner1yAUKmMgJHxdCSMILjgXVM193eiKolLgXBbm81YR91tx2ANcsji6lkKRYT6zTlCjPLgVTNtfcoPwWqLzGJi4WoXRaaMiLax4; identityId=50e36259-f011-4406-bd62-84035c2d49ac; __utma=103711261.1949635861.1542981762.1543567288.1543570258.9; cidaas_sid=46abd0af-291c-4908-95bf-06edad4d8d3b"},{"key":"Connection","value":"keep-alive"},{"key":"If-Modified-Since","value":"0"},{"key":"Referer","value":"http://localmanagement.cidaas.de/dashboard-webapp/dashboard"},{"key":"Expires","value":"Sat, 01 Jan 2000 00:00:00 GMT"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\"\n}"},"url":"http://localmanagement.cidaas.de/reports-srv/userwise/loginlocation"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Wed, 02 Jan 2019 07:32:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"69"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"45-OzXy9jQCU5DPlv+VG5HYlwELEzM\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"key\": \"Bangalore\",\n            \"value\": 21\n        }\n    ]\n}"}],"_postman_id":"4492eeb7-136c-4102-90e4-67140372b6e8"},{"name":"Consolidate user count","id":"67e571f5-0512-4250-8b36-c6de180a3d04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImQ2M2ExOGU0LWI1NzMtNGJlNy1iYzM2LTNiM2RiMTUzNWExMiJ9.eyJzaWQiOiJiZGZmZDE4NS03ZWQ0LTQwZTAtODU2ZC01NGMwZGI5MmNmYjIiLCJzdWIiOiIwMzc2OWMwMy0xODE5LTRlNDEtOTdiMC05ZDlhZGU5NGRkMjgiLCJhdWQiOiJjMTdjNmYyYS00NzI5LTRjZjMtODk2My03NmZiM2ZjMGNjNDkiLCJpYXQiOjE1NDk0NDY4MjUsImF1dGhfdGltZSI6MTU0OTQ0NjgyNSwiaXNzIjoiaHR0cHM6Ly9uaWdodGx5YnVpbGQuY2lkYWFzLmRlIiwianRpIjoiZmMyYjFmYjUtYTU2Mi00YzUyLWJmMDAtYWZhZTY2YmY0Njc4Iiwic2NvcGVzIjpbXSwicm9sZXMiOlsiVVNFUiIsIlJvbGUxOTA3MjAxODEwNTc1OSIsIlJvbGUxOTA3MjAxODExMDAwOCJdLCJncm91cHMiOlt7InJvbGVzIjpbIkFETUlOIl0sImdyb3VwSWQiOiJDSURBQVNfQURNSU5TIiwiaWQiOiJiYWE1NTIyNy03MGQ3LTQ2NWEtOWJlNC1iYTU1MmViMzdkNDcifV0sImV4cCI6MTU0OTUzMzIyNX0.IPauEsNxY8-c3-FK1LrCDPHIssYGhA-pYg9OMjNlKYfwWEHWBsXQh_G5ClFakFyJq0WDriyXMbC71TS60VKIiRRd6j3EhhloCIDPHNmUtHGBurFX08o3lMLQfMD6wQz1_mADsvT8KAwQBrlrTjI5dTE7A94hShK0zgWA2e3iWEc","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/search/count","description":"<h1 id=\"description\">Description</h1>\n<p>Consolidate user count</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":{\n      \"total\":547,\n      \"verified_users\":476,\n      \"pending_users\":4,\n      \"declined_users\":67\n   }\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","search","count"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"67e571f5-0512-4250-8b36-c6de180a3d04"},{"name":"Device insights by user","id":"162e2e70-4da6-4010-97cd-036954e12fb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImVhMTBiNDRmLTljNGUtNGM3OC1iYWNlLTZiYTE2YThiODE4YyJ9.eyJzaWQiOiJhNDFhOGRiYy1lNzhlLTRmZTgtOGQ2OC0wNGIxNzk5NTBhYWMiLCJzdWIiOiIxNTdjNGJlMS1mNzc4LTQwMGUtOGYwZS1mOGIwM2M5OGZjYTciLCJpc3ViIjoiZmM4M2JmYzAtNDVjZC00M2EwLTg1NmQtMzRjNWE1MzFjODkzIiwiYXVkIjoiN2QyMzJkOTktYjEzZC00OGM1LTg4NjAtYWMwM2UxNzZkNDFjIiwiaWF0IjoxNTQ5NTE1MzIzLCJhdXRoX3RpbWUiOjE1NDk1MTUzMjMsImlzcyI6Imh0dHA6Ly9sb2NhbG1hbmFnZW1lbnQuY2lkYWFzLmRlIiwianRpIjoiM2FiNWM5YWYtNzI5ZS00MWI2LTlkN2YtMWZlZDI3MmEyMzAyIiwic2NvcGVzIjpbImNpZGFhczphZG1pbl9yZWFkIiwiY2lkYWFzOmFkbWluX3dyaXRlIiwiY2lkYWFzOmFkbWluX2RlbGV0ZSJdLCJyb2xlcyI6WyJVU0VSIl0sImdyb3VwcyI6W3sicm9sZXMiOlsiQURNSU4iXSwiZ3JvdXBJZCI6IkNJREFBU19BRE1JTlMiLCJpZCI6IjNlNDlmZmNkLTFkNzItNDU4MS1hMjg0LTdkOGFmZTRlMDdkNiJ9XSwiZXhwIjoxNTQ5NjAxNzIzfQ.GiZKyNGy7XCQLgk-hawJOll9oW5QkkqD2_MRayWlJkR3M4iZ-jU43JNc1JwjaDG6YBHW69tEO6x5KcyufcEXNWHz0SX6_cCNwOPkxf8hPoH1nDN4zIyjmRPTkNfhE58KNC86eeSxIvhehV9PkJlBnXPIjyp2x5drvPLT_mXGo50","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\n\t\"startTime\":\"\",\n\t\"endTime\":\"\",\n\t\"deviceUsageType\":\"browser\",\n    \"timeInterval\":\"daily\"\n}"},"url":"{{baseurl}}/reports-srv/user/deviceinsights","description":"<h1 id=\"description\">Description</h1>\n<p>Device insights by user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect to pass <code>ReportRequestEntity</code> entity  in the body section.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class ReportRequestEntity {\n    timeInterval?: string; // *\n    deviceInsightType?: string; // *\n    sub?: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":[\n      {\n         \"2019-11-14T00:00:00.000Z\":[\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"45\"\n            }\n         ]\n      },\n      {\n         \"2019-11-08T00:00:00.000Z\":[\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"83\"\n            }\n         ]\n      },\n      {\n         \"2019-11-20T00:00:00.000Z\":[\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"116\"\n            }\n         ]\n      },\n      {\n         \"2019-10-22T00:00:00.000Z\":[\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"110\"\n            }\n         ]\n      },\n      {\n         \"2019-11-13T00:00:00.000Z\":[\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"1\"\n            },\n            {\n               \"key\":\"Unknown\",\n               \"value\":\"2\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"71\"\n            }\n         ]\n      },\n      {\n         \"2019-11-07T00:00:00.000Z\":[\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"1\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"64\"\n            }\n         ]\n      },\n      {\n         \"2019-11-19T00:00:00.000Z\":[\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"77\"\n            }\n         ]\n      },\n      {\n         \"2019-11-18T00:00:00.000Z\":[\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"1\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"67\"\n            }\n         ]\n      },\n      {\n         \"2019-11-06T00:00:00.000Z\":[\n            {\n               \"key\":\"Unknown\",\n               \"value\":\"1\"\n            },\n            {\n               \"key\":\"Hacker\",\n               \"value\":\"1\"\n            },\n            {\n               \"key\":\"Desktop\",\n               \"value\":\"113\"\n            }\n         ]\n      }\n   ]\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["reports-srv","user","deviceinsights"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"497e96c2-2052-438e-ba4e-39695f4453de","name":"Device insights by user (deviceUsageType -> device)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImVhMTBiNDRmLTljNGUtNGM3OC1iYWNlLTZiYTE2YThiODE4YyJ9.eyJzaWQiOiJhNDFhOGRiYy1lNzhlLTRmZTgtOGQ2OC0wNGIxNzk5NTBhYWMiLCJzdWIiOiIxNTdjNGJlMS1mNzc4LTQwMGUtOGYwZS1mOGIwM2M5OGZjYTciLCJpc3ViIjoiZmM4M2JmYzAtNDVjZC00M2EwLTg1NmQtMzRjNWE1MzFjODkzIiwiYXVkIjoiN2QyMzJkOTktYjEzZC00OGM1LTg4NjAtYWMwM2UxNzZkNDFjIiwiaWF0IjoxNTQ5NTE1MzIzLCJhdXRoX3RpbWUiOjE1NDk1MTUzMjMsImlzcyI6Imh0dHA6Ly9sb2NhbG1hbmFnZW1lbnQuY2lkYWFzLmRlIiwianRpIjoiM2FiNWM5YWYtNzI5ZS00MWI2LTlkN2YtMWZlZDI3MmEyMzAyIiwic2NvcGVzIjpbImNpZGFhczphZG1pbl9yZWFkIiwiY2lkYWFzOmFkbWluX3dyaXRlIiwiY2lkYWFzOmFkbWluX2RlbGV0ZSJdLCJyb2xlcyI6WyJVU0VSIl0sImdyb3VwcyI6W3sicm9sZXMiOlsiQURNSU4iXSwiZ3JvdXBJZCI6IkNJREFBU19BRE1JTlMiLCJpZCI6IjNlNDlmZmNkLTFkNzItNDU4MS1hMjg0LTdkOGFmZTRlMDdkNiJ9XSwiZXhwIjoxNTQ5NjAxNzIzfQ.GiZKyNGy7XCQLgk-hawJOll9oW5QkkqD2_MRayWlJkR3M4iZ-jU43JNc1JwjaDG6YBHW69tEO6x5KcyufcEXNWHz0SX6_cCNwOPkxf8hPoH1nDN4zIyjmRPTkNfhE58KNC86eeSxIvhehV9PkJlBnXPIjyp2x5drvPLT_mXGo50","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\n\t\"startTime\":\"\",\n\t\"endTime\":\"\",\n\t\"deviceUsageType\":\"device\",\n    \"timeInterval\":\"daily\"\n}"},"url":"{{baseurl}}/reports-srv/user/deviceinsights"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 07 Feb 2019 05:10:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3281"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"cd1-YrbC4Hsd9FMpePFLBvmVPhHWeC0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"2018-12-24T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"66\"\n                }\n            ]\n        },\n        {\n            \"2018-12-18T00:00:00.000Z\": [\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"121\"\n                }\n            ]\n        },\n        {\n            \"2019-02-04T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"65\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"1029\"\n                }\n            ]\n        },\n        {\n            \"2019-01-21T00:00:00.000Z\": [\n                {\n                    \"key\": \"LLD AL10\",\n                    \"value\": \"4\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"3\"\n                }\n            ]\n        },\n        {\n            \"2019-01-09T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"4\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"147\"\n                }\n            ]\n        },\n        {\n            \"2019-01-18T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"36\"\n                }\n            ]\n        },\n        {\n            \"2019-01-24T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"89\"\n                }\n            ]\n        },\n        {\n            \"2019-01-30T00:00:00.000Z\": [\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"57\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"13\"\n                }\n            ]\n        },\n        {\n            \"2019-01-03T00:00:00.000Z\": [\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"38\"\n                }\n            ]\n        },\n        {\n            \"2019-02-06T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"367\"\n                }\n            ]\n        },\n        {\n            \"2018-12-14T00:00:00.000Z\": [\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"61\"\n                }\n            ]\n        },\n        {\n            \"2018-12-20T00:00:00.000Z\": [\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"214\"\n                }\n            ]\n        },\n        {\n            \"2019-01-02T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"123\"\n                }\n            ]\n        },\n        {\n            \"2018-12-17T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"144\"\n                }\n            ]\n        },\n        {\n            \"2019-01-11T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"3\"\n                },\n                {\n                    \"key\": \"LLD AL10\",\n                    \"value\": \"31\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"307\"\n                }\n            ]\n        },\n        {\n            \"2019-01-08T00:00:00.000Z\": [\n                {\n                    \"key\": \"iPhoneX_cn\",\n                    \"value\": \"8\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"174\"\n                }\n            ]\n        },\n        {\n            \"2019-01-29T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"233\"\n                }\n            ]\n        },\n        {\n            \"2019-01-17T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"92\"\n                }\n            ]\n        },\n        {\n            \"2019-01-23T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"iPhoneX_cn\",\n                    \"value\": \"7\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"50\"\n                }\n            ]\n        },\n        {\n            \"2018-12-31T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"227\"\n                }\n            ]\n        },\n        {\n            \"2018-12-19T00:00:00.000Z\": [\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"48\"\n                }\n            ]\n        },\n        {\n            \"2019-01-07T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"8\"\n                },\n                {\n                    \"key\": \"iPhoneX_cn\",\n                    \"value\": \"18\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"460\"\n                }\n            ]\n        },\n        {\n            \"2018-12-13T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"6\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"133\"\n                }\n            ]\n        },\n        {\n            \"2019-02-05T00:00:00.000Z\": [\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"89\"\n                }\n            ]\n        },\n        {\n            \"2019-01-31T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"27\"\n                }\n            ]\n        },\n        {\n            \"2019-01-10T00:00:00.000Z\": [\n                {\n                    \"key\": \"LLD AL10\",\n                    \"value\": \"5\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"10\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"359\"\n                }\n            ]\n        },\n        {\n            \"2019-01-25T00:00:00.000Z\": [\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"14\"\n                }\n            ]\n        },\n        {\n            \"2019-01-04T00:00:00.000Z\": [\n                {\n                    \"key\": \"iPhoneX_cn\",\n                    \"value\": \"3\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"150\"\n                }\n            ]\n        },\n        {\n            \"2019-01-28T00:00:00.000Z\": [\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"4\"\n                }\n            ]\n        },\n        {\n            \"2018-12-12T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"6\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"264\"\n                }\n            ]\n        },\n        {\n            \"2018-12-21T00:00:00.000Z\": [\n                {\n                    \"key\": \"iPhoneX_cn\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"LLD AL10\",\n                    \"value\": \"20\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"7\"\n                },\n                {\n                    \"key\": \"Apple Macintosh\",\n                    \"value\": \"373\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"795f2440-a198-4c49-830e-0bf06ede5045","name":"Device insights by user (deviceUsageType->browser)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImVhMTBiNDRmLTljNGUtNGM3OC1iYWNlLTZiYTE2YThiODE4YyJ9.eyJzaWQiOiJhNDFhOGRiYy1lNzhlLTRmZTgtOGQ2OC0wNGIxNzk5NTBhYWMiLCJzdWIiOiIxNTdjNGJlMS1mNzc4LTQwMGUtOGYwZS1mOGIwM2M5OGZjYTciLCJpc3ViIjoiZmM4M2JmYzAtNDVjZC00M2EwLTg1NmQtMzRjNWE1MzFjODkzIiwiYXVkIjoiN2QyMzJkOTktYjEzZC00OGM1LTg4NjAtYWMwM2UxNzZkNDFjIiwiaWF0IjoxNTQ5NTE1MzIzLCJhdXRoX3RpbWUiOjE1NDk1MTUzMjMsImlzcyI6Imh0dHA6Ly9sb2NhbG1hbmFnZW1lbnQuY2lkYWFzLmRlIiwianRpIjoiM2FiNWM5YWYtNzI5ZS00MWI2LTlkN2YtMWZlZDI3MmEyMzAyIiwic2NvcGVzIjpbImNpZGFhczphZG1pbl9yZWFkIiwiY2lkYWFzOmFkbWluX3dyaXRlIiwiY2lkYWFzOmFkbWluX2RlbGV0ZSJdLCJyb2xlcyI6WyJVU0VSIl0sImdyb3VwcyI6W3sicm9sZXMiOlsiQURNSU4iXSwiZ3JvdXBJZCI6IkNJREFBU19BRE1JTlMiLCJpZCI6IjNlNDlmZmNkLTFkNzItNDU4MS1hMjg0LTdkOGFmZTRlMDdkNiJ9XSwiZXhwIjoxNTQ5NjAxNzIzfQ.GiZKyNGy7XCQLgk-hawJOll9oW5QkkqD2_MRayWlJkR3M4iZ-jU43JNc1JwjaDG6YBHW69tEO6x5KcyufcEXNWHz0SX6_cCNwOPkxf8hPoH1nDN4zIyjmRPTkNfhE58KNC86eeSxIvhehV9PkJlBnXPIjyp2x5drvPLT_mXGo50","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\n\t\"startTime\":\"\",\n\t\"endTime\":\"\",\n\t\"deviceUsageType\":\"browser\",\n    \"timeInterval\":\"daily\"\n}"},"url":"{{baseurl}}/reports-srv/user/deviceinsights"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 07 Feb 2019 05:07:54 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3030"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"bd6-JSIMHWJvFBytIZJoZvRU6R7qRrY\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"2018-12-24T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"66\"\n                }\n            ]\n        },\n        {\n            \"2018-12-18T00:00:00.000Z\": [\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"121\"\n                }\n            ]\n        },\n        {\n            \"2019-02-04T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"PostmanRuntime\",\n                    \"value\": \"65\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"1029\"\n                }\n            ]\n        },\n        {\n            \"2019-01-21T00:00:00.000Z\": [\n                {\n                    \"key\": \"cidaas\",\n                    \"value\": \"4\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"3\"\n                }\n            ]\n        },\n        {\n            \"2019-01-09T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"4\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"147\"\n                }\n            ]\n        },\n        {\n            \"2019-01-18T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"36\"\n                }\n            ]\n        },\n        {\n            \"2019-01-24T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"89\"\n                }\n            ]\n        },\n        {\n            \"2019-01-30T00:00:00.000Z\": [\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"57\"\n                },\n                {\n                    \"key\": \"PostmanRuntime\",\n                    \"value\": \"13\"\n                }\n            ]\n        },\n        {\n            \"2019-01-03T00:00:00.000Z\": [\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"38\"\n                }\n            ]\n        },\n        {\n            \"2019-02-06T00:00:00.000Z\": [\n                {\n                    \"key\": \"PostmanRuntime\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"367\"\n                }\n            ]\n        },\n        {\n            \"2018-12-14T00:00:00.000Z\": [\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"61\"\n                }\n            ]\n        },\n        {\n            \"2018-12-20T00:00:00.000Z\": [\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"214\"\n                }\n            ]\n        },\n        {\n            \"2019-01-02T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"123\"\n                }\n            ]\n        },\n        {\n            \"2018-12-17T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"144\"\n                }\n            ]\n        },\n        {\n            \"2019-01-11T00:00:00.000Z\": [\n                {\n                    \"key\": \"PostmanRuntime\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Opera\",\n                    \"value\": \"26\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"3\"\n                },\n                {\n                    \"key\": \"cidaas\",\n                    \"value\": \"31\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"281\"\n                }\n            ]\n        },\n        {\n            \"2019-01-08T00:00:00.000Z\": [\n                {\n                    \"key\": \"cidaas\",\n                    \"value\": \"8\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"174\"\n                }\n            ]\n        },\n        {\n            \"2019-01-29T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"233\"\n                }\n            ]\n        },\n        {\n            \"2019-01-17T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"92\"\n                }\n            ]\n        },\n        {\n            \"2019-01-23T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"cidaas\",\n                    \"value\": \"7\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"50\"\n                }\n            ]\n        },\n        {\n            \"2018-12-31T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"227\"\n                }\n            ]\n        },\n        {\n            \"2018-12-19T00:00:00.000Z\": [\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"48\"\n                }\n            ]\n        },\n        {\n            \"2019-01-07T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"8\"\n                },\n                {\n                    \"key\": \"cidaas\",\n                    \"value\": \"18\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"460\"\n                }\n            ]\n        },\n        {\n            \"2018-12-13T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"PostmanRuntime\",\n                    \"value\": \"6\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"133\"\n                }\n            ]\n        },\n        {\n            \"2019-02-05T00:00:00.000Z\": [\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"89\"\n                }\n            ]\n        },\n        {\n            \"2019-01-31T00:00:00.000Z\": [\n                {\n                    \"key\": \"PostmanRuntime\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"27\"\n                }\n            ]\n        },\n        {\n            \"2019-01-10T00:00:00.000Z\": [\n                {\n                    \"key\": \"cidaas\",\n                    \"value\": \"5\"\n                },\n                {\n                    \"key\": \"PostmanRuntime\",\n                    \"value\": \"10\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"359\"\n                }\n            ]\n        },\n        {\n            \"2019-01-25T00:00:00.000Z\": [\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"14\"\n                }\n            ]\n        },\n        {\n            \"2019-01-04T00:00:00.000Z\": [\n                {\n                    \"key\": \"cidaas\",\n                    \"value\": \"3\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"150\"\n                }\n            ]\n        },\n        {\n            \"2019-01-28T00:00:00.000Z\": [\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"4\"\n                }\n            ]\n        },\n        {\n            \"2018-12-12T00:00:00.000Z\": [\n                {\n                    \"key\": \"PostmanRuntime\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"6\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"264\"\n                }\n            ]\n        },\n        {\n            \"2018-12-21T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"7\"\n                },\n                {\n                    \"key\": \"cidaas\",\n                    \"value\": \"21\"\n                },\n                {\n                    \"key\": \"Chrome\",\n                    \"value\": \"373\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"a11308df-4ae8-4ce2-accc-1a531c54c4c3","name":"Device insights by user (deviceUsageType -> os)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImVhMTBiNDRmLTljNGUtNGM3OC1iYWNlLTZiYTE2YThiODE4YyJ9.eyJzaWQiOiJhNDFhOGRiYy1lNzhlLTRmZTgtOGQ2OC0wNGIxNzk5NTBhYWMiLCJzdWIiOiIxNTdjNGJlMS1mNzc4LTQwMGUtOGYwZS1mOGIwM2M5OGZjYTciLCJpc3ViIjoiZmM4M2JmYzAtNDVjZC00M2EwLTg1NmQtMzRjNWE1MzFjODkzIiwiYXVkIjoiN2QyMzJkOTktYjEzZC00OGM1LTg4NjAtYWMwM2UxNzZkNDFjIiwiaWF0IjoxNTQ5NTE1MzIzLCJhdXRoX3RpbWUiOjE1NDk1MTUzMjMsImlzcyI6Imh0dHA6Ly9sb2NhbG1hbmFnZW1lbnQuY2lkYWFzLmRlIiwianRpIjoiM2FiNWM5YWYtNzI5ZS00MWI2LTlkN2YtMWZlZDI3MmEyMzAyIiwic2NvcGVzIjpbImNpZGFhczphZG1pbl9yZWFkIiwiY2lkYWFzOmFkbWluX3dyaXRlIiwiY2lkYWFzOmFkbWluX2RlbGV0ZSJdLCJyb2xlcyI6WyJVU0VSIl0sImdyb3VwcyI6W3sicm9sZXMiOlsiQURNSU4iXSwiZ3JvdXBJZCI6IkNJREFBU19BRE1JTlMiLCJpZCI6IjNlNDlmZmNkLTFkNzItNDU4MS1hMjg0LTdkOGFmZTRlMDdkNiJ9XSwiZXhwIjoxNTQ5NjAxNzIzfQ.GiZKyNGy7XCQLgk-hawJOll9oW5QkkqD2_MRayWlJkR3M4iZ-jU43JNc1JwjaDG6YBHW69tEO6x5KcyufcEXNWHz0SX6_cCNwOPkxf8hPoH1nDN4zIyjmRPTkNfhE58KNC86eeSxIvhehV9PkJlBnXPIjyp2x5drvPLT_mXGo50","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\n\t\"startTime\":\"\",\n\t\"endTime\":\"\",\n\t\"deviceUsageType\":\"os\",\n    \"timeInterval\":\"daily\"\n}"},"url":"{{baseurl}}/reports-srv/user/deviceinsights"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 07 Feb 2019 05:10:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3025"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"bd1-IzTQgD23NlonQUbZo1DPt7dYdss\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"2018-12-24T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"66\"\n                }\n            ]\n        },\n        {\n            \"2018-12-18T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"121\"\n                }\n            ]\n        },\n        {\n            \"2019-02-04T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"65\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"1029\"\n                }\n            ]\n        },\n        {\n            \"2019-01-21T00:00:00.000Z\": [\n                {\n                    \"key\": \"Android\",\n                    \"value\": \"4\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"3\"\n                }\n            ]\n        },\n        {\n            \"2019-01-09T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"4\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"147\"\n                }\n            ]\n        },\n        {\n            \"2019-01-18T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"36\"\n                }\n            ]\n        },\n        {\n            \"2019-01-24T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"89\"\n                }\n            ]\n        },\n        {\n            \"2019-01-30T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"57\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"13\"\n                }\n            ]\n        },\n        {\n            \"2019-01-03T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"38\"\n                }\n            ]\n        },\n        {\n            \"2019-02-06T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"367\"\n                }\n            ]\n        },\n        {\n            \"2018-12-14T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"61\"\n                }\n            ]\n        },\n        {\n            \"2018-12-20T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"214\"\n                }\n            ]\n        },\n        {\n            \"2019-01-02T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"123\"\n                }\n            ]\n        },\n        {\n            \"2018-12-17T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"144\"\n                }\n            ]\n        },\n        {\n            \"2019-01-11T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"3\"\n                },\n                {\n                    \"key\": \"Android\",\n                    \"value\": \"31\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"307\"\n                }\n            ]\n        },\n        {\n            \"2019-01-08T00:00:00.000Z\": [\n                {\n                    \"key\": \"iOS\",\n                    \"value\": \"8\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"174\"\n                }\n            ]\n        },\n        {\n            \"2019-01-29T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"233\"\n                }\n            ]\n        },\n        {\n            \"2019-01-17T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"92\"\n                }\n            ]\n        },\n        {\n            \"2019-01-23T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"iOS\",\n                    \"value\": \"7\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"50\"\n                }\n            ]\n        },\n        {\n            \"2018-12-31T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"227\"\n                }\n            ]\n        },\n        {\n            \"2018-12-19T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"48\"\n                }\n            ]\n        },\n        {\n            \"2019-01-07T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"8\"\n                },\n                {\n                    \"key\": \"iOS\",\n                    \"value\": \"18\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"460\"\n                }\n            ]\n        },\n        {\n            \"2018-12-13T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"6\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"133\"\n                }\n            ]\n        },\n        {\n            \"2019-02-05T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"89\"\n                }\n            ]\n        },\n        {\n            \"2019-01-31T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"27\"\n                }\n            ]\n        },\n        {\n            \"2019-01-10T00:00:00.000Z\": [\n                {\n                    \"key\": \"Android\",\n                    \"value\": \"5\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"10\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"359\"\n                }\n            ]\n        },\n        {\n            \"2019-01-25T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"14\"\n                }\n            ]\n        },\n        {\n            \"2019-01-04T00:00:00.000Z\": [\n                {\n                    \"key\": \"iOS\",\n                    \"value\": \"3\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"150\"\n                }\n            ]\n        },\n        {\n            \"2019-01-28T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"4\"\n                }\n            ]\n        },\n        {\n            \"2018-12-12T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"6\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"264\"\n                }\n            ]\n        },\n        {\n            \"2018-12-21T00:00:00.000Z\": [\n                {\n                    \"key\": \"iOS\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"7\"\n                },\n                {\n                    \"key\": \"Android\",\n                    \"value\": \"20\"\n                },\n                {\n                    \"key\": \"Mac OS X\",\n                    \"value\": \"373\"\n                }\n            ]\n        }\n    ]\n}"},{"id":"e0df0b18-944c-47ad-bc61-ac84e1c6e336","name":"Device insights by user (deviceUsageType -> deviceType)","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer eyJhbGciOiJSUzI1NiIsImtpZCI6ImVhMTBiNDRmLTljNGUtNGM3OC1iYWNlLTZiYTE2YThiODE4YyJ9.eyJzaWQiOiJhNDFhOGRiYy1lNzhlLTRmZTgtOGQ2OC0wNGIxNzk5NTBhYWMiLCJzdWIiOiIxNTdjNGJlMS1mNzc4LTQwMGUtOGYwZS1mOGIwM2M5OGZjYTciLCJpc3ViIjoiZmM4M2JmYzAtNDVjZC00M2EwLTg1NmQtMzRjNWE1MzFjODkzIiwiYXVkIjoiN2QyMzJkOTktYjEzZC00OGM1LTg4NjAtYWMwM2UxNzZkNDFjIiwiaWF0IjoxNTQ5NTE1MzIzLCJhdXRoX3RpbWUiOjE1NDk1MTUzMjMsImlzcyI6Imh0dHA6Ly9sb2NhbG1hbmFnZW1lbnQuY2lkYWFzLmRlIiwianRpIjoiM2FiNWM5YWYtNzI5ZS00MWI2LTlkN2YtMWZlZDI3MmEyMzAyIiwic2NvcGVzIjpbImNpZGFhczphZG1pbl9yZWFkIiwiY2lkYWFzOmFkbWluX3dyaXRlIiwiY2lkYWFzOmFkbWluX2RlbGV0ZSJdLCJyb2xlcyI6WyJVU0VSIl0sImdyb3VwcyI6W3sicm9sZXMiOlsiQURNSU4iXSwiZ3JvdXBJZCI6IkNJREFBU19BRE1JTlMiLCJpZCI6IjNlNDlmZmNkLTFkNzItNDU4MS1hMjg0LTdkOGFmZTRlMDdkNiJ9XSwiZXhwIjoxNTQ5NjAxNzIzfQ.GiZKyNGy7XCQLgk-hawJOll9oW5QkkqD2_MRayWlJkR3M4iZ-jU43JNc1JwjaDG6YBHW69tEO6x5KcyufcEXNWHz0SX6_cCNwOPkxf8hPoH1nDN4zIyjmRPTkNfhE58KNC86eeSxIvhehV9PkJlBnXPIjyp2x5drvPLT_mXGo50","type":"text"},{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"03769c03-1819-4e41-97b0-9d9ade94dd28\",\n\t\"startTime\":\"\",\n\t\"endTime\":\"\",\n\t\"deviceUsageType\":\"deviceType\",\n    \"timeInterval\":\"daily\"\n}"},"url":"{{baseurl}}/reports-srv/user/deviceinsights"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Thu, 07 Feb 2019 05:09:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2976"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"ba0-VA8jEY6sTu9VhPcQ2LqRVyiCnBg\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"2018-12-24T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"66\"\n                }\n            ]\n        },\n        {\n            \"2018-12-18T00:00:00.000Z\": [\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"121\"\n                }\n            ]\n        },\n        {\n            \"2019-02-04T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"65\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"1029\"\n                }\n            ]\n        },\n        {\n            \"2019-01-21T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mobile\",\n                    \"value\": \"4\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"3\"\n                }\n            ]\n        },\n        {\n            \"2019-01-09T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"4\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"147\"\n                }\n            ]\n        },\n        {\n            \"2019-01-18T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"36\"\n                }\n            ]\n        },\n        {\n            \"2019-01-24T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"89\"\n                }\n            ]\n        },\n        {\n            \"2019-01-30T00:00:00.000Z\": [\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"57\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"13\"\n                }\n            ]\n        },\n        {\n            \"2019-01-03T00:00:00.000Z\": [\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"38\"\n                }\n            ]\n        },\n        {\n            \"2019-02-06T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"367\"\n                }\n            ]\n        },\n        {\n            \"2018-12-14T00:00:00.000Z\": [\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"61\"\n                }\n            ]\n        },\n        {\n            \"2018-12-20T00:00:00.000Z\": [\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"214\"\n                }\n            ]\n        },\n        {\n            \"2019-01-02T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"123\"\n                }\n            ]\n        },\n        {\n            \"2018-12-17T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"144\"\n                }\n            ]\n        },\n        {\n            \"2019-01-11T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"3\"\n                },\n                {\n                    \"key\": \"Mobile\",\n                    \"value\": \"31\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"307\"\n                }\n            ]\n        },\n        {\n            \"2019-01-08T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mobile\",\n                    \"value\": \"8\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"174\"\n                }\n            ]\n        },\n        {\n            \"2019-01-29T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"233\"\n                }\n            ]\n        },\n        {\n            \"2019-01-17T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"92\"\n                }\n            ]\n        },\n        {\n            \"2019-01-23T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Mobile\",\n                    \"value\": \"7\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"50\"\n                }\n            ]\n        },\n        {\n            \"2018-12-31T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"227\"\n                }\n            ]\n        },\n        {\n            \"2018-12-19T00:00:00.000Z\": [\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"48\"\n                }\n            ]\n        },\n        {\n            \"2019-01-07T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"8\"\n                },\n                {\n                    \"key\": \"Mobile\",\n                    \"value\": \"18\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"460\"\n                }\n            ]\n        },\n        {\n            \"2018-12-13T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"6\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"133\"\n                }\n            ]\n        },\n        {\n            \"2019-02-05T00:00:00.000Z\": [\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"89\"\n                }\n            ]\n        },\n        {\n            \"2019-01-31T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"27\"\n                }\n            ]\n        },\n        {\n            \"2019-01-10T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mobile\",\n                    \"value\": \"5\"\n                },\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"10\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"359\"\n                }\n            ]\n        },\n        {\n            \"2019-01-25T00:00:00.000Z\": [\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"14\"\n                }\n            ]\n        },\n        {\n            \"2019-01-04T00:00:00.000Z\": [\n                {\n                    \"key\": \"Mobile\",\n                    \"value\": \"3\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"1\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"150\"\n                }\n            ]\n        },\n        {\n            \"2019-01-28T00:00:00.000Z\": [\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"4\"\n                }\n            ]\n        },\n        {\n            \"2018-12-12T00:00:00.000Z\": [\n                {\n                    \"key\": \"Unknown\",\n                    \"value\": \"2\"\n                },\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"6\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"264\"\n                }\n            ]\n        },\n        {\n            \"2018-12-21T00:00:00.000Z\": [\n                {\n                    \"key\": \"Hacker\",\n                    \"value\": \"7\"\n                },\n                {\n                    \"key\": \"Mobile\",\n                    \"value\": \"21\"\n                },\n                {\n                    \"key\": \"Desktop\",\n                    \"value\": \"373\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"162e2e70-4da6-4010-97cd-036954e12fb8"}],"id":"e10b78a5-4b21-43f8-8907-c166bf74a159","_postman_id":"e10b78a5-4b21-43f8-8907-c166bf74a159","description":""},{"name":"Devices","item":[{"name":"Get Users Devices","id":"6e05102b-a7b3-4f2e-8150-65521bffefed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/devices-srv/review/unrevieweddevices","description":"<h1 id=\"description\">Description</h1>\n<p>Get User Devices</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>sub</code> in the query param or request body and <code>access_token</code> in the request header.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IUserDevice{\n    sub: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: FDSDeviceResponse[];\n}\n\ninterface FDSDeviceResponse {\n    tenantKey: string;\n    userId: string;\n    device: string;\n    browser: string;\n    location: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>401 : UNAUTHORIZED</p>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["devices-srv","review","unrevieweddevices"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e05102b-a7b3-4f2e-8150-65521bffefed"},{"name":"Review Device","id":"0f1f2729-c70b-4c57-8e0b-9eae74ed1cda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"userId\":\"sasdf\",\n\t\"device\":\"asdafd\",\n\t\"browser\":\"asdfsd\",\n\t\"location\":\"asdfasdfasdf\"\n}"},"url":"{{baseurl}}/devices-srv/review/reviewdevice","description":"<h1 id=\"description\">Description</h1>\n<p>Review User Device</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>sub</code> in the query param or request body and need to pass access_token in the request header</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface FDSDeviceReviewRequest {\n    tenantKey: string;\n    userId: string; \n    sub: string // * \n    device: string;  // *\n    browser: string; // *\n    location: string; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: FDSDeviceReviewRequest;\n}\n\ninterface FDSDeviceReviewRequest { \n    reviewed: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>401 : UNAUTHORIZED</p>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["devices-srv","review","reviewdevice"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0f1f2729-c70b-4c57-8e0b-9eae74ed1cda"}],"id":"962a7670-fa35-42e2-a712-da44ac289c1a","_postman_id":"962a7670-fa35-42e2-a712-da44ac289c1a","description":""},{"name":"Images","item":[{"name":"Profile","item":[{"name":"Add Profile Image","id":"1ca433f8-fa87-41f6-8649-a260a33e5c72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"photo","value":null,"type":"file"},{"key":"image_key","value":"2c68b74b-b8a3-4f2d-b8d5-b5c27d9db9c9","type":"text"}]},"url":"{{baseurl}}/image-srv/profile/upload","description":"<h1 id=\"description\">Description</h1>\n<p>Add Profile Image</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>image_data</code> in the request body</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IImageStore {\n    _id: string;\n    id: string;\n    image_key: string; // *\n    image_type: string;\n    image_data: Buffer; // *\n    content_type: string;\n    image_meta_data: any;\n    is_succeeded: boolean;\n    error_code: string;\n    group_login_id: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IImageUpload;\n}\n\ninterface IImageUpload {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>401 : UNAUTHORIZED</p>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["image-srv","profile","upload"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ca433f8-fa87-41f6-8649-a260a33e5c72"},{"name":"Clear Profile image","id":"e3e8a8d5-7580-4399-8038-ce577f794af6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/image-srv/profile/:image_key","description":"<h1 id=\"description\">Description</h1>\n<p>Clear Profile Image</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Requried\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>image_key</code> and <code>identity_id</code> in the request param</p>\n<h2 id=\"param\">Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>image_key: string;\nidentity_id: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IClearImage;\n}\n\ninterface IClearImage {\n    deleted: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>401 : UNAUTHORIZED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["image-srv","profile",":image_key"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"e2c7c550-5962-4aed-80f8-e0c926b8b430","type":"string","value":"","key":"image_key"}]}},"response":[],"_postman_id":"e3e8a8d5-7580-4399-8038-ce577f794af6"},{"name":"Load","id":"fff5caf0-da0d-4e6c-a13a-748b3fb9c3d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"url":"{{baseurl}}/image-srv/profile/:image_key","description":"<h1 id=\"description\">Description</h1>\n<p>Load Profile Image</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>image_key</code> in the request param</p>\n<h2 id=\"param\">Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>image_key: string\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ILoadImage;\n}\n\ninterface ILoadImage {\n    image_data: Buffer;\n    content_type: string\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>401 : UNAUTHORIZED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["image-srv","profile",":image_key"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"c6ff05c6-6601-4cbe-9b7e-31b39db96a12","type":"string","value":"","key":"image_key"}]}},"response":[],"_postman_id":"fff5caf0-da0d-4e6c-a13a-748b3fb9c3d0"}],"id":"2d585648-aa16-41ba-b1b9-5bcc83bec986","_postman_id":"2d585648-aa16-41ba-b1b9-5bcc83bec986","description":""},{"name":"Verfication","item":[{"name":"Get Verfication image by status id","id":"bf245fb0-c399-43f9-8514-afe45ae1b37b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/image-srv/verification/resource/:sub/:statusId","description":"<h1 id=\"description\">Description</h1>\n<p>Load Profile Image</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>sub</code> and <code>status_id</code> in the request param</p>\n<h2 id=\"param\">Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub: string\nstatus_id: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ILoadImage;\n}\n\ninterface ILoadImage {\n    image_data: Buffer;\n    content_type: string\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>401 : UNAUTHORIZED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["image-srv","verification","resource",":sub",":statusId"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"8cd90552-cac8-404e-9c65-be25ae861125","type":"string","value":"","key":"sub"},{"id":"262b726f-ac90-456d-85dd-9be845b637b0","type":"string","value":"","key":"statusId"}]}},"response":[],"_postman_id":"bf245fb0-c399-43f9-8514-afe45ae1b37b"}],"id":"5dc7c2c9-c579-4fd4-b262-86ea1d1cd429","_postman_id":"5dc7c2c9-c579-4fd4-b262-86ea1d1cd429","description":""}],"id":"c54f986f-f3ff-4e6a-a907-8364ea363a30","_postman_id":"c54f986f-f3ff-4e6a-a907-8364ea363a30","description":""},{"name":"Document Protector","item":[{"name":"Newsletter","item":[{"name":"Get newsletter","id":"3d9574e6-4d6c-43ed-8ecb-f00a270f7195","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/docs-protector-srv/newsletter?name=test1&locale=en","description":"<h1 id=\"description\">Description</h1>\n<p>Get newsletter</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>name</code> and <code>locale</code> in the query param.</p>\n<h2 id=\"param\">Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>name: string\nlocale: string\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Request entity required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: INewsLetter;\n}\n\ninterface INewsLetter  {\n    _id: string;\n    id: string;\n    name: string;\n    locale: string;\n    language: string;\n    title: string;\n    body: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs-protector-srv","newsletter"],"host":["{{baseurl}}"],"query":[{"key":"name","value":"test1"},{"key":"locale","value":"en"}],"variable":[]}},"response":[],"_postman_id":"3d9574e6-4d6c-43ed-8ecb-f00a270f7195"},{"name":"Create newsletter","id":"53850dfc-a8c0-4d93-8c4a-62edd25a51fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\":\"test2\",\n\t\"title\":\"test title\",\n\t\"body\":\"test body\",\n\t\"locale\":\"en\"\n}"},"url":"{{baseurl}}/docs-protector-srv/newsletter","description":"<h1 id=\"description\">Description</h1>\n<p>Create newsletter</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>name</code>, <code>id</code> and <code>locale</code> in the request body and require access_token in the request headers</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface INewsLetter  {\n    _id: string;\n    id: string; // *\n    name: string; // *\n    locale: string; // *\n    language: string;\n    title: string;\n    body: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: INewsLetter;\n}\n\ninterface INewsLetter  {\n    _id: string;\n    id: string;\n    name: string;\n    locale: string;\n    language: string;\n    title: string;\n    body: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs-protector-srv","newsletter"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"53850dfc-a8c0-4d93-8c4a-62edd25a51fa"},{"name":"Sent newsletter link to user","id":"655ed906-2697-4dde-91cf-91e0949782eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"sub\":\"2e02770d-118c-4413-a8f6-7ee2c104676f\",\n\t\"proxy_name\":\"CidaasNewsLetter8\",\n\t\"templateKey\":\"NEWS_LETTER_2\",\n\t\"acceptLanguage\":\"en\",\n\t\"client_id\":\"\"\n}"},"url":"{{baseurl}}/docs-protector-srv/settings/sent/email","description":"<h1 id=\"description\">Description</h1>\n<p>Send newsletter link to user</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>sub</code>, <code>proxy_name</code> and <code>templateKey</code> in the request body and require access_token in the request headers</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface LinkSendEntity {\n    sub: string; // *\n    email: string;\n    proxy_name: string; // *\n    proxy_id: string;\n    templateKey: string; // *\n    acceptLanguage: string;\n    client_id: string;\n    meta_data: any;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: INewsLetter;\n}\n\ninterface INewsLetter  {\n    sent: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs-protector-srv","settings","sent","email"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"655ed906-2697-4dde-91cf-91e0949782eb"}],"id":"a355c8c8-c395-47e0-87cf-b39ae09ce203","_postman_id":"a355c8c8-c395-47e0-87cf-b39ae09ce203","description":""},{"name":"CRUD","item":[{"name":"1. Get Temp Proxy ID","id":"687a83aa-e025-4208-b3f8-ba891020a20d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/docs-protector-srv/settings/proxyid","description":"<h1 id=\"description\">Description</h1>\n<p>Get Temporary Proxy ID</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:tenant_docs_write\", \"cidaas:tenant_docs_read\", \"cidaas:tenant_docs_delete\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects access_token in request headers</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: LinkSendEntity;\n}\n\ninterface LinkSendEntity {\n    proxy_id: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs-protector-srv","settings","proxyid"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"687a83aa-e025-4208-b3f8-ba891020a20d"},{"name":"2. Check ProxyID","id":"415f3206-3135-46bc-afd0-96741b309a03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/docs-protector-srv/settings/checkproxyid/:proxy_id","description":"<h1 id=\"description\">Description</h1>\n<p>Check Proxy ID</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:tenant_docs_write\", \"cidaas:tenant_docs_read\", \"cidaas:tenant_docs_delete\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and <code>proxy_id</code> in the query parameter.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: LinkSendEntity;\n}\n\ninterface LinkSendEntity {\n    used: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs-protector-srv","settings","checkproxyid",":proxy_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"2965e6dc-b39b-424b-858d-a830fe7da846","type":"string","value":"","key":"proxy_id"}]}},"response":[],"_postman_id":"415f3206-3135-46bc-afd0-96741b309a03"},{"name":"3. Create Proxy","id":"57e467a4-02ea-4de9-a24c-2b862493517d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"provider\":\"NONE\",\n\t\"name\":\"CidaasNewsLetter8\",\n\t\"url\":\"https://www.cidaas.com/wp-content/uploads/2018/07/Cidaas_WPAPRIL2018English.pdf\",\n\t\"request_method\":\"GET\",\n\t\"secured\":false,\n\t\"proxy_id\":\"Nq2pPo\"\n}"},"url":"{{baseurl}}/docs-protector-srv/settings","description":"<h1 id=\"description\">Description</h1>\n<p>Create Proxy</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:tenant_docs_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and <code>proxy_id</code> in the query parameter.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IAPIKeyProtector {\n    apikey: string;\n    placeholder: string;\n    apikeylabel: string;\n}\n\ninterface IProxySettings {\n    _id: string;\n    id: string; \n    proxy_id: string; // *\n    proxy_url: string;\n    name: string;\n    expires_at: Date;\n    url: string; // *\n    provider: string; // * \n    provider_resolver: IAPIKeyProtector;\n    request_method: string;\n    expires_in: number;\n    secured_by: string;\n    secured: boolean; // *\n    allowed_api_key: IAPIKeyProtector;\n    allowed_scopes: string[];\n    allowed_roles: string[];\n    shared_with: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IProxySettings;\n}\n\ninterface IAPIKeyProtector {\n    apikey: string;\n    placeholder: string;\n    apikeylabel: string;\n}\n\ninterface IProxySettings {\n    _id: string;\n    id: string;\n    proxy_id: string;\n    proxy_url: string;\n    name: string;\n    expires_at: Date;\n    url: string;\n    provider: string;\n    provider_resolver: IAPIKeyProtector;\n    request_method: string;\n    expires_in: number;\n    secured_by: string;\n    secured: boolean;\n    allowed_api_key: IAPIKeyProtector;\n    allowed_scopes: string[];\n    allowed_roles: string[];\n    shared_with: string[];\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>417 : EXPECTATION_FAILED </p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs-protector-srv","settings"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"57e467a4-02ea-4de9-a24c-2b862493517d"},{"name":"4. Get Create Proxy By Doc Id","id":"e06364a2-fc9f-4d35-8601-373efe1a5777","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/docs-protector-srv/settings/:document_id","description":"<h1 id=\"description\">Description</h1>\n<p>Get Proxy ID By Doc Id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:tenant_docs_write\", \"cidaas:tenant_docs_read\", \"cidaas:tenant_docs_delete\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and <code>document_id</code> in the request param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IProxySettings;\n}\n\ninterface IAPIKeyProtector {\n    apikey: string;\n    placeholder: string;\n    apikeylabel: string;\n}\n\ninterface IProxySettings {\n    _id: string;\n    id: string;\n    proxy_id: string;\n    proxy_url: string;\n    name: string;\n    expires_at: Date;\n    url: string;\n    provider: string;\n    provider_resolver: IAPIKeyProtector;\n    request_method: string;\n    expires_in: number;\n    secured_by: string;\n    secured: boolean;\n    allowed_api_key: IAPIKeyProtector;\n    allowed_scopes: string[];\n    allowed_roles: string[];\n    shared_with: string[];\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>401 : UNAUTHORIZED</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs-protector-srv","settings",":document_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"53675b9d-ab76-41ed-9c67-ceae7754e40c","type":"string","value":"","key":"document_id"}]}},"response":[],"_postman_id":"e06364a2-fc9f-4d35-8601-373efe1a5777"},{"name":"Delete Create Proxy By Doc Id","id":"b5c8ddc7-1bac-44e6-b52d-21c866e3ac9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/docs-protector-srv/settings/:document_id","description":"<h1 id=\"description\">Description</h1>\n<p>Delete Proxy ID By Doc Id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:tenant_docs_write\", \"cidaas:tenant_docs_read\", \"cidaas:tenant_docs_delete\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and <code>document_id</code> in the request param.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IProxyId;\n}\n\ninterface IProxyId {\n    data: boolean;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>401 : UNAUTHORIZED</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs-protector-srv","settings",":document_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"85c8bf40-9944-4088-a026-877891d64405","type":"string","value":"","key":"document_id"}]}},"response":[],"_postman_id":"b5c8ddc7-1bac-44e6-b52d-21c866e3ac9c"}],"id":"dd4e80a9-886e-42f7-86c8-a327b2805d2b","_postman_id":"dd4e80a9-886e-42f7-86c8-a327b2805d2b","description":""},{"name":"Search","item":[{"name":"Get All Proxy Lite [Depcricated]","id":"57be6eac-b11b-4234-9428-3139567106b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/docs-protector-srv/settings/list","description":"<h1 id=\"description\">Description</h1>\n<p>Get All Proxy Lite</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:tenant_docs_write\", \"cidaas:tenant_docs_read\", \"cidaas:tenant_docs_delete\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\",\"APP_READ\", \"APP_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IProxySettings;\n}\n\ninterface IProxySettings {\n    _id: string;\n    id: string;\n    proxy_id: string;\n    proxy_url: string;\n    name: string;\n    expires_at: Date;\n    url: string;\n    provider: string;\n    provider_resolver: IAPIKeyProtector;\n    request_method: string;\n    expires_in: number;\n    secured_by: string;\n    secured: boolean;\n    allowed_api_key: IAPIKeyProtector;\n    allowed_scopes: string[];\n    allowed_roles: string[];\n    shared_with: string[];\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs-protector-srv","settings","list"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"57be6eac-b11b-4234-9428-3139567106b7"},{"name":"Search Protected Docs","id":"135533f7-4fe0-4e70-af41-47573acbc398","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/docs-protector-srv/settings/search","description":"<h1 id=\"description\">Description</h1>\n<p>Search Protected Docs</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:tenant_docs_write\", \"cidaas:tenant_docs_read\", \"cidaas:tenant_docs_delete\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\", \"SETTINGS_CREATE\", \"SETTINGS_RESET\",\"APP_READ\", \"APP_CREATE\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ProtectedDocsListQuery {\n    name?: string;\n    provider?: string;\n    request_method?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IProxySettings;\n}\n\ninterface IProxySettings {\n    _id: string;\n    id: string;\n    proxy_id: string;\n    proxy_url: string;\n    name: string;\n    expires_at: Date;\n    url: string;\n    provider: string;\n    provider_resolver: IAPIKeyProtector;\n    request_method: string;\n    expires_in: number;\n    secured_by: string;\n    secured: boolean;\n    allowed_api_key: IAPIKeyProtector;\n    allowed_scopes: string[];\n    allowed_roles: string[];\n    shared_with: string[];\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs-protector-srv","settings","search"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"135533f7-4fe0-4e70-af41-47573acbc398"}],"id":"fb6f0c18-f162-43f3-981f-67277ed22e75","_postman_id":"fb6f0c18-f162-43f3-981f-67277ed22e75","description":""},{"name":"Usage","item":[{"name":"Resolve URL","id":"92f3e541-573e-4cde-b982-f6da7e4a17e3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/docs/:proxy_id","description":"<h1 id=\"description\">Description</h1>\n<p>Resolve URL</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and requires <code>proxy_id</code> in the request params.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>proxy_id: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">redirect to resolved url\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs",":proxy_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"85b61eec-a673-4d48-af90-9030e16fc5f4","type":"string","value":"","key":"proxy_id"}]}},"response":[],"_postman_id":"92f3e541-573e-4cde-b982-f6da7e4a17e3"},{"name":"Resolve URL","id":"6a335641-aff3-4209-964e-d04e5bbdc1e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"provider\":\"NONE\",\n\t\"name\":\"CidaasNewsLetter1\",\n\t\"url\":\"https://google.com\",\n\t\"request_method\":\"GET\",\n\t\"secured\":true\n}"},"url":"{{baseurl}}/docs/:proxy_id","description":"<h1 id=\"description\">Description</h1>\n<p>Resolve URL</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and requires <code>proxy_id</code> in the request params.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>proxy_id: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">redirect to resolved url\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs",":proxy_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"9fd78e11-2997-479b-8968-374d84e91fe6","type":"string","value":"","key":"proxy_id"}]}},"response":[],"_postman_id":"6a335641-aff3-4209-964e-d04e5bbdc1e4"}],"id":"9533c6f4-276d-4aae-b554-110f5ced1357","_postman_id":"9533c6f4-276d-4aae-b554-110f5ced1357","description":""},{"name":"URL Shortner","item":[{"name":"Create Short URL","id":"b2a6f07d-42e3-4188-a4c6-33b7dde6d560","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\"url\":\"https://cidaas-management.cidaas.de/authz-srv/authz?client_id=378abf89-f861-41d9-a7f6-0b38d22fbf98&response_type=token&redirect_uri=https%3A%2F%2Fcidaas-management.cidaas.de%2Fuser-profile%2Feditprofile\"\n}"},"url":"{{baseurl}}/docs-protector-srv/shortner/short","description":"<h1 id=\"description\">Description</h1>\n<p>Create Short URL</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups and Roles Required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and requires url in the request body.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IURLShortnerSettings {\n    _id: string;\n    id: string;\n    short_id: string;\n    short_url: string;\n    url: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IURLShortnerSettings;\n}\n\ninterface IURLShortnerSettings {\n    _id: string;\n    id: string;\n    short_id: string;\n    short_url: string;\n    url: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["docs-protector-srv","shortner","short"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2a6f07d-42e3-4188-a4c6-33b7dde6d560"}],"id":"b1dbe584-eb37-4c6d-9dcc-81e2b3e175cf","_postman_id":"b1dbe584-eb37-4c6d-9dcc-81e2b3e175cf","description":""}],"id":"82410b98-ee0f-4284-9bad-c8bf45cfae5f","_postman_id":"82410b98-ee0f-4284-9bad-c8bf45cfae5f","description":""},{"name":"Notification","item":[{"name":"Sent Items","item":[{"name":"Email","id":"71d5ec9b-1fa3-439e-b832-7d69c363fb29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\n}"},"url":"{{baseurl}}/notification-srv/sentitems/email","description":"<h1 id=\"description\">Description</h1>\n<p>E-mail Notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and <code>resource_type</code> in the request params.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface SearchSendItems {\n    startDate?: string | number;\n    endDate?: string | number;\n    to?: string;\n    subject?: string;\n    skip?: number;\n    take?: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: SentItemsResponse;\n}\n\ninterface IEmailConfig {\n    vendor: string;\n    key: string;\n    secret: string;\n    replyTo: string;\n    smtp_host_name: string;\n    smtp_port: string;\n}\n\ninterface ISentItemEventStatus {\n    _id: string;\n    id: string;\n    status: string;\n    eventTime: Date;\n}\n\ninterface IEmailSentItems {\n    _id: string;\n    id: string;\n    to: string;\n    from: string;\n    fromname: string;\n    ack_id: string;\n    subject: string;\n    html: string;\n    config: IEmailConfig;\n    event_status: ISentItemEventStatus[];\n    raw_event_status: any[];\n    createdTime: Date,\n}\n\ninterface SentItemsResponse {\n    count?: number;\n    sentItems?: IEmailSentItems[];\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["notification-srv","sentitems","email"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"71d5ec9b-1fa3-439e-b832-7d69c363fb29"},{"name":"SMS","id":"f88aa94c-484a-46d6-bba1-ea699d05a702","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\n}"},"url":"{{baseurl}}/notification-srv/sentitems/sms","description":"<h1 id=\"description\">Description</h1>\n<p>SMS Notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and <code>resource_type</code> in the request params.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface SearchSendItems {\n    startDate?: string | number;\n    endDate?: string | number;\n    to?: string;\n    subject?: string;\n    skip?: number;\n    take?: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: SentItemsResponse;\n}\n\ninterface ISentItemEventStatus {\n    _id: string;\n    id: string;\n    status: string;\n    eventTime: Date;\n}\n\ninterface ISMSConfig {\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n}\n\ninterface ISMSSentItems {\n    _id: string;\n    id: string;\n    to: string;\n    ack_id: string;\n    from: string;\n    message: string;\n    config: ISMSConfig;\n    event_status: ISentItemEventStatus[];\n    raw_event_status: any[];\n    createdTime: Date,\n}\n\ninterface SentItemsResponse {\n    count?: number;\n    sentItems?: ISMSSentItems[];\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["notification-srv","sentitems","sms"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f88aa94c-484a-46d6-bba1-ea699d05a702"},{"name":"IVR","id":"d735d286-036e-4b2a-a552-6ccd0c6d22f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\n}"},"url":"{{baseurl}}/notification-srv/sentitems/ivr","description":"<h1 id=\"description\">Description</h1>\n<p>IVR Notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and <code>resource_type</code> in the request params.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface SearchSendItems {\n    startDate?: string | number;\n    endDate?: string | number;\n    to?: string;\n    subject?: string;\n    skip?: number;\n    take?: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: SentItemsResponse;\n}\n\ninterface IIVRConfig {\n    vendor: string;\n    key: string;\n    secret: string;\n    from: string;\n}\n\ninterface ISentItemEventStatus {\n    _id: string;\n    id: string;\n    status: string;\n    eventTime: Date;\n}\n\ninterface IIVRSentItems {\n    _id: string;\n    id: string;\n    to: string;\n    ack_id: string;\n    from: string;\n    xmlUrl: string;\n    config: IIVRConfig;\n    event_status: ISentItemEventStatus[];\n    raw_event_status: any[];\n}\n\nclass SentItemsResponse {\n    count?: number;\n    sentItems?: IIVRSentItems[];\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["notification-srv","sentitems","ivr"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d735d286-036e-4b2a-a552-6ccd0c6d22f1"},{"name":"Push","id":"fc4cbb3b-7b54-40f2-929b-48c6f42b169f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\n}"},"url":"{{baseurl}}/notification-srv/sentitems/push","description":"<h1 id=\"description\">Description</h1>\n<p>Push Notification</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:read\", \"cidaas:write\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_READ\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and <code>resource_type</code> in the request params.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface SearchSendItems {\n    startDate?: string | number;\n    endDate?: string | number;\n    to?: string;\n    subject?: string;\n    skip?: number;\n    take?: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: SentItemsResponse;\n}\n\ninterface IPushConfig {\n    tenantKey: string;\n    vendor: string;\n    key: string;\n    secret: string;\n}\n\ninterface IPushSentItems {\n    _id: string;\n    id: string;\n    to: string;\n    ack_id: string;\n    pushEntity: any;\n    config: IPushConfig;\n    createdTime: Date,\n}\n\nclass SentItemsResponse {\n    count?: number;\n    sentItems?: IPushSentItems[];\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["notification-srv","sentitems","push"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fc4cbb3b-7b54-40f2-929b-48c6f42b169f"}],"id":"3cb55b6f-fa15-47e4-bf6d-bd878e3e1915","event":[{"listen":"prerequest","script":{"id":"43574b8e-9b88-4d00-8b0f-64662562309f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f0e3e90b-3015-40bc-9a08-31f607b03bb6","type":"text/javascript","exec":[""]}}],"_postman_id":"3cb55b6f-fa15-47e4-bf6d-bd878e3e1915","description":""},{"name":"Email","item":[{"name":"Send Email","id":"5e8089e1-e08b-4150-b16a-3245aa485b45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to\": [\n        \"vimalprakashts@gmail.com\",\n        \"dineshbabuspr@gmail.com\"\n    ],\n    \"from\": \"noreply@sender.com\",\n    \"fromname\": \"sendername\",\n    \"templateKey\": \"TEST_TEMP_001\",\n    \"usageType\": \"GENERAL\",\n    \"acceptLanguage\": \"en\",\n    \"sender_names\":[\"boxsmtp\"],\n    \"userEmailObject\": [\n        {\n            \"to\": \"dineshbabuspr@gmail.com\",\n            \"emailObject\": {\n                \"subject\": {\n                    \"name\": \"dinesh\"\n                },\n                \"content\": {\n                    \"name\": \"dinesh\"\n                }\n            }\n        }\n    ],\n    \"emailObject\": {\n        \"subject\": {\n            \"name\": \"vimal\"\n        },\n        \"content\": {\n            \"name\": \"vimal\"\n        }\n    }\n}"},"url":"{{baseurl}}/notification-srv/email/send","description":"<h1 id=\"description\">Description</h1>\n<p>Send E-mail</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:sms_send\", \"cidaas:communication_send\", \"cidaas:write\", \"cidaas:read\"\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SMS_ADMIN\", \"COMMUNICATION_ADMIN\"]\n            }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface EmailEntity {\n    to: string[];\n    from: string; // NOT ALL THE PROVIDERS allow this from to set (example: gmail smtp)\n    fromname: string; // NOT ALL THE PROVIDERS allow this from name  (example: gmail smtp)\n    subject: string;\n    content: string;\n    emailObject: EmailObject;\n    userEmailObject: UserEmailObject[];\n    templateKey: string;\n    processingType: string;\n    usageType: string;\n    verificationType: string;\n    acceptLanguage: string;\n    sub: string;\n    data: string;\n    client_id: string;\n    sender_names:string[];  // This will deside which communication provider we need to use. example : cidaas's system or your own provider like SMTP etc..\n}\n\ninterface UserEmailObject {\n    to: string;\n    emailObject: EmailObject;\n}\n\ninterface EmailObject {\n    subject: any;\n    content: any;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ISentItem[];\n}\n\ninterface ISentItem {\n    ack_id: string;\n    to: string;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["notification-srv","email","send"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e8089e1-e08b-4150-b16a-3245aa485b45"},{"name":"Send Email With Attachment","id":"af43da3d-1ee8-4a26-886d-53210062881a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[{"key":"data","value":"{\"to\":[\"vimalprakashts@gmail.com\"],\"templateKey\":\"TEST_TEMPLATE_1\",\"usageType\":\"GENERAL\",\"acceptLanguage\":\"en\",\"emailObject\":{\"subject\":{\"name\":\"vimal\",\"companyname\":\"cidaas\"},\"content\":{\"name\":\"vimal\",\"companyname\":\"cidaas\"}}}","type":"text"},{"key":"attachment","value":null,"type":"file"},{"key":"attachment","value":null,"type":"file"}]},"url":"{{baseurl}}/notification-srv/email/send","description":"<h1 id=\"description\">Description</h1>\n<p>Send E-mail with Attachment</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:sms_send\", \"cidaas:communication_send\", \"cidaas:write\", \"cidaas:read\"\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SMS_ADMIN\", \"COMMUNICATION_ADMIN\"]\n            }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface EmailEntity {\n    to: string[];\n    from: string;\n    fromname: string;\n    subject: string;\n    content: string;\n    emailObject: EmailObject;\n    userEmailObject: UserEmailObject[];\n    templateKey: string;\n    processingType: string;\n    usageType: string;\n    verificationType: string;\n    acceptLanguage: string;\n    sub: string;\n    data: string;\n    client_id: string;\n}\n\ninterface UserEmailObject {\n    to: string;\n    emailObject: EmailObject;\n}\n\ninterface EmailObject {\n    subject: any;\n    content: any;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: EmailSendEntity[];\n}\n\ninterface ISenderConfig {\n    _id: string;\n    id: string;\n    from_name: string;\n    from_email: string;\n    sender_provider: string;\n\n\ninterface EmailAttachmentEntity {\n    content: string = \"\";\n    filename: string = \"\";\n    type: string = \"\";\n    disposition: string = \"\";\n    contentId: string = \"\";\n}\n\ninterface EmailSendEntity {\n    to: string = \"\";\n    fromname: string = \"\";\n    from: string = \"\";\n    subject: string = \"\";\n    content: string = \"\";\n    cidaas_message_id: string = \"\";\n    attachements?: EmailAttachmentEntity[];\n    ack_id: string = \"\";\n    sender_config?: ISenderConfig\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["notification-srv","email","send"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"af43da3d-1ee8-4a26-886d-53210062881a"}],"id":"7e8e56e6-fd64-4ba9-b082-2432a12eac1f","_postman_id":"7e8e56e6-fd64-4ba9-b082-2432a12eac1f","description":""}],"id":"48938b1a-6286-42d3-b9ab-1d08a55f7f22","_postman_id":"48938b1a-6286-42d3-b9ab-1d08a55f7f22","description":""},{"name":"Custom","item":[{"name":"KeyStore","item":[{"name":"Create Key","id":"dcbf7b85-a4c2-4c06-8050-58df6b3e4ae2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"kid\":\"testert3\",\n\t\"sub\":\"712262bf-1e78-4737-9f13-d800feb66617\",\n\t\"bit\":2014,\n\t\"meta\":{\n\t\t\"custom_variable_name_1\":\"value1\",\n\t\t\"custom_variable_name_2\":\"value2\"\n\t}\n}"},"url":"{{baseurl}}/apps-srv/keystore/custom/create","description":"<h1 id=\"description\">Description</h1>\n<p>Create Key</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\",  \"cidaas:custom_security_key_write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"CUSTOME_SECURITY_KEY_ADMIN\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and <code>kid</code> or <code>sub</code> required in request body.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ICustomAppKeySettings {\n    id: string,\n    _id: string,\n    keyType: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    kid: string;\n    sub: string;\n    meta: any;\n    bit: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ICustomAppKeySettings;\n}\n\ninterface ICustomAppKeySettings {\n    id: string,\n    _id: string,\n    keyType: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    kid: string;\n    sub: string;\n    meta: any;\n    bit: number;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","keystore","custom","create"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"4abffbb5-20a1-4d8e-ba01-1e4bce51ad31","name":"Create Key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"kid\":\"fb5de2fb-9f0d-433f-9655-b61613012577\",\n\t\"sub\":\"712262bf-1e78-4737-9f13-d800feb66617\",\n\t\"bit\":1024,\n\t\"meta\":{\n\t\t\"custom_variable_name_1\":\"value1\",\n\t\t\"custom_variable_name_2\":\"value2\"\n\t}\n}"},"url":"{{baseurl}}/apps-srv/keystore/custom/create"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 01 Feb 2019 08:53:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2893"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"b4d-hns/h7tEK/aojaJkIzrmMN4/cas\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"keyType\": \"CUSTOM\",\n        \"bit\": 1024,\n        \"className\": \"de.cidaas.core.db.CustomAppKeySettings\",\n        \"_id\": \"f5870348-70a0-4939-869a-2a420553f978\",\n        \"kid\": \"fb5de2fb-9f0d-433f-9655-b61613012577\",\n        \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n        \"meta\": {\n            \"custom_variable_name_1\": \"value1\",\n            \"custom_variable_name_2\": \"value2\"\n        },\n        \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDH+KX2WpZIm8RsTH64cXeZjZAO\\r\\n/suFiUo3fMjhrN6WMoKOremZe7XcG0gHz5SvpUSRtquAd7IxN7GFCeAXZ7Zprs98\\r\\nLy6yD58dAnmRodJ0I1iIUMmdW2IJxnas/xuH4nCFkIHiIspVnoAQl5eDmHf75aJK\\r\\nLrTywA8mh4ac3Ez1lwIDAQAB\\r\\n-----END PUBLIC KEY-----\\r\\n\",\n        \"publicKeyJWK\": {\n            \"kty\": \"RSA\",\n            \"kid\": \"fb5de2fb-9f0d-433f-9655-b61613012577\",\n            \"e\": \"AQAB\",\n            \"n\": \"x_il9lqWSJvEbEx-uHF3mY2QDv7LhYlKN3zI4azeljKCjq3pmXu13BtIB8-Ur6VEkbargHeyMTexhQngF2e2aa7PfC8usg-fHQJ5kaHSdCNYiFDJnVtiCcZ2rP8bh-JwhZCB4iLKVZ6AEJeXg5h3--WiSi608sAPJoeGnNxM9Zc\"\n        },\n        \"privateKey\": \"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIICXAIBAAKBgQDH+KX2WpZIm8RsTH64cXeZjZAO/suFiUo3fMjhrN6WMoKOremZ\\r\\ne7XcG0gHz5SvpUSRtquAd7IxN7GFCeAXZ7Zprs98Ly6yD58dAnmRodJ0I1iIUMmd\\r\\nW2IJxnas/xuH4nCFkIHiIspVnoAQl5eDmHf75aJKLrTywA8mh4ac3Ez1lwIDAQAB\\r\\nAoGAbEcIpjI6uaoOW4239+sIlY5/eH8ieHX0R8M7imbuR2mmI9eraz3/JOVoxUHz\\r\\nAoB8dmHwzykAxYGgj6bfPg0cSXshjIKvW8qUElk1in+BG3iL60tAgW+Daau9Vt/x\\r\\n0HFZYMlPigwbs6+eRaHBSm37IpO+KD0cWotVUFyEH4alysECQQD30+4tQr4nVfXM\\r\\nlXbk9JiI+eEZlYN/4VLSwTF/52iiYKIXX93CDp5PyW9XbUgyF8fKj+hvKXVEoMcs\\r\\nrsHKTwtxAkEAzpC7EK7GDg9RcnYmKEmhL4TJw0YwZOk9FTfovPdC0mT4iI3mzXOm\\r\\nBwFjT2FNoMUcSvfc5f3okhlR/twY6yQ9hwJAYs96/UzJKEHbuPA28V6cmrCWkW7N\\r\\neWVLcoBYzhhj3aoNtqggcMkHUeSMoh0OVfqpTBhIolmzSeOYxjX/Sjxt4QJATFhV\\r\\nqz7NWJj0w1dDlxRPjJ6Ja7DfZgyGVPdK/7xraBOFgALiUQDzVhd/OvF9nXP8lwCx\\r\\nFhgYAxd0pLt4QkAstQJBAIkiFpt5LXNAnYnknQ5NJc6f13GDJIG1JGu1HNb9J0cW\\r\\n5TTVkSOyQjayzRlQB6inSCCdDhxxw4xVA4Wq3cVQLt4=\\r\\n-----END RSA PRIVATE KEY-----\\r\\n\",\n        \"privateKeyJWK\": {\n            \"kty\": \"RSA\",\n            \"kid\": \"fb5de2fb-9f0d-433f-9655-b61613012577\",\n            \"e\": \"AQAB\",\n            \"n\": \"x_il9lqWSJvEbEx-uHF3mY2QDv7LhYlKN3zI4azeljKCjq3pmXu13BtIB8-Ur6VEkbargHeyMTexhQngF2e2aa7PfC8usg-fHQJ5kaHSdCNYiFDJnVtiCcZ2rP8bh-JwhZCB4iLKVZ6AEJeXg5h3--WiSi608sAPJoeGnNxM9Zc\",\n            \"d\": \"bEcIpjI6uaoOW4239-sIlY5_eH8ieHX0R8M7imbuR2mmI9eraz3_JOVoxUHzAoB8dmHwzykAxYGgj6bfPg0cSXshjIKvW8qUElk1in-BG3iL60tAgW-Daau9Vt_x0HFZYMlPigwbs6-eRaHBSm37IpO-KD0cWotVUFyEH4alysE\",\n            \"p\": \"99PuLUK-J1X1zJV25PSYiPnhGZWDf-FS0sExf-doomCiF1_dwg6eT8lvV21IMhfHyo_obyl1RKDHLK7Byk8LcQ\",\n            \"q\": \"zpC7EK7GDg9RcnYmKEmhL4TJw0YwZOk9FTfovPdC0mT4iI3mzXOmBwFjT2FNoMUcSvfc5f3okhlR_twY6yQ9hw\",\n            \"dp\": \"Ys96_UzJKEHbuPA28V6cmrCWkW7NeWVLcoBYzhhj3aoNtqggcMkHUeSMoh0OVfqpTBhIolmzSeOYxjX_Sjxt4Q\",\n            \"dq\": \"TFhVqz7NWJj0w1dDlxRPjJ6Ja7DfZgyGVPdK_7xraBOFgALiUQDzVhd_OvF9nXP8lwCxFhgYAxd0pLt4QkAstQ\",\n            \"qi\": \"iSIWm3ktc0CdieSdDk0lzp_XcYMkgbUka7Uc1v0nRxblNNWRI7JCNrLNGVAHqKdIIJ0OHHHDjFUDhardxVAu3g\"\n        },\n        \"createdTime\": \"2019-02-01T08:53:34.185Z\",\n        \"updatedTime\": \"2019-02-01T08:53:34.185Z\",\n        \"__v\": 0,\n        \"id\": \"f5870348-70a0-4939-869a-2a420553f978\"\n    }\n}"}],"_postman_id":"dcbf7b85-a4c2-4c06-8050-58df6b3e4ae2"},{"name":"Find Key","id":"11fdbb0e-b2ae-4015-8f81-0e05bbb7edb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"kid\":\"fb5de2fb-9f0d-433f-9655-b61613012577\",\n\t\"sub\":\"712262bf-1e78-4737-9f13-d800feb66617\",\n\t\"meta\":{\n\t\t\"custom_variable_name_1\":\"value1\",\n\t\t\"custom_variable_name_2\":\"value2\"\n\t}\n}"},"url":"{{baseurl}}/apps-srv/keystore/custom/find","description":"<h1 id=\"description\">Description</h1>\n<p>Find Key</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:custom_security_key_read\",  \"cidaas:custom_security_key_write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"CUSTOME_SECURITY_KEY_ADMIN\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and kid or sub required in request body.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ICustomAppKeySettings {\n    id: string,\n    _id: string,\n    keyType: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    kid: string;\n    sub: string;\n    meta: any;\n    bit: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ICustomAppKeySettings;\n}\n\ninterface ICustomAppKeySettings {\n    id: string,\n    _id: string,\n    keyType: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    kid: string;\n    sub: string;\n    meta: any;\n    bit: number;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","keystore","custom","find"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"efaee7d3-bf0b-45b0-b7e5-948808f323b1","name":"Find Key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"kid\":\"fb5de2fb-9f0d-433f-9655-b61613012577\",\n\t\"sub\":\"712262bf-1e78-4737-9f13-d800feb66617\",\n\t\"meta\":{\n\t\t\"custom_variable_name_1\":\"value1\",\n\t\t\"custom_variable_name_2\":\"value2\"\n\t}\n}"},"url":"{{baseurl}}/apps-srv/keystore/custom/find"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 01 Feb 2019 09:00:32 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2895"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"b4f-0EptjXgxwukzHusEb/7CdK3sTe8\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"keyType\": \"CUSTOM\",\n            \"bit\": 1024,\n            \"className\": \"de.cidaas.core.db.CustomAppKeySettings\",\n            \"_id\": \"f5870348-70a0-4939-869a-2a420553f978\",\n            \"kid\": \"fb5de2fb-9f0d-433f-9655-b61613012577\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"meta\": {\n                \"custom_variable_name_1\": \"value1\",\n                \"custom_variable_name_2\": \"value2\"\n            },\n            \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDH+KX2WpZIm8RsTH64cXeZjZAO\\r\\n/suFiUo3fMjhrN6WMoKOremZe7XcG0gHz5SvpUSRtquAd7IxN7GFCeAXZ7Zprs98\\r\\nLy6yD58dAnmRodJ0I1iIUMmdW2IJxnas/xuH4nCFkIHiIspVnoAQl5eDmHf75aJK\\r\\nLrTywA8mh4ac3Ez1lwIDAQAB\\r\\n-----END PUBLIC KEY-----\\r\\n\",\n            \"publicKeyJWK\": {\n                \"kty\": \"RSA\",\n                \"kid\": \"fb5de2fb-9f0d-433f-9655-b61613012577\",\n                \"e\": \"AQAB\",\n                \"n\": \"x_il9lqWSJvEbEx-uHF3mY2QDv7LhYlKN3zI4azeljKCjq3pmXu13BtIB8-Ur6VEkbargHeyMTexhQngF2e2aa7PfC8usg-fHQJ5kaHSdCNYiFDJnVtiCcZ2rP8bh-JwhZCB4iLKVZ6AEJeXg5h3--WiSi608sAPJoeGnNxM9Zc\"\n            },\n            \"privateKey\": \"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIICXAIBAAKBgQDH+KX2WpZIm8RsTH64cXeZjZAO/suFiUo3fMjhrN6WMoKOremZ\\r\\ne7XcG0gHz5SvpUSRtquAd7IxN7GFCeAXZ7Zprs98Ly6yD58dAnmRodJ0I1iIUMmd\\r\\nW2IJxnas/xuH4nCFkIHiIspVnoAQl5eDmHf75aJKLrTywA8mh4ac3Ez1lwIDAQAB\\r\\nAoGAbEcIpjI6uaoOW4239+sIlY5/eH8ieHX0R8M7imbuR2mmI9eraz3/JOVoxUHz\\r\\nAoB8dmHwzykAxYGgj6bfPg0cSXshjIKvW8qUElk1in+BG3iL60tAgW+Daau9Vt/x\\r\\n0HFZYMlPigwbs6+eRaHBSm37IpO+KD0cWotVUFyEH4alysECQQD30+4tQr4nVfXM\\r\\nlXbk9JiI+eEZlYN/4VLSwTF/52iiYKIXX93CDp5PyW9XbUgyF8fKj+hvKXVEoMcs\\r\\nrsHKTwtxAkEAzpC7EK7GDg9RcnYmKEmhL4TJw0YwZOk9FTfovPdC0mT4iI3mzXOm\\r\\nBwFjT2FNoMUcSvfc5f3okhlR/twY6yQ9hwJAYs96/UzJKEHbuPA28V6cmrCWkW7N\\r\\neWVLcoBYzhhj3aoNtqggcMkHUeSMoh0OVfqpTBhIolmzSeOYxjX/Sjxt4QJATFhV\\r\\nqz7NWJj0w1dDlxRPjJ6Ja7DfZgyGVPdK/7xraBOFgALiUQDzVhd/OvF9nXP8lwCx\\r\\nFhgYAxd0pLt4QkAstQJBAIkiFpt5LXNAnYnknQ5NJc6f13GDJIG1JGu1HNb9J0cW\\r\\n5TTVkSOyQjayzRlQB6inSCCdDhxxw4xVA4Wq3cVQLt4=\\r\\n-----END RSA PRIVATE KEY-----\\r\\n\",\n            \"privateKeyJWK\": {\n                \"kty\": \"RSA\",\n                \"kid\": \"fb5de2fb-9f0d-433f-9655-b61613012577\",\n                \"e\": \"AQAB\",\n                \"n\": \"x_il9lqWSJvEbEx-uHF3mY2QDv7LhYlKN3zI4azeljKCjq3pmXu13BtIB8-Ur6VEkbargHeyMTexhQngF2e2aa7PfC8usg-fHQJ5kaHSdCNYiFDJnVtiCcZ2rP8bh-JwhZCB4iLKVZ6AEJeXg5h3--WiSi608sAPJoeGnNxM9Zc\",\n                \"d\": \"bEcIpjI6uaoOW4239-sIlY5_eH8ieHX0R8M7imbuR2mmI9eraz3_JOVoxUHzAoB8dmHwzykAxYGgj6bfPg0cSXshjIKvW8qUElk1in-BG3iL60tAgW-Daau9Vt_x0HFZYMlPigwbs6-eRaHBSm37IpO-KD0cWotVUFyEH4alysE\",\n                \"p\": \"99PuLUK-J1X1zJV25PSYiPnhGZWDf-FS0sExf-doomCiF1_dwg6eT8lvV21IMhfHyo_obyl1RKDHLK7Byk8LcQ\",\n                \"q\": \"zpC7EK7GDg9RcnYmKEmhL4TJw0YwZOk9FTfovPdC0mT4iI3mzXOmBwFjT2FNoMUcSvfc5f3okhlR_twY6yQ9hw\",\n                \"dp\": \"Ys96_UzJKEHbuPA28V6cmrCWkW7NeWVLcoBYzhhj3aoNtqggcMkHUeSMoh0OVfqpTBhIolmzSeOYxjX_Sjxt4Q\",\n                \"dq\": \"TFhVqz7NWJj0w1dDlxRPjJ6Ja7DfZgyGVPdK_7xraBOFgALiUQDzVhd_OvF9nXP8lwCxFhgYAxd0pLt4QkAstQ\",\n                \"qi\": \"iSIWm3ktc0CdieSdDk0lzp_XcYMkgbUka7Uc1v0nRxblNNWRI7JCNrLNGVAHqKdIIJ0OHHHDjFUDhardxVAu3g\"\n            },\n            \"createdTime\": \"2019-02-01T08:53:34.185Z\",\n            \"updatedTime\": \"2019-02-01T08:53:34.185Z\",\n            \"__v\": 0,\n            \"id\": \"f5870348-70a0-4939-869a-2a420553f978\"\n        }\n    ]\n}"}],"_postman_id":"11fdbb0e-b2ae-4015-8f81-0e05bbb7edb5"},{"name":"Search Lite","id":"9a54323d-842a-4694-9755-ea3e3cbce1c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"kid\":\"fb5de2fb-9f0d-433f-9655-b61613012577\",\n\t\"sub\":\"712262bf-1e78-4737-9f13-d800feb66617\",\n\t\"meta\":{\n\t\t\"custom_variable_name_1\":\"value1\",\n\t\t\"custom_variable_name_2\":\"value2\"\n\t}\n}"},"url":"{{baseurl}}/apps-srv/keystore/custom/search","description":"<h1 id=\"description\">Description</h1>\n<p>Search Key Lite</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:custom_security_key_read\",  \"cidaas:custom_security_key_write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"CUSTOME_SECURITY_KEY_ADMIN\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and kid or sub required in request body.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ICustomAppKeySettings {\n    id: string,\n    _id: string,\n    keyType: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    kid: string;\n    sub: string;\n    meta: any;\n    bit: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ICustomAppKeySettings;\n}\n\ninterface ICustomAppKeySettings {\n    id: string,\n    _id: string,\n    keyType: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    kid: string;\n    sub: string;\n    meta: any;\n    bit: number;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","keystore","custom","search"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"90db84df-8da0-422a-aa4b-9e0f2be3383c","name":"Search Lite 3","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\n\t\"sub\":\"712262bf-1e78-4737-9f13-d800feb66617\",\n\t\"meta\":{\n\t\t\"custom_variable_name_1\":\"value1\",\n\t\t\"custom_variable_name_2\":\"value2\"\n\t}\n}"},"url":"{{baseurl}}/apps-srv/keystore/custom/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 01 Feb 2019 09:01:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"830"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"33e-SxXPYshUEN4hSmsPmLqoMDMErbE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"f5870348-70a0-4939-869a-2a420553f978\",\n            \"kid\": \"fb5de2fb-9f0d-433f-9655-b61613012577\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"id\": \"f5870348-70a0-4939-869a-2a420553f978\"\n        },\n        {\n            \"_id\": \"f6a3e8dc-e512-426a-aebd-cd13143b6538\",\n            \"kid\": \"testert\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"id\": \"f6a3e8dc-e512-426a-aebd-cd13143b6538\"\n        },\n        {\n            \"_id\": \"26c2f21c-9b0d-4af9-a44a-59d14be48b34\",\n            \"kid\": \"testert1\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"id\": \"26c2f21c-9b0d-4af9-a44a-59d14be48b34\"\n        },\n        {\n            \"_id\": \"55787ac0-7e85-4047-b301-b485c8031d9c\",\n            \"kid\": \"testert2\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"id\": \"55787ac0-7e85-4047-b301-b485c8031d9c\"\n        },\n        {\n            \"_id\": \"61e75ffc-e9e6-43d7-8375-382d026141f3\",\n            \"kid\": \"testert3\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"id\": \"61e75ffc-e9e6-43d7-8375-382d026141f3\"\n        }\n    ]\n}"},{"id":"ab213338-f3c9-421a-bf1a-d24765ee33d4","name":"Search Lite 1","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"kid\":\"fb5de2fb-9f0d-433f-9655-b61613012577\"\n\n}"},"url":"{{baseurl}}/apps-srv/keystore/custom/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 01 Feb 2019 09:01:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"219"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"db-Qyh07DUwcKbf97kO9UJWRmXT05g\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"f5870348-70a0-4939-869a-2a420553f978\",\n            \"kid\": \"fb5de2fb-9f0d-433f-9655-b61613012577\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"id\": \"f5870348-70a0-4939-869a-2a420553f978\"\n        }\n    ]\n}"},{"id":"c7f5a60a-b8d0-4794-b554-152d9f5b6ace","name":"Search Lite 2","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\n\t\"sub\":\"712262bf-1e78-4737-9f13-d800feb66617\"\n}"},"url":"{{baseurl}}/apps-srv/keystore/custom/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 01 Feb 2019 09:01:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"830"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"33e-SxXPYshUEN4hSmsPmLqoMDMErbE\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"_id\": \"f5870348-70a0-4939-869a-2a420553f978\",\n            \"kid\": \"fb5de2fb-9f0d-433f-9655-b61613012577\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"id\": \"f5870348-70a0-4939-869a-2a420553f978\"\n        },\n        {\n            \"_id\": \"f6a3e8dc-e512-426a-aebd-cd13143b6538\",\n            \"kid\": \"testert\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"id\": \"f6a3e8dc-e512-426a-aebd-cd13143b6538\"\n        },\n        {\n            \"_id\": \"26c2f21c-9b0d-4af9-a44a-59d14be48b34\",\n            \"kid\": \"testert1\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"id\": \"26c2f21c-9b0d-4af9-a44a-59d14be48b34\"\n        },\n        {\n            \"_id\": \"55787ac0-7e85-4047-b301-b485c8031d9c\",\n            \"kid\": \"testert2\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"id\": \"55787ac0-7e85-4047-b301-b485c8031d9c\"\n        },\n        {\n            \"_id\": \"61e75ffc-e9e6-43d7-8375-382d026141f3\",\n            \"kid\": \"testert3\",\n            \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n            \"id\": \"61e75ffc-e9e6-43d7-8375-382d026141f3\"\n        }\n    ]\n}"}],"_postman_id":"9a54323d-842a-4694-9755-ea3e3cbce1c9"},{"name":"Rotate Key","id":"7a55716b-576c-4828-8fb6-36cd182c9567","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/apps-srv/keystore/custom/rotate/fb5de2fb-9f0d-433f-9655-b61613012577","description":"<h1 id=\"description\">Description</h1>\n<p>Rotate Key</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:custom_security_key_write\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"CUSTOME_SECURITY_KEY_ADMIN\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and kid required in request param.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>kid: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ICustomAppKeySettings;\n}\n\ninterface ICustomAppKeySettings {\n    id: string,\n    _id: string,\n    keyType: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    kid: string;\n    sub: string;\n    meta: any;\n    bit: number;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : AUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","keystore","custom","rotate","fb5de2fb-9f0d-433f-9655-b61613012577"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"41b9aa4a-dba4-4663-a1e5-9e783b084938","name":"Rotate Key","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/apps-srv/keystore/custom/rotate/fb5de2fb-9f0d-433f-9655-b61613012577"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 01 Feb 2019 09:02:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2893"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"b4d-lsqDIm+MaDKmmxcFZGnGyfdzdpU\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"keyType\": \"CUSTOM\",\n        \"bit\": 1024,\n        \"className\": \"de.cidaas.core.db.CustomAppKeySettings\",\n        \"_id\": \"f5870348-70a0-4939-869a-2a420553f978\",\n        \"kid\": \"fb5de2fb-9f0d-433f-9655-b61613012577\",\n        \"sub\": \"712262bf-1e78-4737-9f13-d800feb66617\",\n        \"meta\": {\n            \"custom_variable_name_1\": \"value1\",\n            \"custom_variable_name_2\": \"value2\"\n        },\n        \"publicKey\": \"-----BEGIN PUBLIC KEY-----\\r\\nMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCG1tCPAodMM4jFBZAODb0B2JKI\\r\\nlNrZ6kHShB2yA3G3MkFK57hr3xjnW9b5B+31F6dJqOlHQUQUbd0yrYhYdy5TEmv7\\r\\nx+dUOjHkm9xZ5VPNPpZZumVhJTBgc9EkRgzaMu8PzSaprjdhwRdkheojMT+9aN/Q\\r\\n0jR7hKMKu2K8POVmjQIDAQAB\\r\\n-----END PUBLIC KEY-----\\r\\n\",\n        \"publicKeyJWK\": {\n            \"kty\": \"RSA\",\n            \"kid\": \"cb8d2080-e932-417a-9761-e5f1c3bf9c79\",\n            \"e\": \"AQAB\",\n            \"n\": \"htbQjwKHTDOIxQWQDg29AdiSiJTa2epB0oQdsgNxtzJBSue4a98Y51vW-Qft9RenSajpR0FEFG3dMq2IWHcuUxJr-8fnVDox5JvcWeVTzT6WWbplYSUwYHPRJEYM2jLvD80mqa43YcEXZIXqIzE_vWjf0NI0e4SjCrtivDzlZo0\"\n        },\n        \"privateKey\": \"-----BEGIN RSA PRIVATE KEY-----\\r\\nMIICWwIBAAKBgQCG1tCPAodMM4jFBZAODb0B2JKIlNrZ6kHShB2yA3G3MkFK57hr\\r\\n3xjnW9b5B+31F6dJqOlHQUQUbd0yrYhYdy5TEmv7x+dUOjHkm9xZ5VPNPpZZumVh\\r\\nJTBgc9EkRgzaMu8PzSaprjdhwRdkheojMT+9aN/Q0jR7hKMKu2K8POVmjQIDAQAB\\r\\nAoGARbTXrJbKCwK5OeFeT2WayFGFr0YEvZL05DeYgmZ1axd32ZlhJaL35OL9h1Aq\\r\\nHAJWYSYJMuTypP0G1SQQ0GsMbu7GpaPflGx70FCxhNx15PM4Ydo9Scti8HAUEulU\\r\\nwaYtNMTprhoadtIXE0DCK/cPs7nJWF8bVD3Z106tO+OIyQECQQDx/ueKdLd2GAA4\\r\\n6QwP4O/hYyVAYTZY2Z2e1py+nJPQKhQ03iG9ibO3S6ogyCsJR+KM0Ljp9PKy+s+d\\r\\n2ulR2A25AkEAjqRqqZyAQ5XlgEEPOWjwwni+OCI9eMNbvoShyItVWtv90MEK9tcF\\r\\nDMYQ5ffchZNOyfJNs/4ajT5oJUtLoNipdQJABGL+h3/+I2Hj/yQaV99X+dn2PuiE\\r\\nN7AaL1rslHf6JffdTegI7Iqme1gfyWBXh1+KN8tAztzl2WC6ir4BJL6p4QJAdCo6\\r\\nIz8sxd3BNZ3GRD7OM9IZN6XK4hpXEOT6zFOMg549KlDMGRIrLqfvAxnEIZRByfzm\\r\\ngvshrH1yW0zinm9UMQJAb1wRTUxivI9HFU+BU1Xvm6bunIX8ag8TFdCPhym9iHlk\\r\\ntF55gZUdeBscPxgmBkiKVhONIpy6rc2Y81pjZUNysA==\\r\\n-----END RSA PRIVATE KEY-----\\r\\n\",\n        \"privateKeyJWK\": {\n            \"kty\": \"RSA\",\n            \"kid\": \"cb8d2080-e932-417a-9761-e5f1c3bf9c79\",\n            \"e\": \"AQAB\",\n            \"n\": \"htbQjwKHTDOIxQWQDg29AdiSiJTa2epB0oQdsgNxtzJBSue4a98Y51vW-Qft9RenSajpR0FEFG3dMq2IWHcuUxJr-8fnVDox5JvcWeVTzT6WWbplYSUwYHPRJEYM2jLvD80mqa43YcEXZIXqIzE_vWjf0NI0e4SjCrtivDzlZo0\",\n            \"d\": \"RbTXrJbKCwK5OeFeT2WayFGFr0YEvZL05DeYgmZ1axd32ZlhJaL35OL9h1AqHAJWYSYJMuTypP0G1SQQ0GsMbu7GpaPflGx70FCxhNx15PM4Ydo9Scti8HAUEulUwaYtNMTprhoadtIXE0DCK_cPs7nJWF8bVD3Z106tO-OIyQE\",\n            \"p\": \"8f7ninS3dhgAOOkMD-Dv4WMlQGE2WNmdntacvpyT0CoUNN4hvYmzt0uqIMgrCUfijNC46fTysvrPndrpUdgNuQ\",\n            \"q\": \"jqRqqZyAQ5XlgEEPOWjwwni-OCI9eMNbvoShyItVWtv90MEK9tcFDMYQ5ffchZNOyfJNs_4ajT5oJUtLoNipdQ\",\n            \"dp\": \"BGL-h3_-I2Hj_yQaV99X-dn2PuiEN7AaL1rslHf6JffdTegI7Iqme1gfyWBXh1-KN8tAztzl2WC6ir4BJL6p4Q\",\n            \"dq\": \"dCo6Iz8sxd3BNZ3GRD7OM9IZN6XK4hpXEOT6zFOMg549KlDMGRIrLqfvAxnEIZRByfzmgvshrH1yW0zinm9UMQ\",\n            \"qi\": \"b1wRTUxivI9HFU-BU1Xvm6bunIX8ag8TFdCPhym9iHlktF55gZUdeBscPxgmBkiKVhONIpy6rc2Y81pjZUNysA\"\n        },\n        \"createdTime\": \"2019-02-01T08:53:34.185Z\",\n        \"updatedTime\": \"2019-02-01T08:53:34.185Z\",\n        \"__v\": 0,\n        \"id\": \"f5870348-70a0-4939-869a-2a420553f978\"\n    }\n}"}],"_postman_id":"7a55716b-576c-4828-8fb6-36cd182c9567"},{"name":"Remove Key","id":"8f26391a-8ada-418a-9cac-1e5730a5d0fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"kid\":\"fb5de2fb-9f0d-433f-9655-b61613012577\"\n}"},"url":"{{baseurl}}/apps-srv/keystore/custom/remove","description":"<h1 id=\"description\">Description</h1>\n<p>Remove Key</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>scopes: [\"cidaas:admin_read\", \"cidaas:custom_security_key_write\", \"cidaas:custom_security_key_delete\", \"cidaas:read\"],\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n    {\n        groupId: \"CIDAAS_ADMINS\",\n        roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"CUSTOME_SECURITY_KEY_ADMIN\"]\n    }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers and kid required in request param.</p>\n<h2 id=\"params\">Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>kid: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request entity required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ICustomAppKeySettings;\n}\n\ninterface ICustomAppKeySettings {\n    id: string,\n    _id: string,\n    keyType: string;\n    publicKey: string;\n    privateKey: string;\n    publicKeyJWK: any;\n    privateKeyJWK: any;\n    kid: string;\n    sub: string;\n    meta: any;\n    bit: number;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["apps-srv","keystore","custom","remove"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"5210340c-6785-4a0f-9947-67d70ff03171","name":"Remove Key","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"kid\":\"fb5de2fb-9f0d-433f-9655-b61613012577\"\n}"},"url":"{{baseurl}}/apps-srv/keystore/custom/remove"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"nginx"},{"key":"Date","value":"Fri, 01 Feb 2019 09:02:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"53"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"ETag","value":"W/\"35-CFWhtGMReXo8M105T7hF7RdzLtc\""}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"deleted\": true\n    }\n}"}],"_postman_id":"8f26391a-8ada-418a-9cac-1e5730a5d0fa"}],"id":"98cf41ac-da46-436a-b5c3-034b6a9ac9c4","_postman_id":"98cf41ac-da46-436a-b5c3-034b6a9ac9c4","description":""}],"id":"fde44a09-cc4b-4787-a4b5-612009dc0090","_postman_id":"fde44a09-cc4b-4787-a4b5-612009dc0090","description":""},{"name":"Blocking","item":[{"name":"Create/Update Blocking","id":"7a6f8175-64a7-4fb6-a63d-30357a3347fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"enabled\": true,\n    \"block_listed_ips\": [\n        \"85.114.119.10\",\n        \"65.175.106.2\",\n        \"188.161.105.131\"\n    ],\n    \"block_listed_domains\": [\n        \"janmail.org\",\n        \"mailon.ws\",\n        \"mailinator.com\",\n        \"clsn1.com\",\n        \"seo-mailer.com\",\n        \"yahantv.shop\",\n        \"bulantoto.net\",\n        \"mywhtx.icu\",\n        \"neet123.com\",\n        \"shit.cards\",\n        \"xn------5cdbcaf0bogcrcuiptdpk2g.xn--p1ai\",\n        \"7be.org\",\n        \"xn----2019-iofqgcb4aasj1c8cik0c5k.xn--p1ai\",\n        \"brando.games\",\n        \"coincheckup.net\",\n        \"informacion-residencias.info\",\n        \"nesy.site\",\n        \"craftd.org\",\n        \"sammail.ws\",\n        \"luchocharovanii.xyz\",\n        \"5801000.xn--p1ai\",\n        \"com-04536875422364784521.top\",\n        \"xn----etbhmopjnjb2c6c.xn--p1ai\",\n        \"redflashgroup.net\",\n        \"eriell.live\",\n        \"calffiercechic.website\",\n        \"xn--marknadsfring-qmb.xyz\",\n        \"oncloud.ws\"\n    ]\n}"},"url":"{{baseurl}}/users-srv/blocker","description":"<h1 id=\"description\">Description</h1>\n<p>Create Blocking settings</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\"]\n            }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IBlockingSettings {\n    enabled: boolean; // default is true\n    subs: string[];\n    \n    // Here ips can be individual ip or ip range\n    block_listed_ips: string[];\n    excluded_ips: string[];\n    white_listed_ips: string[];\n\n\n    block_listed_domains: string[];\n    excluded_emails: string[];\n    white_listed_domains: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IBlockingSettings;\n}\n\ninterface IBlockingSettings {\n    enabled: boolean; \n    subs: string[];\n    block_listed_ips: string[];\n    excluded_ips: string[];\n    white_listed_ips: string[];\n\n    block_listed_domains: string[];\n    excluded_emails: string[];\n    white_listed_domains: string[];\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","blocker"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"3c64c32c-d2a6-4f4e-99ce-da8263ab7ab1","name":"Create/Update Blocking","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"enabled\":true,\n\t\"block_listed_domains\":[\"gmail.com2\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseurl}}/users-srv/blocker"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 Jan 2020 12:42:21 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"506"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1578400941165-e7b856f5-bea5-4b12-a6e2-7a7326fbb77c"},{"key":"ETag","value":"W/\"1fa-sXsXke+BBT/z5LSNloxG32JtTEY\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"enabled\": true,\n        \"subs\": [],\n        \"block_listed_ips\": [],\n        \"excluded_ips\": [],\n        \"white_listed_ips\": [],\n        \"block_listed_domains\": [\n            \"gmail.com2\"\n        ],\n        \"excluded_emails\": [],\n        \"white_listed_domains\": [],\n        \"className\": \"de.cidaas.management.db.BlockingSettings\",\n        \"_id\": \"f79db531-6f09-43dc-b62d-707161879461\",\n        \"createdTime\": \"2020-01-07T12:39:47.066Z\",\n        \"updatedTime\": \"2020-01-07T12:42:21.182Z\",\n        \"__ref\": \"1578400941165-e7b856f5-bea5-4b12-a6e2-7a7326fbb77c\",\n        \"__v\": 1,\n        \"id\": \"f79db531-6f09-43dc-b62d-707161879461\"\n    }\n}"}],"_postman_id":"7a6f8175-64a7-4fb6-a63d-30357a3347fc"},{"name":"Get Blocking settings","id":"f4ef8be7-f29e-4306-9037-9cee53876a8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"}],"url":"{{baseurl}}/users-srv/blocker","description":"<h1 id=\"description\">Description</h1>\n<p>Get saved Blocking settings</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",\"SETTINGS_READ\",\"SETTINGS_RESET\"]\n            }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No request payload\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IBlockingSettings;\n}\n\ninterface IBlockingSettings {\n    enabled: boolean; \n    subs: string[];\n    block_listed_ips: string[];\n    excluded_ips: string[];\n    white_listed_ips: string[];\n\n    block_listed_domains: string[];\n    excluded_emails: string[];\n    white_listed_domains: string[];\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","blocker"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"6c3cd48f-710b-41c5-ab26-f45cd982f567","name":"Get Blocking settings","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"}],"url":"{{baseurl}}/users-srv/blocker"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 Jan 2020 12:40:31 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"505"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1578400831728-cfb3d9a7-419d-4b0d-bd1c-cf7ddb67cd44"},{"key":"ETag","value":"W/\"1f9-yUZ/EuOsOoQRhZx7UsCCKXk9hAU\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=300"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"enabled\": true,\n        \"subs\": [],\n        \"block_listed_ips\": [],\n        \"excluded_ips\": [],\n        \"white_listed_ips\": [],\n        \"block_listed_domains\": [\n            \"gmail.com\"\n        ],\n        \"excluded_emails\": [],\n        \"white_listed_domains\": [],\n        \"className\": \"de.cidaas.management.db.BlockingSettings\",\n        \"_id\": \"f79db531-6f09-43dc-b62d-707161879461\",\n        \"createdTime\": \"2020-01-07T12:39:47.066Z\",\n        \"updatedTime\": \"2020-01-07T12:39:47.066Z\",\n        \"__ref\": \"1578400787033-96a5d297-9d94-41b3-bbd8-baf1ab55d0a3\",\n        \"__v\": 0,\n        \"id\": \"f79db531-6f09-43dc-b62d-707161879461\"\n    }\n}"}],"_postman_id":"f4ef8be7-f29e-4306-9037-9cee53876a8a"},{"name":"Get Blocking Report","id":"c9e80702-3db5-49c3-b706-5508688fdd05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"start_time\":\"\",\n\t\"end_time\":\"\",\n\t\"sub\":\"\",\n\t\"email\":\"\",\n\t\"ip\":\"\",\n\t\"skip\":0,\n\t\"take\":20\n}"},"url":"{{baseurl}}/users-srv/blocker/report","description":"<h1 id=\"description\">Description</h1>\n<p>Get saved Blocking settings</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",\"SETTINGS_READ\",\"SETTINGS_RESET\"]\n            }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IBlockReportRequest {\n    start_time: Date | string;\n    end_time: Date | string;\n    sub: string;\n    email: string;\n    ip: string;\n    skip: number;\n    take: number;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IBlockingReports[];\n}\n\ninterface IBlockingReports {\n    \n    sub: string;\n    sub_passed: boolean;\n\n    ip: string;\n    ip_passed: boolean;\n\n    email: string;\n    email_passed: boolean;\n    createdTime:Date;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","blocker","report"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"ae472a84-e393-4123-b99b-dc396180bde4","name":"Get Blocking Report","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"start_time\":\"\",\n\t\"end_time\":\"\",\n\t\"sub\":\"\",\n\t\"email\":\"\",\n\t\"ip\":\"\",\n\t\"skip\":0,\n\t\"take\":20\n}","options":{"raw":{"language":"json"}}},"url":"{{baseurl}}/users-srv/blocker/report"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 Jan 2020 12:43:11 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"862"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1578400990968-9ceed502-e980-4a78-82ef-b527d898f79c"},{"key":"ETag","value":"W/\"35e-LmOpyyubwBcV3swj7M7o9ehvHAU\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=299"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"className\": \"de.cidaas.management.db.BlockingReports\",\n            \"_id\": \"f6f075f5-43fd-4c3b-bb71-94ec96697d63\",\n            \"sub_passed\": true,\n            \"email\": \"vimalprakashts@gmail.com\",\n            \"email_passed\": false,\n            \"ip\": \"182.72.240.54\",\n            \"ip_passed\": true,\n            \"createdTime\": \"2020-01-07T12:41:30.136Z\",\n            \"updatedTime\": \"2020-01-07T12:41:30.136Z\",\n            \"__ref\": \"1578400890006-1c2edb62-906e-4129-83d9-60080085592a\",\n            \"__v\": 0,\n            \"id\": \"f6f075f5-43fd-4c3b-bb71-94ec96697d63\"\n        },\n        {\n            \"className\": \"de.cidaas.management.db.BlockingReports\",\n            \"_id\": \"0cef4763-93cc-4efa-99ed-f3ea33b62a7c\",\n            \"sub_passed\": true,\n            \"email\": \"vimalprakashts+adfadsf@gmail.com\",\n            \"email_passed\": false,\n            \"ip\": \"182.72.240.54\",\n            \"ip_passed\": true,\n            \"createdTime\": \"2020-01-07T12:42:07.857Z\",\n            \"updatedTime\": \"2020-01-07T12:42:07.857Z\",\n            \"__ref\": \"1578400927731-eb33abe6-3897-44dc-95cc-c782d2c37fbd\",\n            \"__v\": 0,\n            \"id\": \"0cef4763-93cc-4efa-99ed-f3ea33b62a7c\"\n        }\n    ]\n}"}],"_postman_id":"c9e80702-3db5-49c3-b706-5508688fdd05"},{"name":"Update Partial","id":"6f13bf22-afdd-416f-ab47-6f9ce84a8191","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"User-Agent","type":"text","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36"},{"key":"Accept-Language","type":"text","value":"en-US,en;q=0.9,de;q=0.8"}],"body":{"mode":"raw","raw":"{\n\"value\":[\"\",\"\"]\n}"},"url":"{{baseurl}}/users-srv/blocker/partial/:criteria/:action_type","description":"<h1 id=\"description\">Description</h1>\n<p>This API will allow users to update the partial entries, Example, If user want to update only one domain (<code>example.com</code>)  in the existing <code>block_listed_domains</code> list , user just need to send like this </p>\n<p>set the path : <code>/users-srv/blocker/partial/block_listed_domains/update</code> </p>\n<p>and then payload with the </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  value:[\"example.com\"]\n}\n</code></pre><p>Similarly User can do the following <code>actions</code></p>\n<ol>\n<li>update</li>\n<li>remove</li>\n<li>clear</li>\n</ol>\n<h3 id=\"criterias\">Criterias</h3>\n<ol>\n<li>block_listed_ips</li>\n<li>excluded_ips</li>\n<li>white_listed_ips</li>\n<li>block_listed_domains</li>\n<li>excluded_emails</li>\n<li>white_listed_domains</li>\n</ol>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>\"cidaas:admin_read\", \"cidaas:admin_write\", \"cidaas:write\", \"cidaas:read\"\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>groups: [\n            {\n                groupId: \"CIDAAS_ADMINS\",\n                roles: [\"ADMIN\", \"SECONDARY_ADMIN\", \"SETTINGS_CREATE\",\"SETTINGS_READ\",\"SETTINGS_RESET\"]\n            }\n]\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects <code>access_token</code> in request headers.</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\nAuthorization: Bearer eyJhbGciOi .....\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IBlockReportRequest {\n    value: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IBlockingUpdateResponse;\n}\n\ninterface IBlockingUpdateResponse {\n    updated: boolean;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>404 : NOT_FOUND</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","blocker","partial",":criteria",":action_type"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"","key":"criteria"},{"type":"string","value":"","key":"action_type"}]}},"response":[{"id":"2ebd9967-2725-4ec0-9319-6197e11c179d","name":"Get Blocking Report","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"start_time\":\"\",\n\t\"end_time\":\"\",\n\t\"sub\":\"\",\n\t\"email\":\"\",\n\t\"ip\":\"\",\n\t\"skip\":0,\n\t\"take\":20\n}","options":{"raw":{"language":"json"}}},"url":"{{baseurl}}/users-srv/blocker/report"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 07 Jan 2020 12:43:11 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"862"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1578400990968-9ceed502-e980-4a78-82ef-b527d898f79c"},{"key":"ETag","value":"W/\"35e-LmOpyyubwBcV3swj7M7o9ehvHAU\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=299"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": [\n        {\n            \"className\": \"de.cidaas.management.db.BlockingReports\",\n            \"_id\": \"f6f075f5-43fd-4c3b-bb71-94ec96697d63\",\n            \"sub_passed\": true,\n            \"email\": \"vimalprakashts@gmail.com\",\n            \"email_passed\": false,\n            \"ip\": \"182.72.240.54\",\n            \"ip_passed\": true,\n            \"createdTime\": \"2020-01-07T12:41:30.136Z\",\n            \"updatedTime\": \"2020-01-07T12:41:30.136Z\",\n            \"__ref\": \"1578400890006-1c2edb62-906e-4129-83d9-60080085592a\",\n            \"__v\": 0,\n            \"id\": \"f6f075f5-43fd-4c3b-bb71-94ec96697d63\"\n        },\n        {\n            \"className\": \"de.cidaas.management.db.BlockingReports\",\n            \"_id\": \"0cef4763-93cc-4efa-99ed-f3ea33b62a7c\",\n            \"sub_passed\": true,\n            \"email\": \"vimalprakashts+adfadsf@gmail.com\",\n            \"email_passed\": false,\n            \"ip\": \"182.72.240.54\",\n            \"ip_passed\": true,\n            \"createdTime\": \"2020-01-07T12:42:07.857Z\",\n            \"updatedTime\": \"2020-01-07T12:42:07.857Z\",\n            \"__ref\": \"1578400927731-eb33abe6-3897-44dc-95cc-c782d2c37fbd\",\n            \"__v\": 0,\n            \"id\": \"0cef4763-93cc-4efa-99ed-f3ea33b62a7c\"\n        }\n    ]\n}"}],"_postman_id":"6f13bf22-afdd-416f-ab47-6f9ce84a8191"}],"id":"ff10fbaf-383e-456f-9f49-bd02fd6a277f","_postman_id":"ff10fbaf-383e-456f-9f49-bd02fd6a277f","description":""}],"id":"243ecf6e-f87d-4c99-9079-d785d158c82c","_postman_id":"243ecf6e-f87d-4c99-9079-d785d158c82c","description":""},{"name":"Authentication","item":[{"name":"Password Flow","item":[{"name":"Password Flow","id":"7ff3f713-b771-4e45-aa05-2c87f8ac91b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"54329480-3664-47ce-920f-90e473f1bcdf","type":"text"},{"key":"client_secret","value":"964289eb-cc35-4c7b-a318-6405f313381c","type":"text"},{"key":"username","value":"vimalprakashts+march25@gmail.com","type":"text"},{"key":"password","value":"vimal123","type":"text"},{"key":"scope","value":"openid bookingassistant:api","type":"text","disabled":true},{"key":"pre_login_id","value":"a737c5c2-8d21-4acd-86c4-a447330fc1b6","type":"text","disabled":true},{"key":"provider","value":"conrad","type":"text","disabled":true}]},"url":"{{baseurl}}/token-srv/token","description":"<h1 id=\"description\">Description</h1>\n<p>To generate an access_token based on password flow</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>AccessTokenRequest</code> entity in the body section and <code>grant_type</code> must be set as <code>password</code></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AccessTokenRequest {\n    grant_type?: string;\n    code?: string;\n    redirect_uri?: string;\n    client_id?: string;\n    client_secret?: string;\n    state?: string;\n    scope?: string;\n    refresh_token?: string;\n    code_verifier?: string;\n    username?: string;\n    password?: string;\n    requestId?: string;\n    provider?: string;\n    host?: string;\n    client_assertion?: string;\n    client_assertion_type?: string;\n    client_ip?: string;\n    captcha?: string;\n    locale?: string;\n    username_type?: string;\n    signature?: string;\n    remeber_me?: boolean;\n    user_agent: string = \"\";\n    ip_address: string = \"\";\n    accept_language: string = \"\";\n    lat: string = \"\";\n    lng: string = \"\";\n    finger_print: string = \"\";\n    referrer: string = \"\";\n    pre_login_id: string = \"\";\n    login_type: string = \"\";\n    device_code: string = \"\";\n    sub?: string;\n    identityId?: string;\n    providerUserId?: string;\n    mfa_exchange_id?: string;\n    dc?: string;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">Redirects with the access_token, id_token, refresh_token, expires_in and so on.\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-srv","token"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"d2123e38-6b2e-4983-8934-098ede2f7fab","name":"http://localmanagement.cidaas.de/token-srv/token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"fee62482-f15f-4202-9b85-fcd1d9224337","type":"text"},{"key":"client_secret","value":"db91497f-3459-42f3-9a80-02331fc7513b","type":"text"},{"key":"username","value":"developer@cidaas.de","type":"text"},{"key":"password","value":"test123","type":"text"},{"key":"scope","value":"openid profile email phone","type":"text"}]},"url":"{{baseurl}}/token-srv/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-store","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"490","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 10:10:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ea-kxTFOf2iw++DiWYeai77iGvDahk\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"token_type\":\"Bearer\",\"access_token\":\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjVmZTlmNmI3LTAyMDgtNGI1ZS05OTE4LWFiNGNiYzBhNzhiNyJ9.eyJzdWIiOiI0ZWMxM2FmMy05MmRmLTQyOWYtYjk4NS05NTRiNzBhMzJjYzAiLCJhdWQiOiJmZmY0YmI3Ny0zNWUwLTQ3ZmItYmVkMC1hNWRjM2JhOWE4ZjQiLCJleHAiOjE1MTgzNDM3OTUsImlhdCI6MTUxODI1NzM5NSwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJyb2xlcyI6WyJBRE1JTiJdLCJncm91cHMiOltdfQ.CZCGwdoIG5ml_Lfg5-_PNEq41nGLfnatepQphqibp3D4zUUj4oIwVrgPz66zQlCgFbaLzD0-6Zzy6e9GMy31sw\",\"expires_in\":86400}"}],"_postman_id":"7ff3f713-b771-4e45-aa05-2c87f8ac91b5"}],"id":"8109504b-f7e1-4350-8f64-c435f15777cb","event":[{"listen":"prerequest","script":{"id":"7b70ccd4-2b27-4592-874e-2398bf807092","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"68a74369-2ebf-47b6-bef1-27b8e45b5e66","type":"text/javascript","exec":[""]}}],"_postman_id":"8109504b-f7e1-4350-8f64-c435f15777cb","description":""},{"name":"Implicit Flow","item":[{"name":"Implicit Flow","id":"471719e8-fcaf-4900-924c-a1897d5e61cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"implicit","type":"text"},{"key":"client_id","value":"b784d3ae-5fd9-421c-ade6-a1c35ad5877c","type":"text"},{"key":"client_secret","value":"34ad00bb-a5b9-4750-b2c8-5a9a995f9b26","type":"text"},{"key":"username","value":"vimalprakashts@gmail.com","type":"text"},{"key":"password","value":"vimal123","type":"text"},{"key":"scope","value":"openid identities","type":"text"},{"key":"requestId","value":"023cc00c-6895-4c27-85d1-88d105fcc446","type":"text"},{"key":"redirect_uri","value":"https://cidaas-demo.cidaas.de/user-profile/editprofile","type":"text"}]},"url":"{{baseurl}}/token-srv/token","description":"<h1 id=\"description\">Description</h1>\n<p>To generate an access_token based on implicit flow</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>AccessTokenRequest</code> entity in the body section and <code>grant_type</code> must be set as <code>implicit</code></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AccessTokenRequest {\n    grant_type?: string;\n    code?: string;\n    redirect_uri?: string;\n    client_id?: string;\n    client_secret?: string;\n    state?: string;\n    scope?: string;\n    refresh_token?: string;\n    code_verifier?: string;\n    username?: string;\n    password?: string;\n    requestId?: string;\n    provider?: string;\n    host?: string;\n    client_assertion?: string;\n    client_assertion_type?: string;\n    client_ip?: string;\n    captcha?: string;\n    locale?: string;\n    username_type?: string;\n    signature?: string;\n    remeber_me?: boolean;\n    user_agent: string = \"\";\n    ip_address: string = \"\";\n    accept_language: string = \"\";\n    lat: string = \"\";\n    lng: string = \"\";\n    finger_print: string = \"\";\n    referrer: string = \"\";\n    pre_login_id: string = \"\";\n    login_type: string = \"\";\n    device_code: string = \"\";\n    sub?: string;\n    identityId?: string;\n    providerUserId?: string;\n    mfa_exchange_id?: string;\n    dc?: string;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">Redirects with the access_token, id_token, expires_in and so on.\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-srv","token"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"7c2dde52-c5f4-465d-846e-e548ff3de3dd","name":"http://localmanagement.cidaas.de/token-srv/token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"client_id","value":"fee62482-f15f-4202-9b85-fcd1d9224337","type":"text"},{"key":"client_secret","value":"db91497f-3459-42f3-9a80-02331fc7513b","type":"text"},{"key":"username","value":"developer@cidaas.de","type":"text"},{"key":"password","value":"test123","type":"text"},{"key":"scope","value":"openid profile email phone","type":"text"}]},"url":"{{baseurl}}/token-srv/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Cache-Control","value":"no-store","name":"Cache-Control","description":"Tells all caching mechanisms from server to client whether they may cache this object. It is measured in seconds"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"490","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 10:10:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"1ea-kxTFOf2iw++DiWYeai77iGvDahk\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Pragma","value":"no-cache","name":"Pragma","description":"Implementation-specific headers that may have various effects anywhere along the request-response chain."},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"token_type\":\"Bearer\",\"access_token\":\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjVmZTlmNmI3LTAyMDgtNGI1ZS05OTE4LWFiNGNiYzBhNzhiNyJ9.eyJzdWIiOiI0ZWMxM2FmMy05MmRmLTQyOWYtYjk4NS05NTRiNzBhMzJjYzAiLCJhdWQiOiJmZmY0YmI3Ny0zNWUwLTQ3ZmItYmVkMC1hNWRjM2JhOWE4ZjQiLCJleHAiOjE1MTgzNDM3OTUsImlhdCI6MTUxODI1NzM5NSwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJyb2xlcyI6WyJBRE1JTiJdLCJncm91cHMiOltdfQ.CZCGwdoIG5ml_Lfg5-_PNEq41nGLfnatepQphqibp3D4zUUj4oIwVrgPz66zQlCgFbaLzD0-6Zzy6e9GMy31sw\",\"expires_in\":86400}"}],"_postman_id":"471719e8-fcaf-4900-924c-a1897d5e61cb"}],"id":"8a20005a-64bd-42db-89e4-eeae30bb0fa7","event":[{"listen":"prerequest","script":{"id":"7b70ccd4-2b27-4592-874e-2398bf807092","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"68a74369-2ebf-47b6-bef1-27b8e45b5e66","type":"text/javascript","exec":[""]}}],"_postman_id":"8a20005a-64bd-42db-89e4-eeae30bb0fa7","description":""},{"name":"Autherization Code Flow","item":[{"name":"Autherization Code Flow","id":"d58ffe14-488b-4de2-a834-e47fa8cb4be4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"client_id","value":"22ddb342-8f9b-4f6e-b444-af1648cfcb71","type":"text"},{"key":"client_secret","value":"a246ca41-7f57-4f46-988e-0d89da67866f","type":"text"},{"key":"code","value":"dc236a69-6c83-4bf1-9cf4-bb9d03b461b3","type":"text"},{"key":"redirect_uri","value":"http://localhost:8080","type":"text"},{"key":"client_assertion_type","value":"urn:ietf:params:oauth:client-assertion-type:jwt-bearer","type":"text","disabled":true},{"key":"client_assertion","value":"eyJhbGciOiJSUzI1NiIsImtpZCI6ImIwMWFlMDBmLWFkN2YtNGFkMC05YmMyLTI0YWI2ZjBhYmI4ZSJ9.eyJpc3MiOiJjNDM2NGM0NC1kZGRhLTQ1NTItOWZiYy1kMTI4MWQ5YWQzNTEiLCJzdWIiOiJjNDM2NGM0NC1kZGRhLTQ1NTItOWZiYy1kMTI4MWQ5YWQzNTEiLCJqdGkiOiJlNDIwMDBmZC0zNTFhLTRmYTMtYWNmYS0zNmM0ZGUyYzU0NTAiLCJpYXQiOjE1MjAzMzAyMTgsImV4cCI6MTUyMDMzMDUxOH0.c08xOP0PLBtt85lJTasvucxVAUhvkA2LynyQyrrXMZULsERLEIEGkCkea2TmP_zHUYELaaJ8US1dJY_WLR55uw","type":"text","disabled":true}]},"url":"{{baseurl}}/token-srv/token","description":"<h1 id=\"description\">Description</h1>\n<p>To generate an authorization code</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>AccessTokenRequest</code> entity in the body section and <code>grant_type</code> must be set as <code>authorization_code</code></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AccessTokenRequest {\n    grant_type?: string;\n    code?: string;\n    redirect_uri?: string;\n    client_id?: string;\n    client_secret?: string;\n    state?: string;\n    scope?: string;\n    refresh_token?: string;\n    code_verifier?: string;\n    username?: string;\n    password?: string;\n    requestId?: string;\n    provider?: string;\n    host?: string;\n    client_assertion?: string;\n    client_assertion_type?: string;\n    client_ip?: string;\n    captcha?: string;\n    locale?: string;\n    username_type?: string;\n    signature?: string;\n    remeber_me?: boolean;\n    user_agent: string = \"\";\n    ip_address: string = \"\";\n    accept_language: string = \"\";\n    lat: string = \"\";\n    lng: string = \"\";\n    finger_print: string = \"\";\n    referrer: string = \"\";\n    pre_login_id: string = \"\";\n    login_type: string = \"\";\n    device_code: string = \"\";\n    sub?: string;\n    identityId?: string;\n    providerUserId?: string;\n    mfa_exchange_id?: string;\n    dc?: string;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">Redirects with the authorization_code\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-srv","token"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d58ffe14-488b-4de2-a834-e47fa8cb4be4"}],"id":"52e9b5dc-3121-43ca-92b1-a38632d77ffe","_postman_id":"52e9b5dc-3121-43ca-92b1-a38632d77ffe","description":""},{"name":"Autherization Code Flow [PKCE]","item":[{"name":"Autherization Code Flow [PKCE]","id":"5e7cfda6-88df-4035-b65b-472a8c30f51b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"authorization_code","type":"text"},{"key":"client_id","value":"c4364c44-ddda-4552-9fbc-d1281d9ad351","type":"text"},{"key":"code","value":"32ed675c-5773-46e8-8ee4-19bf9ab196a2","type":"text"},{"key":"redirect_uri","value":"https://yourbaseurl.cidaas.de/user-profile/editprofile","type":"text"},{"key":"code_verifier","value":"7RTGpnRYR64SHYWqOw125Hk8PnjpP0hfrdOXU9_oMQ0","type":"text"}]},"url":"{{baseurl}}/token-srv/token","description":"<h1 id=\"description\">Description</h1>\n<p>To generate an authorization code using  PKCE flow</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>AccessTokenRequest</code> entity in the body section, <code>grant_type</code> must be set as <code>authorization_code</code> and <code>code_verifier</code> has to pass</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AccessTokenRequest {\n    grant_type?: string;\n    code?: string;\n    redirect_uri?: string;\n    client_id?: string;\n    client_secret?: string;\n    state?: string;\n    scope?: string;\n    refresh_token?: string;\n    code_verifier?: string;\n    username?: string;\n    password?: string;\n    requestId?: string;\n    provider?: string;\n    host?: string;\n    client_assertion?: string;\n    client_assertion_type?: string;\n    client_ip?: string;\n    captcha?: string;\n    locale?: string;\n    username_type?: string;\n    signature?: string;\n    remeber_me?: boolean;\n    user_agent: string = \"\";\n    ip_address: string = \"\";\n    accept_language: string = \"\";\n    lat: string = \"\";\n    lng: string = \"\";\n    finger_print: string = \"\";\n    referrer: string = \"\";\n    pre_login_id: string = \"\";\n    login_type: string = \"\";\n    device_code: string = \"\";\n    sub?: string;\n    identityId?: string;\n    providerUserId?: string;\n    mfa_exchange_id?: string;\n    dc?: string;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">Redirects with the authorization_code\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-srv","token"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e7cfda6-88df-4035-b65b-472a8c30f51b"}],"id":"e95e9c31-195b-4c40-8201-9637ed8db23e","event":[{"listen":"prerequest","script":{"id":"e1372299-2025-49b2-9278-5e7065ce8ebf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7b5ccae3-c16d-4a36-84cf-e4f8b40ac83d","type":"text/javascript","exec":[""]}}],"_postman_id":"e95e9c31-195b-4c40-8201-9637ed8db23e","description":""},{"name":"Refresh Token","item":[{"name":"Refresh Token","id":"bccb2c3a-2290-48c2-b02b-58a77d55114e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"refresh_token","type":"text"},{"key":"client_id","value":"22ddb342-8f9b-4f6e-b444-af1648cfcb71","type":"text"},{"key":"client_secret","value":"a246ca41-7f57-4f46-988e-0d89da67866f","type":"text"},{"key":"refresh_token","value":"863c6ea9-71a6-4306-bb24-4ba6e53fda28","type":"text"}]},"url":"{{baseurl}}/token-srv/token","description":"<h1 id=\"description\">Description</h1>\n<p>To generate an access token from the refresh token</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>AccessTokenRequest</code> entity in the body section and <code>grant_type</code> must be set as <code>refresh_token</code></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AccessTokenRequest {\n    grant_type?: string;\n    code?: string;\n    redirect_uri?: string;\n    client_id?: string;\n    client_secret?: string;\n    state?: string;\n    scope?: string;\n    refresh_token?: string;\n    code_verifier?: string;\n    username?: string;\n    password?: string;\n    requestId?: string;\n    provider?: string;\n    host?: string;\n    client_assertion?: string;\n    client_assertion_type?: string;\n    client_ip?: string;\n    captcha?: string;\n    locale?: string;\n    username_type?: string;\n    signature?: string;\n    remeber_me?: boolean;\n    user_agent: string = \"\";\n    ip_address: string = \"\";\n    accept_language: string = \"\";\n    lat: string = \"\";\n    lng: string = \"\";\n    finger_print: string = \"\";\n    referrer: string = \"\";\n    pre_login_id: string = \"\";\n    login_type: string = \"\";\n    device_code: string = \"\";\n    sub?: string;\n    identityId?: string;\n    providerUserId?: string;\n    mfa_exchange_id?: string;\n    dc?: string;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">Redirects with the access_token, refresh_token and so on\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-srv","token"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bccb2c3a-2290-48c2-b02b-58a77d55114e"}],"id":"8b20f261-6771-46ac-8282-82cab1ce4530","_postman_id":"8b20f261-6771-46ac-8282-82cab1ce4530","description":""},{"name":"Client Credentials","item":[{"name":"Client Credentials","id":"f011730f-3e4b-49bc-b038-2b82613b783d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"f2e63b26-5b27-4b39-85d8-23470986e3c9","type":"text"},{"key":"client_secret","value":"fa57b805-9900-432a-8e2a-1c1b67463c9e","type":"text"}]},"url":"{{baseurl}}/token-srv/token","description":"<h1 id=\"description\">Description</h1>\n<p>To generate an access token based on client credentials flow</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>AccessTokenRequest</code> entity in the body section, <code>grant_type</code> must be set as <code>client_credentials</code> and pass <code>client_id</code> and <code>client_secret</code></p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AccessTokenRequest {\n    grant_type?: string;\n    code?: string;\n    redirect_uri?: string;\n    client_id?: string;\n    client_secret?: string;\n    state?: string;\n    scope?: string;\n    refresh_token?: string;\n    code_verifier?: string;\n    username?: string;\n    password?: string;\n    requestId?: string;\n    provider?: string;\n    host?: string;\n    client_assertion?: string;\n    client_assertion_type?: string;\n    client_ip?: string;\n    captcha?: string;\n    locale?: string;\n    username_type?: string;\n    signature?: string;\n    remeber_me?: boolean;\n    user_agent: string = \"\";\n    ip_address: string = \"\";\n    accept_language: string = \"\";\n    lat: string = \"\";\n    lng: string = \"\";\n    finger_print: string = \"\";\n    referrer: string = \"\";\n    pre_login_id: string = \"\";\n    login_type: string = \"\";\n    device_code: string = \"\";\n    sub?: string;\n    identityId?: string;\n    providerUserId?: string;\n    mfa_exchange_id?: string;\n    dc?: string;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">Redirects with the access_token, refresh_token and so on\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-srv","token"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f011730f-3e4b-49bc-b038-2b82613b783d"}],"id":"9c941ab0-d156-43e7-b4fc-27ded579c63b","_postman_id":"9c941ab0-d156-43e7-b4fc-27ded579c63b","description":""},{"name":"Introspect Token","item":[{"name":"Introspect with Basic Token","id":"1eb79eff-e972-4a67-a147-c58f655af07a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"token\":\"eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICJsSEtLSDdWemJXTGZQZVZDZ001bXU0QXdYN3NpZHFmV19obEVtREE1Y280In0.eyJqdGkiOiJjOTdmMGYwNC1iNDc1LTQzMDAtYTVkMS05YjJjZjAyM2NiNTQiLCJleHAiOjE1Nzg5NTAwOTQsIm5iZiI6MCwiaWF0IjoxNTc4OTQ5MTk0LCJpc3MiOiJodHRwOi8vbG9jYWxob3N0OjgwODAvYXV0aC9yZWFsbXMvdmltcyIsInN1YiI6ImI2N2RmMDBlLTQ0ODUtNDQyMy1hMmRkLTNiMTM5ODA0MzFhNiIsInR5cCI6IkJlYXJlciIsImF6cCI6InRlc3RpbmciLCJhdXRoX3RpbWUiOjE1Nzg5NDkxOTQsInNlc3Npb25fc3RhdGUiOiI3ZmJhMzBlYi02MTc5LTRkZTktOTc2Mi1lNDNlYWUyMjg0ZTgiLCJhY3IiOiIxIiwicmVhbG1fYWNjZXNzIjp7InJvbGVzIjpbIm9mZmxpbmVfYWNjZXNzIl19LCJzY29wZSI6ImVtYWlsIHByb2ZpbGUiLCJlbWFpbF92ZXJpZmllZCI6ZmFsc2UsIm5hbWUiOiJ2aW1hbCBwcmFrYXNoIiwicHJlZmVycmVkX3VzZXJuYW1lIjoidmltYWxwcmFrYXNodHMrMUBnbWFpbC5jb20iLCJnaXZlbl9uYW1lIjoidmltYWwiLCJmYW1pbHlfbmFtZSI6InByYWthc2giLCJlbWFpbCI6InZpbWFscHJha2FzaHRzKzFAZ21haWwuY29tIn0.cY18FSVGHXRF9M0f8yN8zRRDpYtua-hIy96gSbDxOzg2PqnaPKEB_isNVHm9FXWiyAKlRlAZLQS6MX4LVGhzr4V0O3yL81JrV19OFEWZ2sC5VXxBaszY_lBujXWsh9eU2TziGP3-1BAyIAfTh7QhRR1kiSwt21fDafGrGkmp2lgkv7HfNSwWe7LEOH-DroXIqzWM7owj38aaGipwpjh-7XlyoAQMDOo1z8LGEPz-OnTBwVLYukPeSti3qIbhzTr9nRqlv5WDXNisL6HKqorcAy8tTw54CGyBuPNh61_hzbh1toMiqhNSMn0vAcR9j6SIQEk0R2VZ2a5-iWVeTiwuHA\",\n\t\"token_type_hint\":\"access_token\"\n}"},"url":"http://localhost:8080/auth/realms/vims/protocol/openid-connect/token/introspect","description":"<h1 id=\"description\">Description</h1>\n<p>To introspect the token with basic authentication flow</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>TokenIntrospectionRequest</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authentication: Basic M2U0YWQzNGUtOTdjNS00MTBkLTgyYzktMWQ...\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class TokenIntrospectionRequest {\n    token: string = \"\";\n    token_type_hint?: string;\n    roles?: string[];\n    scopes?: string[];\n    groups?: GroupValidationEntity[];\n    strictGroupValidation: boolean = false;\n    strictScopeValidation: boolean = false;\n    strictRoleValidation: boolean = false;\n    strictValidation: boolean = false;\n    client_id?: string;\n    client_secret?: string;\n    request_url?: string;\n    request_time?: number;\n    request_headers?: any;\n}\n\nclass GroupValidationEntity {\n    groupId?: string;\n    groupType?: string;\n    roles?: string[];\n    strictRoleValidation: boolean = false;\n    strictValidation: boolean = false;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">Redirects with the active, scope, client_id, username, token_type and so on\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"protocol":"http","port":"8080","path":["auth","realms","vims","protocol","openid-connect","token","introspect"],"host":["localhost"],"query":[],"variable":[]}},"response":[{"id":"ad0cd922-3a1d-425a-a593-a76aa9f6829b","name":"in body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"token\":\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjFlOGQ5MTFlLTFkMzUtNGEzMi1hMTlhLTkyNDk0NGI2MDA1MiJ9.eyJzdWIiOiI0ZWMxM2FmMy05MmRmLTQyOWYtYjk4NS05NTRiNzBhMzJjYzAiLCJhdWQiOiI0ODMyOTcwZC1lYTE4LTRjODYtYTk1OS1mYjcyNGFhMDE3MDQiLCJleHAiOjE1MTkyMjY1OTIsImlhdCI6MTUxOTE0MDE5MiwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiI3YTUwMTgzZi0zNDQ4LTQyYTQtODVjZS00ZWMxNjQxMmE2ZjEiLCJzY29wZXMiOlsib3BlbmlkIiwicHJvZmlsZSJdLCJyb2xlcyI6WyJUZXN0Il0sImdyb3VwcyI6W10sImF0X2hhc2giOiJkVTdWNFo0S3FGOVEyMWlNWmtIOFFRIiwiY19oYXNoIjoidGFvZTdNeUdKY2VCNWFhWGJ0Q2FWUSIsInByZWZlcnJlZF91c2VybmFtZSI6ImVtYWlsLG1vYmlsZSx1c2VyX25hbWUiLCJuYW1lIjoiY2lkYWFzIGRldmxvcGVyIiwiZ2l2ZW5fbmFtZSI6ImNpZGFhcyIsImZhbWlseV9uYW1lIjoiZGV2bG9wZXIiLCJ1cGRhdGVkX2F0IjoxNTE4MjU5NDQzfQ.IJ9ynDMWEZDgY9hSlgqUXOPzWLCNnKyrgPY5khtZ7DBk4fyoCsmKvwk6KgqC1Xoi_kwI40k6MXBQvH3rzXdGBg\",\n\t\"token_type_hint\":\"id_token\"\n}"},"url":"{{baseurl}}/token-srv/introspect"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"290","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 20 Feb 2018 12:00:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"122-OJNT6FOzeAogtjt/ZFiBjxZw948\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"active\":true,\"aud\":\"4832970d-ea18-4c86-a959-fb724aa01704\",\"client_id\":\"4832970d-ea18-4c86-a959-fb724aa01704\",\"exp\":1519208286,\"iat\":1519121886,\"iss\":\"http://localmanagement.cidaas.de\",\"sub\":\"ee4c77f7-5178-43e5-8ea1-ddc35474547e\",\"token_type\":\"Bearer\"}}"}],"_postman_id":"1eb79eff-e972-4a67-a147-c58f655af07a"},{"name":"Introspect with Bearer Token","id":"f3419d74-e13b-4683-bb59-6d7ff167e117","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"vimal","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"token\":\"eyJhbGciOiJSUzI1NiIsImtpZCI6ImQ1NjQ3YjJmLWZkMjQtNDBiMi05OGI2LTk3ZjFkZDM3OTdjNSJ9.eyJzaWQiOiIyMDEzZTU4MC1lZDQ1LTQ3NzAtYWEzNS03YjJjN2E2YzFlYzYiLCJzdWIiOiI2YWEzZGQxNy0zMTAxLTQ3YWYtOWNlYi0yN2E5MDNiYmQwMjQiLCJpc3ViIjoiMWNhMmIwMmYtZTdmYy00M2RlLTk5MGQtZTU0NmQ4NWI3OTU1IiwiYXVkIjoiYzA2NjdkMjItNzAzNi00MWY3LWFiYmUtNjE3OWRmZDBmZTNhIiwiaWF0IjoxNTU0MTE0MDIzLCJhdXRoX3RpbWUiOjE1NTQxMTQwMjMsImlzcyI6Imh0dHBzOi8vYWNjb3VudHMuY29ucmFkLmNvbSIsImp0aSI6IjUwNThkMzc4LWIyYzMtNDQ5OS1iODcyLTQ0ZmIwMzg0MTJiNiIsInBzdWIiOiI1NTk0YjRiZi1mMzFkLTQ1ODUtYjMyZC01OWEzODUxYWEwNDciLCJzY29wZXMiOlsib3BlbmlkIiwicHJvZmlsZSIsImVtYWlsIiwiYWRkcmVzcyIsInBob25lIiwib2ZmbGluZV9hY2Nlc3MiLCJyb2xlcyIsImdyb3VwcyIsImlkZW50aXRpZXMiLCJjaWRhYXM6cmVnaXN0ZXIiLCJjaWRhYXM6YWRtaW5fcmVhZCIsImNpZGFhczphZG1pbl93cml0ZSIsImNpZGFhczphZG1pbl9kZWxldGUiLCJjaWRhYXM6YXBwc19yZWFkIiwiY2lkYWFzOmFwcHNfd3JpdGUiLCJjaWRhYXM6YXBwc19kZWxldGUiLCJjaWRhYXM6c2NvcGVzX3JlYWQiLCJjaWRhYXM6c2NvcGVzX3dyaXRlIiwiY2lkYWFzOnNjb3Blc19kZWxldGUiLCJjaWRhYXM6c2VjdXJpdHlfa2V5X3JlYWQiLCJjaWRhYXM6c2VjdXJpdHlfa2V5X3dyaXRlIiwiY2lkYWFzOnNlY3VyaXR5X2tleV9kZWxldGUiLCJjaWRhYXM6dXNlcnNfcmVhZCIsImNpZGFhczp1c2Vyc193cml0ZSIsImNpZGFhczp1c2Vyc19kZWxldGUiLCJjaWRhYXM6dXNlcnNfaW52aXRlIiwiY2lkYWFzOnVzZXJzX3NlYXJjaCIsImNpZGFhczpyb2xlc19yZWFkIiwiY2lkYWFzOnJvbGVzX3dyaXRlIiwiY2lkYWFzOnJvbGVzX2RlbGV0ZSIsImNpZGFhczpwcm92aWRlcnNfcmVhZCIsImNpZGFhczpwcm92aWRlcnNfd3JpdGUiLCJjaWRhYXM6cHJvdmlkZXJzX2RlbGV0ZSIsImNpZGFhczpyZWdpc3RyYXRpb25fc2V0dXBfcmVhZCIsImNpZGFhczpyZWdpc3RyYXRpb25fc2V0dXBfd3JpdGUiLCJjaWRhYXM6cmVnaXN0cmF0aW9uX3NldHVwX2RlbGV0ZSIsImNpZGFhczp0ZW1wbGF0ZXNfcmVhZCIsImNpZGFhczp0ZW1wbGF0ZXNfd3JpdGUiLCJjaWRhYXM6dGVtcGxhdGVzX2RlbGV0ZSIsImNpZGFhczpwYXNzd29yZF9wb2xpY3lfcmVhZCIsImNpZGFhczpwYXNzd29yZF9wb2xpY3lfd3JpdGUiLCJjaWRhYXM6cGFzc3dvcmRfcG9saWN5X2RlbGV0ZSIsImNpZGFhczp3ZWJob29rX3JlYWQiLCJjaWRhYXM6d2ViaG9va193cml0ZSIsImNpZGFhczp3ZWJob29rX2RlbGV0ZSIsImNpZGFhczpjYXB0Y2hhX3JlYWQiLCJjaWRhYXM6Y2FwdGNoYV93cml0ZSIsImNpZGFhczpjYXB0Y2hhX2RlbGV0ZSIsImNpZGFhczpvcHRpbl9yZWFkIiwiY2lkYWFzOm9wdGluX3dyaXRlIiwiY2lkYWFzOm9wdGluX2RlbGV0ZSIsImNpZGFhczpncm91cF90eXBlX3JlYWQiLCJjaWRhYXM6Z3JvdXBfdHlwZV93cml0ZSIsImNpZGFhczpncm91cF90eXBlX2RlbGV0ZSIsImNpZGFhczpncm91cHNfcmVhZCIsImNpZGFhczpncm91cHNfd3JpdGUiLCJjaWRhYXM6Z3JvdXBzX2RlbGV0ZSIsImNpZGFhczpncm91cHNfdXNlcl9tYXBfcmVhZCIsImNpZGFhczpncm91cHNfdXNlcl9tYXBfd3JpdGUiLCJjaWRhYXM6Z3JvdXBzX3VzZXJfbWFwX2RlbGV0ZSIsImNpZGFhczpob3N0ZWRfcGFnZXNfcmVhZCIsImNpZGFhczpob3N0ZWRfcGFnZXNfd3JpdGUiLCJjaWRhYXM6aG9zdGVkX3BhZ2VzX2RlbGV0ZSIsImNpZGFhczp2ZXJpZmljYXRpb25fcmVhZCIsImNpZGFhczp2ZXJpZmljYXRpb25fd3JpdGUiLCJjaWRhYXM6dmVyaWZpY2F0aW9uX2RlbGV0ZSIsImNpZGFhczpyZXBvcnRzX3JlYWQiLCJjaWRhYXM6cmVwb3J0c193cml0ZSIsImNpZGFhczpyZXBvcnRzX2RlbGV0ZSIsIm9mZmxpbmVfYWNjZXNzIl0sInJvbGVzIjpbIlVTRVIiXSwiZ3JvdXBzIjpbXSwiZXhwIjoxNTU0MjAwNDIzfQ.jFs8WuxPGY4rz-Dla-SVzeoVVVG9UIgUocnvQV0xGmWKuMIIJbjPKlmVVBAHq-VvHXlv2tRqljgOUwp6fpvTUZNi-wNeXWfTLcOyUZEHBF0y0dwPTxw6dtpm5_UGz1ZgqWTj48wZrtUMCgSNw8ubqZcSfxG-A5DWmdBr3CmZ3yY\",\n\t\"token_type_hint\":\"access_token\"\n}"},"url":"{{baseurl}}/token-srv/introspect","description":"<h1 id=\"description\">Description</h1>\n<p>To introspect the token with bearer token flow</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>TokenIntrospectionRequest</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authentication: Bearer M2U0YWQzNGUtOTdjNS00MTBkLTgyYzktMWQ...\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class TokenIntrospectionRequest {\n    token: string = \"\";\n    token_type_hint?: string;\n    roles?: string[];\n    scopes?: string[];\n    groups?: GroupValidationEntity[];\n    strictGroupValidation: boolean = false;\n    strictScopeValidation: boolean = false;\n    strictRoleValidation: boolean = false;\n    strictValidation: boolean = false;\n    client_id?: string;\n    client_secret?: string;\n    request_url?: string;\n    request_time?: number;\n    request_headers?: any;\n}\n\nclass GroupValidationEntity {\n    groupId?: string;\n    groupType?: string;\n    roles?: string[];\n    strictRoleValidation: boolean = false;\n    strictValidation: boolean = false;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">Redirects with the active, scope, client_id, username, token_type and so on\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-srv","introspect"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"58344301-eb92-4288-a001-88dafdb88ac0","name":"in body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"token\":\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjFlOGQ5MTFlLTFkMzUtNGEzMi1hMTlhLTkyNDk0NGI2MDA1MiJ9.eyJzdWIiOiI0ZWMxM2FmMy05MmRmLTQyOWYtYjk4NS05NTRiNzBhMzJjYzAiLCJhdWQiOiI0ODMyOTcwZC1lYTE4LTRjODYtYTk1OS1mYjcyNGFhMDE3MDQiLCJleHAiOjE1MTkyMjY1OTIsImlhdCI6MTUxOTE0MDE5MiwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiI3YTUwMTgzZi0zNDQ4LTQyYTQtODVjZS00ZWMxNjQxMmE2ZjEiLCJzY29wZXMiOlsib3BlbmlkIiwicHJvZmlsZSJdLCJyb2xlcyI6WyJUZXN0Il0sImdyb3VwcyI6W10sImF0X2hhc2giOiJkVTdWNFo0S3FGOVEyMWlNWmtIOFFRIiwiY19oYXNoIjoidGFvZTdNeUdKY2VCNWFhWGJ0Q2FWUSIsInByZWZlcnJlZF91c2VybmFtZSI6ImVtYWlsLG1vYmlsZSx1c2VyX25hbWUiLCJuYW1lIjoiY2lkYWFzIGRldmxvcGVyIiwiZ2l2ZW5fbmFtZSI6ImNpZGFhcyIsImZhbWlseV9uYW1lIjoiZGV2bG9wZXIiLCJ1cGRhdGVkX2F0IjoxNTE4MjU5NDQzfQ.IJ9ynDMWEZDgY9hSlgqUXOPzWLCNnKyrgPY5khtZ7DBk4fyoCsmKvwk6KgqC1Xoi_kwI40k6MXBQvH3rzXdGBg\",\n\t\"token_type_hint\":\"id_token\"\n}"},"url":"{{baseurl}}/token-srv/introspect"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"290","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 20 Feb 2018 12:00:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"122-OJNT6FOzeAogtjt/ZFiBjxZw948\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"active\":true,\"aud\":\"4832970d-ea18-4c86-a959-fb724aa01704\",\"client_id\":\"4832970d-ea18-4c86-a959-fb724aa01704\",\"exp\":1519208286,\"iat\":1519121886,\"iss\":\"http://localmanagement.cidaas.de\",\"sub\":\"ee4c77f7-5178-43e5-8ea1-ddc35474547e\",\"token_type\":\"Bearer\"}}"}],"_postman_id":"f3419d74-e13b-4683-bb59-6d7ff167e117"},{"name":"Token Usage update [deprecated]","id":"8417dfda-5461-43ce-af54-bba2198da516","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"1ebd7ec9-a968-4ee0-a8a6-993409d7e5d1\",\n\t\"client_secret\":\"13a20e23-4936-4072-a4f3-3ec8d6017387\",\n\n\t\"token_list\":[\n\t\t{\n\t\t   \"request_url\": \"https://example.com.com/mypage/list\",\n\t\t   \"request_time\": 1521110574194,\n\t\t   \"request_headers\":{\n\t\t\t\t\"User-Agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36\",\n\t\t\t\t\"Referer\":\"https://example.com.com\"\n\t\t\t},\n\t\t\t\"token\":\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjFlOGQ5MTFlLTFkMzUtNGEzMi1hMTlhLTkyNDk0NGI2MDA1MiJ9.eyJzdWIiOiI0ZWMxM2FmMy05MmRmLTQyOWYtYjk4NS05NTRiNzBhMzJjYzAiLCJhdWQiOiI0ODMyOTcwZC1lYTE4LTRjODYtYTk1OS1mYjcyNGFhMDE3MDQiLCJleHAiOjE1MTkyMjY1OTIsImlhdCI6MTUxOTE0MDE5MiwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiI3YTUwMTgzZi0zNDQ4LTQyYTQtODVjZS00ZWMxNjQxMmE2ZjEiLCJzY29wZXMiOlsib3BlbmlkIiwicHJvZmlsZSJdLCJyb2xlcyI6WyJUZXN0Il0sImdyb3VwcyI6W10sImF0X2hhc2giOiJkVTdWNFo0S3FGOVEyMWlNWmtIOFFRIiwiY19oYXNoIjoidGFvZTdNeUdKY2VCNWFhWGJ0Q2FWUSIsInByZWZlcnJlZF91c2VybmFtZSI6ImVtYWlsLG1vYmlsZSx1c2VyX25hbWUiLCJuYW1lIjoiY2lkYWFzIGRldmxvcGVyIiwiZ2l2ZW5fbmFtZSI6ImNpZGFhcyIsImZhbWlseV9uYW1lIjoiZGV2bG9wZXIiLCJ1cGRhdGVkX2F0IjoxNTE4MjU5NDQzfQ.IJ9ynDMWEZDgY9hSlgqUXOPzWLCNnKyrgPY5khtZ7DBk4fyoCsmKvwk6KgqC1Xoi_kwI40k6MXBQvH3rzXdGBg\",\n\t\t\t\"roles\":[\"role1\",\"role2\"],\n\t\t\t\"scopes\":[\"scope1\",\"scope2\"]\n\t\t}\n\t]\n}\n\n\n"},"url":"{{baseurl}}/token-srv/introspect/async/tokenusage","description":"<h1 id=\"description\">Description</h1>\n<p>To update the token usage</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>TokenAsyncTokenCheckedEvent</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class TokenAsyncTokenCheckedEvent {\n    client_id: string = \"\";\n    client_secret: string = \"\";\n    token_list?: TokenIntrospectionRequest[];\n}\n\nclass TokenIntrospectionRequest {\n    token: string = \"\";\n    token_type_hint?: string;\n    roles?: string[];\n    scopes?: string[];\n    groups?: GroupValidationEntity[];\n    strictGroupValidation: boolean = false;\n    strictScopeValidation: boolean = false;\n    strictRoleValidation: boolean = false;\n    strictValidation: boolean = false;\n    client_id?: string;\n    client_secret?: string;\n    request_url?: string;\n    request_time?: number;\n    request_headers?: any;\n}\nclass GroupValidationEntity {\n    groupId?: string;\n    groupType?: string;\n    roles?: string[];\n    strictRoleValidation: boolean = false;\n    strictValidation: boolean = false;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>401 : UNAUTHORIZED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-srv","introspect","async","tokenusage"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"f408888c-e53f-489e-8620-eeea2da149a2","name":"in body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"token\":\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjFlOGQ5MTFlLTFkMzUtNGEzMi1hMTlhLTkyNDk0NGI2MDA1MiJ9.eyJzdWIiOiI0ZWMxM2FmMy05MmRmLTQyOWYtYjk4NS05NTRiNzBhMzJjYzAiLCJhdWQiOiI0ODMyOTcwZC1lYTE4LTRjODYtYTk1OS1mYjcyNGFhMDE3MDQiLCJleHAiOjE1MTkyMjY1OTIsImlhdCI6MTUxOTE0MDE5MiwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiI3YTUwMTgzZi0zNDQ4LTQyYTQtODVjZS00ZWMxNjQxMmE2ZjEiLCJzY29wZXMiOlsib3BlbmlkIiwicHJvZmlsZSJdLCJyb2xlcyI6WyJUZXN0Il0sImdyb3VwcyI6W10sImF0X2hhc2giOiJkVTdWNFo0S3FGOVEyMWlNWmtIOFFRIiwiY19oYXNoIjoidGFvZTdNeUdKY2VCNWFhWGJ0Q2FWUSIsInByZWZlcnJlZF91c2VybmFtZSI6ImVtYWlsLG1vYmlsZSx1c2VyX25hbWUiLCJuYW1lIjoiY2lkYWFzIGRldmxvcGVyIiwiZ2l2ZW5fbmFtZSI6ImNpZGFhcyIsImZhbWlseV9uYW1lIjoiZGV2bG9wZXIiLCJ1cGRhdGVkX2F0IjoxNTE4MjU5NDQzfQ.IJ9ynDMWEZDgY9hSlgqUXOPzWLCNnKyrgPY5khtZ7DBk4fyoCsmKvwk6KgqC1Xoi_kwI40k6MXBQvH3rzXdGBg\",\n\t\"token_type_hint\":\"id_token\"\n}"},"url":"{{baseurl}}/token-srv/introspect"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"290","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 20 Feb 2018 12:00:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"122-OJNT6FOzeAogtjt/ZFiBjxZw948\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"active\":true,\"aud\":\"4832970d-ea18-4c86-a959-fb724aa01704\",\"client_id\":\"4832970d-ea18-4c86-a959-fb724aa01704\",\"exp\":1519208286,\"iat\":1519121886,\"iss\":\"http://localmanagement.cidaas.de\",\"sub\":\"ee4c77f7-5178-43e5-8ea1-ddc35474547e\",\"token_type\":\"Bearer\"}}"}],"_postman_id":"8417dfda-5461-43ce-af54-bba2198da516"},{"name":"Token Usage update","id":"3294d34f-f22e-4fd6-a9ac-1b7013ee7a46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"1ebd7ec9-a968-4ee0-a8a6-993409d7e5d1\",\n\t\"client_secret\":\"13a20e23-4936-4072-a4f3-3ec8d6017387\",\n\n\t\"token_list\":[\n\t\t{\n\t\t   \"request_url\": \"https://example.com.com/mypage/list\",\n\t\t   \"request_time\": 1521110574194,\n\t\t   \"request_headers\":{\n\t\t\t\t\"User-Agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36\",\n\t\t\t\t\"Referer\":\"https://example.com.com\"\n\t\t\t},\n\t\t\t\"token\":\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjFlOGQ5MTFlLTFkMzUtNGEzMi1hMTlhLTkyNDk0NGI2MDA1MiJ9.eyJzdWIiOiI0ZWMxM2FmMy05MmRmLTQyOWYtYjk4NS05NTRiNzBhMzJjYzAiLCJhdWQiOiI0ODMyOTcwZC1lYTE4LTRjODYtYTk1OS1mYjcyNGFhMDE3MDQiLCJleHAiOjE1MTkyMjY1OTIsImlhdCI6MTUxOTE0MDE5MiwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiI3YTUwMTgzZi0zNDQ4LTQyYTQtODVjZS00ZWMxNjQxMmE2ZjEiLCJzY29wZXMiOlsib3BlbmlkIiwicHJvZmlsZSJdLCJyb2xlcyI6WyJUZXN0Il0sImdyb3VwcyI6W10sImF0X2hhc2giOiJkVTdWNFo0S3FGOVEyMWlNWmtIOFFRIiwiY19oYXNoIjoidGFvZTdNeUdKY2VCNWFhWGJ0Q2FWUSIsInByZWZlcnJlZF91c2VybmFtZSI6ImVtYWlsLG1vYmlsZSx1c2VyX25hbWUiLCJuYW1lIjoiY2lkYWFzIGRldmxvcGVyIiwiZ2l2ZW5fbmFtZSI6ImNpZGFhcyIsImZhbWlseV9uYW1lIjoiZGV2bG9wZXIiLCJ1cGRhdGVkX2F0IjoxNTE4MjU5NDQzfQ.IJ9ynDMWEZDgY9hSlgqUXOPzWLCNnKyrgPY5khtZ7DBk4fyoCsmKvwk6KgqC1Xoi_kwI40k6MXBQvH3rzXdGBg\",\n\t\t\t\"roles\":[\"role1\",\"role2\"],\n\t\t\t\"scopes\":[\"scope1\",\"scope2\"]\n\t\t}\n\t]\n}\n\n\n"},"url":"{{baseurl}}/token-validator-srv/introspect/async/tokenusage","description":"<h1 id=\"description\">Description</h1>\n<p>To update the token usage</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>TokenAsyncTokenCheckedEvent</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class TokenAsyncTokenCheckedEvent {\n    client_id: string = \"\";\n    client_secret: string = \"\";\n    token_list?: TokenIntrospectionRequest[];\n}\n\nclass TokenIntrospectionRequest {\n    token: string = \"\";\n    token_type_hint?: string;\n    roles?: string[];\n    scopes?: string[];\n    groups?: GroupValidationEntity[];\n    strictGroupValidation: boolean = false;\n    strictScopeValidation: boolean = false;\n    strictRoleValidation: boolean = false;\n    strictValidation: boolean = false;\n    client_id?: string;\n    client_secret?: string;\n    request_url?: string;\n    request_time?: number;\n    request_headers?: any;\n}\nclass GroupValidationEntity {\n    groupId?: string;\n    groupType?: string;\n    roles?: string[];\n    strictRoleValidation: boolean = false;\n    strictValidation: boolean = false;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>401 : UNAUTHORIZED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-validator-srv","introspect","async","tokenusage"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"8bef8750-0e55-46a0-8d39-6def490b6182","name":"in body","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"token\":\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjFlOGQ5MTFlLTFkMzUtNGEzMi1hMTlhLTkyNDk0NGI2MDA1MiJ9.eyJzdWIiOiI0ZWMxM2FmMy05MmRmLTQyOWYtYjk4NS05NTRiNzBhMzJjYzAiLCJhdWQiOiI0ODMyOTcwZC1lYTE4LTRjODYtYTk1OS1mYjcyNGFhMDE3MDQiLCJleHAiOjE1MTkyMjY1OTIsImlhdCI6MTUxOTE0MDE5MiwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiI3YTUwMTgzZi0zNDQ4LTQyYTQtODVjZS00ZWMxNjQxMmE2ZjEiLCJzY29wZXMiOlsib3BlbmlkIiwicHJvZmlsZSJdLCJyb2xlcyI6WyJUZXN0Il0sImdyb3VwcyI6W10sImF0X2hhc2giOiJkVTdWNFo0S3FGOVEyMWlNWmtIOFFRIiwiY19oYXNoIjoidGFvZTdNeUdKY2VCNWFhWGJ0Q2FWUSIsInByZWZlcnJlZF91c2VybmFtZSI6ImVtYWlsLG1vYmlsZSx1c2VyX25hbWUiLCJuYW1lIjoiY2lkYWFzIGRldmxvcGVyIiwiZ2l2ZW5fbmFtZSI6ImNpZGFhcyIsImZhbWlseV9uYW1lIjoiZGV2bG9wZXIiLCJ1cGRhdGVkX2F0IjoxNTE4MjU5NDQzfQ.IJ9ynDMWEZDgY9hSlgqUXOPzWLCNnKyrgPY5khtZ7DBk4fyoCsmKvwk6KgqC1Xoi_kwI40k6MXBQvH3rzXdGBg\",\n\t\"token_type_hint\":\"id_token\"\n}"},"url":"{{baseurl}}/token-srv/introspect"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"290","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 20 Feb 2018 12:00:40 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"122-OJNT6FOzeAogtjt/ZFiBjxZw948\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"success\":true,\"status\":200,\"data\":{\"active\":true,\"aud\":\"4832970d-ea18-4c86-a959-fb724aa01704\",\"client_id\":\"4832970d-ea18-4c86-a959-fb724aa01704\",\"exp\":1519208286,\"iat\":1519121886,\"iss\":\"http://localmanagement.cidaas.de\",\"sub\":\"ee4c77f7-5178-43e5-8ea1-ddc35474547e\",\"token_type\":\"Bearer\"}}"}],"_postman_id":"3294d34f-f22e-4fd6-a9ac-1b7013ee7a46"}],"id":"7be81ea8-95df-43c3-af3b-567aea1dcd58","_postman_id":"7be81ea8-95df-43c3-af3b-567aea1dcd58","description":""},{"name":"Revoke","item":[{"name":"Revoke access token","id":"028cd0d7-a39e-4c7a-ab7b-a1b9db244f5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}],"advancedConfig":[{"key":"showPassword","value":"<show-password>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"token\":\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjFlOGQ5MTFlLTFkMzUtNGEzMi1hMTlhLTkyNDk0NGI2MDA1MiJ9.eyJzdWIiOiI0ZWMxM2FmMy05MmRmLTQyOWYtYjk4NS05NTRiNzBhMzJjYzAiLCJhdWQiOiI0ODMyOTcwZC1lYTE4LTRjODYtYTk1OS1mYjcyNGFhMDE3MDQiLCJleHAiOjE1MTkyMjY1OTIsImlhdCI6MTUxOTE0MDE5MiwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiI3YTUwMTgzZi0zNDQ4LTQyYTQtODVjZS00ZWMxNjQxMmE2ZjEiLCJzY29wZXMiOlsib3BlbmlkIiwicHJvZmlsZSJdLCJyb2xlcyI6WyJUZXN0Il0sImdyb3VwcyI6W10sImF0X2hhc2giOiJkVTdWNFo0S3FGOVEyMWlNWmtIOFFRIiwiY19oYXNoIjoidGFvZTdNeUdKY2VCNWFhWGJ0Q2FWUSIsInByZWZlcnJlZF91c2VybmFtZSI6ImVtYWlsLG1vYmlsZSx1c2VyX25hbWUiLCJuYW1lIjoiY2lkYWFzIGRldmxvcGVyIiwiZ2l2ZW5fbmFtZSI6ImNpZGFhcyIsImZhbWlseV9uYW1lIjoiZGV2bG9wZXIiLCJ1cGRhdGVkX2F0IjoxNTE4MjU5NDQzfQ.IJ9ynDMWEZDgY9hSlgqUXOPzWLCNnKyrgPY5khtZ7DBk4fyoCsmKvwk6KgqC1Xoi_kwI40k6MXBQvH3rzXdGBg\"\n}"},"url":"{{baseurl}}/token-srv/revoke","description":"<h1 id=\"description\">Description</h1>\n<p>To revoke the access_token and its parent token</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>TokenIntrospectionRequest</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class TokenIntrospectionRequest {\n    token: string = \"\";\n    token_type_hint?: string;\n    roles?: string[];\n    scopes?: string[];\n    groups?: GroupValidationEntity[];\n    strictGroupValidation: boolean = false;\n    strictScopeValidation: boolean = false;\n    strictRoleValidation: boolean = false;\n    strictValidation: boolean = false;\n    client_id?: string;\n    client_secret?: string;\n    request_url?: string;\n    request_time?: number;\n    request_headers?: any;\n}\nclass GroupValidationEntity {\n    groupId?: string;\n    groupType?: string;\n    roles?: string[];\n    strictRoleValidation: boolean = false;\n    strictValidation: boolean = false;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>401 : UNAUTHORIZED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-srv","revoke"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"028cd0d7-a39e-4c7a-ab7b-a1b9db244f5f"}],"id":"78964bec-24f0-4fb9-be81-87a4e66fa98d","_postman_id":"78964bec-24f0-4fb9-be81-87a4e66fa98d","description":""},{"name":"UserInfo","item":[{"name":"User info [ POST ]","id":"b119bcd8-81e4-4df9-9504-493c4fd7405f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/users-srv/userinfo","description":"<h1 id=\"description\">Description</h1>\n<p>To get the user information from the system</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>access_token</code> in the headers</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserInfo;\n}\n\nclass UserInfo {\n    sub: string = \"\";\n    identityId: string = \"\";\n    name: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    provider: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    email_verified: boolean = false;\n    mobile_number_verified: boolean = false;\n    username: string = \"\";\n    userStatus: string = \"\";\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","userinfo"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b119bcd8-81e4-4df9-9504-493c4fd7405f"},{"name":"Userinfo [GET]","id":"baa9c039-2d33-4462-a0c3-1fb331b785b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"url":"{{baseurl}}/users-srv/userinfo","description":"<h1 id=\"description\">Description</h1>\n<p>To get the user information from the system</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>access_token</code> in the headers</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserInfo;\n}\n\nclass UserInfo {\n    sub: string = \"\";\n    identityId: string = \"\";\n    name: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    provider: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    email_verified: boolean = false;\n    mobile_number_verified: boolean = false;\n    username: string = \"\";\n    userStatus: string = \"\";\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","userinfo"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"baa9c039-2d33-4462-a0c3-1fb331b785b9"},{"name":"User info by sub [POST]","id":"ad03e67b-e4f4-4280-b297-b33ddf3a0713","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/users-srv/userinfo/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>To get the user information from the system by passing sub in path params</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>access_token</code> in the headers and <code>sub</code> in the Path params</p>\n<h2 id=\"path-params\">Path Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserInfo;\n}\n\nclass UserInfo {\n    sub: string = \"\";\n    identityId: string = \"\";\n    name: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    provider: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    email_verified: boolean = false;\n    mobile_number_verified: boolean = false;\n    username: string = \"\";\n    userStatus: string = \"\";\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","userinfo",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"044ea75e-d20e-4eb5-aef8-9bb4a6b556dd","type":"string","value":"","key":"sub"}]}},"response":[],"_postman_id":"ad03e67b-e4f4-4280-b297-b33ddf3a0713"},{"name":"User info by sub [GET]","id":"ce32f294-ead3-4739-b3d7-09e7fb93328e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/users-srv/userinfo/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>To get the user information from the system by passing sub in path params</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>access_token</code> in the headers and <code>sub</code> in the Path params</p>\n<h2 id=\"path-params\">Path Params</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub: string;\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">No Request Entity required\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserInfo;\n}\n\nclass UserInfo {\n    sub: string = \"\";\n    identityId: string = \"\";\n    name: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    provider: string = \"\";\n    email: string = \"\";\n    mobile: string = \"\";\n    email_verified: boolean = false;\n    mobile_number_verified: boolean = false;\n    username: string = \"\";\n    userStatus: string = \"\";\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","userinfo",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"8db5a912-c19d-41e9-b916-b8922d571736","type":"string","value":"","key":"sub"}]}},"response":[],"_postman_id":"ce32f294-ead3-4739-b3d7-09e7fb93328e"}],"id":"7e287839-8543-4f08-84a0-bea2a00467fb","_postman_id":"7e287839-8543-4f08-84a0-bea2a00467fb","description":""},{"name":"Logout","item":[{"name":"Logout Token","id":"fa2d72d3-407b-4f0c-b90f-cd749c72503b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/session/end_session?access_token_hint=eyJraWQiOiJhb2N0IiwiYWxnIjoiUlMyNTYifQ...&post_logout_redirect_uri=https://sampleeshop.cidaas.de/logouturl","description":"<h1 id=\"description\">Description</h1>\n<p>To logout the session</p>\n<h2 id=\"scopes\">Scopes</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes required\n</code></pre><h2 id=\"groups-and-roles\">Groups and Roles</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Groups required\n</code></pre><h2 id=\"request\">Request</h2>\n<p>It expects to pass <code>EndSessionRequestEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class EndSessionRequestEntity {\n    id_token_hint?: string;\n    access_token_hint?: string;\n    post_logout_redirect_uri?: string;\n    state?: string;\n}\n</code></pre>\n<h2 id=\"response\">Response</h2>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">Redirects to the logout url, if not specified logout url it will redirects to the login screen\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["session","end_session"],"host":["{{baseurl}}"],"query":[{"key":"access_token_hint","value":"eyJraWQiOiJhb2N0IiwiYWxnIjoiUlMyNTYifQ..."},{"key":"post_logout_redirect_uri","value":"https://sampleeshop.cidaas.de/logouturl"}],"variable":[]}},"response":[],"_postman_id":"fa2d72d3-407b-4f0c-b90f-cd749c72503b"}],"id":"38d07ac8-d36c-4b0e-a442-c17a801fe749","_postman_id":"38d07ac8-d36c-4b0e-a442-c17a801fe749","description":""},{"name":"PreLogin","item":[{"name":"Pre login check","id":"92380a44-1915-4df2-9981-30afd7af4329","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/token-srv/prelogin/metadata/:track_id","description":"<h1 id=\"description\">Description</h1>\n<p>Pre login Check</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>track_id</code> entity in the param</p>\n<h2 id=\"param\">Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>track_id\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no body required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ITokenPreValidation;\n}\n\ninterface ITokenPreValidation  {\n    _id: string;\n    id: string;\n    loginResponseEntity: ILoginResponseEntity;\n    logged_in: boolean;\n    validation_type: string;\n    login_request: AccessTokenRequest;\n    meta_data: PasswordResetMetaData | ConsentManagementMetaData | MissingFieldMetaData | FraudDetectionEntity | ScopeConsentMetaDataWrapper | GeneralMFAMetaData | MissingSuggestedMFA;\n    used: boolean;\n    reason_meta_data: any;\n}\n\ninterface FraudDetectionEntity {\n    accessToken: string;\n    clientId: string;\n    userId: string;\n    tenantKey: string;\n    referrer: string;\n    ipAddress: string;\n    host: string;\n    acceptLanguage: string;\n    userAgent: string;\n    requestURL: string;\n    success: boolean;\n    requestedScopes: string;\n    allowedScopes: string;\n    requestedRoles: string;\n    allowedRoles: string;\n    createdTime: string;\n    factEventType: string;\n    fingerprint: string;\n    browser: string;\n    lat: string;\n    lng: string;\n    isMFAPassed: boolean;\n}\n\ninterface ScopeConsentMetaDataWrapper {\n    scopes: ScopeConsentMetaData[] = [];\n}\ninterface ScopeConsentMetaData {\n    scope: string = \"\";\n    description: string = \"\";\n}\n\ninterface GeneralMFAMetaData {\n    is_user_level: boolean = false;\n}\n\ninterface ILoginResponseEntity {\n    sub: string;\n    identityId: string;\n    provider: string;\n    providerUserId: string;\n    success: boolean;\n    error: string;\n    error_description: string;\n    idpIds: string;\n}\n\ninterface MissingSuggestedMFA {\n    suggested_mfas: string[] = [];\n}\n\ninterface ConsentManagementMetaData {\n    consent_name: string = \"\";\n    consent_version: number = 0;\n    consent_id: string = \"\";\n    consent_version_id: string = \"\";\n    action_type: string = \"\";\n    field_key: string = \"\";\n}\n\ninterface MissingFieldMetaData {\n    missing_fields: string[] = [];\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-srv","prelogin","metadata",":track_id"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"c89c0268-47e2-4a48-b6e5-d7d453c9890d","type":"string","value":"f475be34-425a-45bd-86b8-ca6af6fe290a","key":"track_id"}]}},"response":[],"_postman_id":"92380a44-1915-4df2-9981-30afd7af4329"}],"id":"4e04084a-2d4f-491d-bb07-00cbc85bae28","_postman_id":"4e04084a-2d4f-491d-bb07-00cbc85bae28","description":""},{"name":"Device Flow","item":[{"name":"Init Device Auth Request","id":"7ebef0f0-4088-43ce-a316-94463f72cb04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/device/authz?client_id=ddadc5c4-ad3b-46fc-9169-a27a0673a025&scope=openid profile email roles groups&nonce=test","description":"<h1 id=\"description\">Description</h1>\n<p>Initialize Device Auth Request</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>client_id</code> entity in the Queryparam</p>\n<h2 id=\"queryparams\">Queryparams</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface AuthRequestEntity {\n    client_id: string;\n    response_mode: string;\n    response_type: string;\n    scope: string;\n    state: string;\n    redirect_uri: string;\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no body required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IDeviceInitAuthResponse;\n}\n\ninterface IDeviceInitAuthResponse {\n    device_code?: string;\n    user_code?: string;\n    verification_uri?: string;\n    verification_uri_complete?: string;\n    expires_in?: number;\n    interval?: number;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","device","authz"],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"ddadc5c4-ad3b-46fc-9169-a27a0673a025"},{"key":"scope","value":"openid profile email roles groups"},{"key":"nonce","value":"test"}],"variable":[]}},"response":[],"_postman_id":"7ebef0f0-4088-43ce-a316-94463f72cb04"},{"name":"Generate Token","id":"2e08d537-71b2-455f-bcf4-5f044325e3ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"urn:ietf:params:oauth:grant-type:device_code","type":"text"},{"key":"client_id","value":"ddadc5c4-ad3b-46fc-9169-a27a0673a025","type":"text"},{"key":"device_code","value":"ef6c3055-eb6b-42cc-9330-7cd1d2ba5dd1","type":"text"}]},"url":"{{baseurl}}/token-srv/token","description":"<h1 id=\"description\">Description</h1>\n<p>Generate Access Token</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>client_id</code> entity in the body</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface AccessTokenRequest {\n    grant_type?: string;\n    code?: string;\n    redirect_uri?: string;\n    client_id?: string;\n    client_secret?: string;\n    state?: string;\n    scope?: string;\n    refresh_token?: string;\n    code_verifier?: string;\n    username?: string;\n    password?: string;\n    requestId?: string;\n    provider?: string;\n    host?: string;\n    client_assertion?: string;\n    client_assertion_type?: string;\n\n    client_ip?: string;\n    captcha?: string;\n    locale?: string;\n    username_type?: string;\n    signature?: string;\n    remeber_me?: boolean;\n\n\n    user_agent: string = \"\";\n    ip_address: string = \"\";\n    accept_language: string = \"\";\n    lat: string = \"\";\n    lng: string = \"\";\n    finger_print: string = \"\";\n    referrer: string = \"\";\n\n    pre_login_id: string = \"\";\n\n    login_type: string = \"\";\n\n    // device code flow\n    device_code: string = \"\";\n\n    // for social logins\n    sub?: string;\n    identityId?: string;\n    providerUserId?: string;\n\n    mfa_exchange_id?: string;\n    dc?: string;\n\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: AccessTokenRequest;\n}\n\ninterface AccessTokenResponse {\n    access_token?: string;\n    id_token?: string;\n    code?: string;\n    refresh_token?: string;\n    state?: string;\n    expires_in?: number;\n    id_token_expires_in?: number;\n    token_type?: string = TokenType.Bearer;\n    sub?: string;\n    sid?: string;\n    loginResponseId?: string;\n    user_id?: string;\n    identity_id?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["token-srv","token"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2e08d537-71b2-455f-bcf4-5f044325e3ab"}],"id":"157bb1bd-2858-4ade-ae7a-bba685280abc","_postman_id":"157bb1bd-2858-4ade-ae7a-bba685280abc","description":""},{"name":"Discovery","item":[{"name":"openid-configuration","id":"e47c3016-905f-45af-9c8a-f60dea750f91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/.well-known/openid-configuration","description":"<h1 id=\"description\">Description</h1>\n<p>Get OpenId Configuration</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no body required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface WellknownConfigResponse {\n    issuer?: string;\n    authorization_endpoint?: string;\n    token_endpoint?: string;\n    userinfo_endpoint?: string;\n    jwks_uri?: string;\n    scopes_supported?: string[];\n    response_types_supported?: string[];\n    response_modes_supported?: string[];\n    subject_types_supported?: string[];\n    id_token_signing_alg_values_supported?: string[];\n    token_endpoint_auth_methods_supported?: string[];\n    claims_supported?: string[];\n    token_endpoint_auth_signing_alg_values_supported?: string[];\n    check_session_iframe?: string;\n    end_session_endpoint?: string;\n    social_provider_token_resolver_endpoint?: string;\n    registration_endpoint?: string;\n    acr_values_supported?: string[];\n    userinfo_signing_alg_values_supported?: string[];\n    userinfo_encryption_alg_values_supported?: string[];\n    userinfo_encryption_enc_values_supported?: string[];\n    id_token_encryption_alg_values_supported?: string[];\n    id_token_encryption_enc_values_supported?: string[];\n    request_object_signing_alg_values_supported?: string[];\n    request_object_encryption_alg_values_supported?: string[];\n    request_object_encryption_enc_values_supported?: string[];\n    display_values_supported?: string[];\n    claim_types_supported?: string[];\n    claims_parameter_supported?: boolean;\n    service_documentation?: string;\n    ui_locales_supported?: string[];\n    introspection_endpoint?: string;\n    introspection_async_update_endpoint?: string;\n    revocation_endpoint?: string;\n    claims_locales_supported?: string[];\n    request_parameter_supported?: boolean;\n    request_uri_parameter_supported?: boolean;\n    require_request_uri_registration?: boolean;\n    op_policy_uri?: string;\n    op_tos_uri?: string;\n    grant_types_supported?: string[];\n    code_challenge_methods_supported?: string[];\n    device_authorization_endpoint?: string;\n\n    scim_endpoint?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":[".well-known","openid-configuration"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e47c3016-905f-45af-9c8a-f60dea750f91"},{"name":"JWKs","id":"fe0ed03f-07ac-46db-a171-b3de3ea51840","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/.well-known/jwks.json","description":"<h1 id=\"description\">Description</h1>\n<p>Get JWKs Configuration</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no body required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IJWKs {\n    keys: {\n        keys: any[];\n    }\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":[".well-known","jwks.json"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fe0ed03f-07ac-46db-a171-b3de3ea51840"}],"id":"0b43cae1-5c55-48a7-9852-69b29792f3f1","_postman_id":"0b43cae1-5c55-48a7-9852-69b29792f3f1","description":""}],"id":"9df7e4f3-bbad-4641-8291-2d5258fd7a25","event":[{"listen":"prerequest","script":{"exec":[""],"id":"4e36bc5d-5b22-4859-a022-7bf6cb1e81b8","type":"text/javascript"}},{"listen":"test","script":{"exec":[""],"id":"138775bc-54a2-4827-ba31-47441814b317","type":"text/javascript"}}],"_postman_id":"9df7e4f3-bbad-4641-8291-2d5258fd7a25","description":""},{"name":"User Self Services","item":[{"name":"Authz","item":[{"name":"Generate Auth Request","id":"31e1046d-8133-464d-ab02-bcefe2f7d264","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"client_id\":\"c4364c44-ddda-4552-9fbc-d1281d9ad351\",\n\t\"redirect_uri\":\"https://yourbaseurl.cidaas.de/user-profile/editprofile\",\n\t\"response_type\":\"code\",\n\t\"scope\":\"openid identities\",\n\t\"nonce\":\"123\"\n}"},"url":"{{baseurl}}/authz-srv/authrequest/authz/generate","description":"<h1 id=\"description\">Description</h1>\n<p>To Generate Auth Request (Request Id Generation)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>client_id</code> and <code>redirect_uri</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IClaimRequestEntity {\n    userinfo: IClaimBodyEntity;\n    id_token: IClaimBodyEntity;\n}\n\ninterface IClaimBodyEntity {\n    [key: string]: IClaimDataEntity;\n}\n\ninterface IClaimDataEntity {\n    value: string;\n    values: string[];\n    essential: boolean;\n}\n\ninterface AuthRequestEntity {\n    client_id: string;\n    response_mode: string;\n    response_type: string;\n    scope: string;\n    state: string;\n    redirect_uri: string;\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IRequestId;\n}\n\ninterface IRequestId {\n    groupname: string;\n    lang: string;\n    view_type: string;\n    requestId: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authrequest","authz","generate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"31e1046d-8133-464d-ab02-bcefe2f7d264"}],"id":"67b3fb5d-f324-40f9-80e1-24b14ea8c57a","_postman_id":"67b3fb5d-f324-40f9-80e1-24b14ea8c57a","description":""},{"name":"ResetPassword","item":[{"name":"Initiate reset password","id":"70d6cc34-fc23-4421-8135-f11c7d51d492","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"resetMedium\":\"ivr\",\n\"phone\":\"+91000000000\",\n\"requestId\":\"ea5511a6-545b-4119-8ba5-86e6a2f5c031\",\n\"processingType\":\"CODE\"\n}"},"url":"{{baseurl}}/users-srv/resetpassword/initiate","description":"<h1 id=\"description\">Description</h1>\n<p>Initiate Reset Password</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>request_id</code> and <code>email</code> or <code>mobile</code> or <code>username</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class ResetPasswordRequest {\n    email: string = \"\"; // *\n    mobile: string = \"\"; // *\n    phone: string = \"\"; // *\n    username: string = \"\"; // *\n    resetMedium: string = \"\";\n    processingType: string = \"\";\n    requestId: string = \"\"; // *\n    provider: string = \"\";\n    resetPasswordId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IResetInitiate;\n}\n\ninterface IResetInitiate {\n    reset_initiated: boolean;\n    rprq: string;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","resetpassword","initiate"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"2ef02c76-e2c5-4272-8908-53800786613c","name":"IVR","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"resetMedium\":\"ivr\",\n\"phone\":\"+919738122401\",\n\"requestId\":\"ea5511a6-545b-4119-8ba5-86e6a2f5c031\",\n\"processingType\":\"CODE\"\n}"},"url":"http://localmanagement.cidaas.de/users-srv/resetpassword/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"111","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 19:11:46 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"6f-pZq7pAFVyIc/zmXg6hRjpn2dTtg\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isRedirect\":false,\"redirect_url\":\"\",\"success\":true,\"error\":null,\"status\":200,\"data\":{\"reset_initiated\":true}}"},{"id":"9dd57119-40f6-4d87-a7af-2ac180fbc6d4","name":"EMail","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"resetMedium\":\"ivr\",\n\"phone\":\"+919738122401\",\n\"requestId\":\"ea5511a6-545b-4119-8ba5-86e6a2f5c031\",\n\"processingType\":\"CODE\"\n}"},"url":"http://localmanagement.cidaas.de/users-srv/resetpassword/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"111","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 08:14:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"6f-pZq7pAFVyIc/zmXg6hRjpn2dTtg\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isRedirect\":false,\"redirect_url\":\"\",\"success\":true,\"error\":null,\"status\":200,\"data\":{\"reset_initiated\":true}}"},{"id":"bbf9f45f-7938-49f7-81e4-11f6dd01dd08","name":"http://localmanagement.cidaas.de/users-srv/resetpassword/initiate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"resetMedium\":\"ivr\",\n\"phone\":\"+919738122401\",\n\"requestId\":\"ea5511a6-545b-4119-8ba5-86e6a2f5c031\",\n\"processingType\":\"CODE\"\n}"},"url":"http://localmanagement.cidaas.de/users-srv/resetpassword/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"111","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 08:14:03 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"6f-pZq7pAFVyIc/zmXg6hRjpn2dTtg\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isRedirect\":false,\"redirect_url\":\"\",\"success\":true,\"error\":null,\"status\":200,\"data\":{\"reset_initiated\":true}}"},{"id":"d8271ddd-9e3e-4f5f-869f-d787013870df","name":"SMS","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"resetMedium\":\"ivr\",\n\"phone\":\"+919738122401\",\n\"requestId\":\"ea5511a6-545b-4119-8ba5-86e6a2f5c031\",\n\"processingType\":\"CODE\"\n}"},"url":"http://localmanagement.cidaas.de/users-srv/resetpassword/initiate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"111","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 19:02:41 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"6f-pZq7pAFVyIc/zmXg6hRjpn2dTtg\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isRedirect\":false,\"redirect_url\":\"\",\"success\":true,\"error\":null,\"status\":200,\"data\":{\"reset_initiated\":true}}"}],"_postman_id":"70d6cc34-fc23-4421-8135-f11c7d51d492"},{"name":"Validate code","id":"33148b1a-9028-4509-abf0-51d584dd11f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"resetRequestId\":\"8dc35fa1-c59c-4eb1-a19f-c58a0155434d\",\n\"code\":\"102643\"\n}"},"url":"{{baseurl}}/users-srv/resetpassword/validatecode","description":"<h1 id=\"description\">Description</h1>\n<p>Validate Reset Password Code</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>resetRequestId</code> and <code>code</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class ValidateResetPasswordCode {\n    resetRequestId: string = \"\";\n    code: string = \"\"; // *\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IResetInitiate;\n}\n\ninterface IValidateCode {\n    exchangeId: string;\n    resetRequestId: string;\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","resetpassword","validatecode"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"03f91ddf-0dd1-45b8-ae25-6027a0303562","name":"http://localmanagement.cidaas.de/users-srv/resetpassword/validatecode","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"resetRequestId\":\"8dc35fa1-c59c-4eb1-a19f-c58a0155434d\",\n\"code\":\"102643\"\n}"},"url":"http://localmanagement.cidaas.de/users-srv/resetpassword/validatecode"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"196","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 10:43:55 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"c4-Q4dW1vOdZJKb1OoH7VSENc2Xbas\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isRedirect\":false,\"redirect_url\":\"\",\"success\":true,\"error\":null,\"status\":200,\"data\":{\"exchangeId\":\"5a9931a2-9099-4889-ba91-1789c4a57096\",\"resetRequestId\":\"8dc35fa1-c59c-4eb1-a19f-c58a0155434d\"}}"}],"_postman_id":"33148b1a-9028-4509-abf0-51d584dd11f2"},{"name":"Accept link click","id":"9bddf722-14bd-4039-8acd-e94adf7f7581","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"resetRequestId\":\"8dc35fa1-c59c-4eb1-a19f-c58a0155434d\",\n\"exchangeId\":\"5a9931a2-9099-4889-ba91-1789c4a57096\",\n\"password\":\"vimal12345\",\n\"confirmPassword\":\"vimal12345\"\n}"},"url":"{{baseurl}}/users-srv/resetpassword/accept","description":"<h1 id=\"description\">Description</h1>\n<p>Accept Reset Password Link Click</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>resetRequestId, exchangeId, password</code> and <code>confirmPassword</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AcceptResetPassword {\n    resetRequestId: string = \"\"; // *\n    exchangeId: string = \"\"; // *\n    password: string = \"\"; // *\n    confirmPassword: string = \"\"; // *\n    provider: string = \"\";\n    requestId: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IResetResponse;\n}\n\ninterface IResetResponse { \n    \"reseted\":boolean\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","resetpassword","accept"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"4e7692bc-8f1a-4582-813c-53abfe89c533","name":"http://localmanagement.cidaas.de/users-srv/resetpassword/accept","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\"resetRequestId\":\"8dc35fa1-c59c-4eb1-a19f-c58a0155434d\",\n\"exchangeId\":\"5a9931a2-9099-4889-ba91-1789c4a57096\",\n\"password\":\"vimal12345\",\n\"confirmPassword\":\"vimal12345\"\n}"},"url":"http://localmanagement.cidaas.de/users-srv/resetpassword/accept"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Credentials","value":"true","name":"Access-Control-Allow-Credentials","description":"Indicates whether or not the response to the request can be exposed when the credentials flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials."},{"key":"Access-Control-Allow-Headers","value":"X-Requested-With,content-type,access_token","name":"Access-Control-Allow-Headers","description":"Used in response to a preflight request to indicate which HTTP headers can be used when making the actual request."},{"key":"Access-Control-Allow-Methods","value":"GET, POST, PUT, OPTIONS, PATCH, DELETE","name":"Access-Control-Allow-Methods","description":"Specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request."},{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"103","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sat, 10 Feb 2018 10:09:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"67-Vr6fyLpdEvMkltrWMVcg69emnHY\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isRedirect\":false,\"redirect_url\":\"\",\"success\":true,\"error\":null,\"status\":200,\"data\":{\"reseted\":true}}"}],"_postman_id":"9bddf722-14bd-4039-8acd-e94adf7f7581"},{"name":"IVR trigger","id":"2b703d7d-caf6-4034-abc8-0a2d0ef8cff1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/notification-srv/ivr/voice.xml?id=4e0a3f83-0cf8-4c06-a777-68dc485f314c&totp=518722","description":"<h1 id=\"description\">Description</h1>\n<p>Trigger IVR Verification for Password Reset</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>uniqueId</code> and <code>totp</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"query-param\">Query Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>id, totp\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>XML Data\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["notification-srv","ivr","voice.xml"],"host":["{{baseurl}}"],"query":[{"key":"id","value":"4e0a3f83-0cf8-4c06-a777-68dc485f314c"},{"key":"totp","value":"518722"}],"variable":[]}},"response":[],"_postman_id":"2b703d7d-caf6-4034-abc8-0a2d0ef8cff1"},{"name":"Reset passwod redirection from the link","id":"8b6820b2-a1a0-4ff5-948c-b21115b9ce7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/users-srv/resetpassword/handle?rprq={{rprq}}","description":"<h1 id=\"description\">Description</h1>\n<p>Reset passwod redirection from the link</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>rprq</code> in the query param.</p>\n<h2 id=\"query-param\">Query param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>rprq\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to password reset page.\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : FOUND</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","resetpassword","handle"],"host":["{{baseurl}}"],"query":[{"key":"rprq","value":"{{rprq}}"}],"variable":[]}},"response":[],"_postman_id":"8b6820b2-a1a0-4ff5-948c-b21115b9ce7c"},{"name":"Load reset password information details by id","id":"4ee0aaf7-1298-42d3-ab91-15e3eb1f9b8a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/users-srv/resetpassword/processingtype/{{rprq}}","description":"<h1 id=\"description\">Description</h1>\n<p>Load reset password information details by id</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>resetPasswordId</code> in the path param.</p>\n<h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>resetPasswordId\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":{ type: \"\" }\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","resetpassword","processingtype","{{rprq}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ee0aaf7-1298-42d3-ab91-15e3eb1f9b8a"},{"name":"Construct password reset page url for the third party service by resetPasswordId (Internal)","id":"9ad0968f-3d17-4829-8fdd-ea1bacc0bb68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{baseurl}}/users-srv/resetpassword/url/{{rprq}}","description":"<h1 id=\"description\">Description</h1>\n<p>Construct password reset page url for the third party service by resetPasswordId (Internal)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>resetPasswordId</code> in the path param.</p>\n<h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>resetPasswordId\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":{ data: \"url\" }\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","resetpassword","url","{{rprq}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ad0968f-3d17-4829-8fdd-ea1bacc0bb68"}],"id":"c82029e5-2828-4e1f-a254-dbd1d77dd912","_postman_id":"c82029e5-2828-4e1f-a254-dbd1d77dd912","description":""},{"name":"RegisterUser","item":[{"name":"Register User","id":"c8667958-9d9b-455c-9676-1d5d89e4a6e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"requestId","value":"139d8efd-eabf-4364-ab43-83bfb529bcb4"}],"body":{"mode":"raw","raw":"{\n            \"birthdate\": \"1989-09-05T00:00:00.000Z\",\n            \"email\": \"vimalprakashts+asdfsdf2342@gmail.com\",\n            \"email_verified\": true,\n            \"family_name\": \"Prakash\",\n            \"gender\": \"male\",\n            \"given_name\": \"Vimal\",\n            \"locale\": \"en_US\",\n            \"middle_name\": \"\",\n            \"mobile_number\": \"+910000000000\",\n            \"mobile_number_verified\": false,\n            \"nickname\": \"\",\n            \"phone_number\": \"\",\n            \"phone_number_verified\": false,\n            \"picture\": \"https://example.com/picture/id\",\n            \"profile\": \"https://example.com/profile/id\",\n            \"provider\": \"self\",\n            \"website\": \"\",\n            \"zoneinfo\": \"\",\n            \"userGroups\": [\n    {\n      \"groupId\": \"CIDAAS_ADMINS\",\n      \"roles\": [\n        \"ADMIN\",\n        \"SECONDARY_ADMIN\",\n        \"USER_DELETE\",\n        \"USER_CREATE\",\n        \"SETTINGS_READ\",\n        \"SETTINGS_CREATE\",\n        \"SETTINGS_RESET\"\n      ]\n    }]\n\n         \n}"},"url":"{{baseurl}}/users-srv/register","description":"<h1 id=\"description\">Description</h1>\n<p>Register User</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>requestId</code> and <code>accept-language</code> in the request header</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>requestId: '7c6bcfbb-388e-47e1-815d-15c7c183034d'\nContent-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AddressEntity {\n    formatted: string = \"\";\n    street_address: string = \"\";\n    locality: string = \"\";\n    region: string = \"\";\n    postal_code: string = \"\";\n    country: string = \"\";\n}\n\ninterface IConsentField {\n    field_key?: string;\n    value?: boolean;\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n\ninterface IMobileEntity {\n    _id: string;\n    id: string;\n    given_phone: string,\n    phone: string,\n    country: string,\n    dail_code: string,\n    carrier_type: string,\n    carrier_name: string,\n    national_format: string,\n    international_format: string,\n    E164_format: string\n}\n\nclass UserEntity {\n\n    // user accounts\n    userStatus: string = \"\";\n    user_status: string = \"\";\n    user_status_reason: string = \"\";\n    // social identies\n    username: string = \"\";\n    sub: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    middle_name: string = \"\";\n    nickname: string = \"\";\n    email: string = \"\";\n    email_verified: boolean = false;\n    mobile_number: string = \"\";\n    mobile_number_obj: IMobileEntity | null = null;\n    mobile_number_verified: boolean = false;\n    phone_number: string = \"\";\n    phone_number_obj: IMobileEntity | null = null;\n    phone_number_verified: boolean = false;\n    profile: string = \"\";\n    picture: string = \"\";\n    website: string = \"\";\n    gender: string = \"\";\n    zoneinfo: string = \"\";\n    locale: string = \"\";\n    birthdate: Date | null = null;\n    address?: AddressEntity;\n    customFields?: any; // Map&lt;string,ICustomFieldData&gt;\n    identityCustomFields?: any;\n    password: string = \"\";\n    provider: string = \"\";\n    identityId: string = \"\";\n    providerUserId: string = \"\";\n\n    mfa_enabled?: boolean;\n\n    // just for migration\n    old_password_hash: string = \"\";\n\n\n    // groups and roles\n    roles?: string[];\n    groups?: IUserGroupMap[];\n    userGroups?: IUserGroupMap[];\n    trackId: string = \"\";\n    rawJSON: string = \"\";\n    need_reset_password: boolean = false;\n\n    no_event: boolean = false;\n    consents?: IConsentField[];\n\n    consent_track_ids?: string[];\n    ignore_default_roles?: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UserCreateResponse;\n}\n\ninterface UserCreateResponse {\n    q: string = \"\";\n    sub: string = \"\";\n    userStatus: string = \"\";\n    email_verified?: boolean = false;\n    mobile_number_verified?: boolean = false;\n    phone_number_verified?: boolean = false;\n    suggested_redirect_uri?: string;\n    suggested_action?: string;\n    next_token?: string;\n    trackId?: string;\n    client_id?: string;\n    is_admin_app?: boolean;\n    password_reset_link?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>409: CONFLICT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","register"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"a937bf58-d4f2-46c2-82ae-f78854011a10","name":"http://localmanagement.cidaas.de/users-srv/register","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"requestId","value":"c0ffb4c3-8b92-4981-abfd-b866f4c4cb06"}],"body":{"mode":"raw","raw":"{\n\t\"email\":\"dineshbabu.s@widas.in\",\n\t\"given_name\":\"Dinesh\",\n\t\"family_name\":\"Babu\",\n\t\"provider\":\"self\",\n\t\"password\":\"test123\"\n}"},"url":"http://localmanagement.cidaas.de/users-srv/register"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*","name":"Access-Control-Allow-Origin","description":"Specifies a URI that may access the resource. For requests without credentials, the server may specify '*' as a wildcard, thereby allowing any origin to access the resource."},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Length","value":"782","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json; charset=utf-8","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Sun, 25 Feb 2018 19:26:23 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"ETag","value":"W/\"30e-fizq99wuhIaLdDs3ifDiPSpBY+8\"","name":"ETag","description":"An identifier for a specific version of a resource, often a message digest"},{"key":"Server","value":"nginx","name":"Server","description":"A name for the server"},{"key":"X-Powered-By","value":"Express","name":"X-Powered-By","description":"Specifies the technology (ASP.NET, PHP, JBoss, e.g.) supporting the web application (version details are often in X-Runtime, X-Version, or X-AspNet-Version)"}],"cookie":[],"responseTime":null,"body":"{\"isPage\":false,\"isRedirect\":false,\"redirect_url\":\"\",\"success\":true,\"error\":null,\"status\":200,\"data\":{\"userStatus\":\"VERIFIED\",\"email_verified\":false,\"suggested_redirect_uri\":\"http://localmanagement.cidaas.de/hosted-srv/public/default/after_register\",\"suggested_action\":\"MFA\",\"next_token\":\"eyJhbGciOiJSUzI1NiIsImtpZCI6IjE1YmViNjZhLWY5ODgtNGQ1OC1iYjcwLTIwYmQ3ZTYzNzU2NiJ9.eyJzaWQiOiIzMzFlNWExNC1iODNhLTRmNjctODBkMS0xZmVhMmVkZTA4MmQiLCJzdWIiOiJBTk9OWU1PVVMiLCJhdWQiOiIzZDM1MGRmNi1jYzk2LTQ5MjctODVlMS0wNTgyYmJmYmQxMjQiLCJleHAiOjE1MTk2NzMxNjQsImlhdCI6MTUxOTU4Njc2NCwiaXNzIjoiaHR0cDovL2xvY2FsbWFuYWdlbWVudC5jaWRhYXMuZGUiLCJqdGkiOiI5OWVlZTljYS1jZWQzLTQ0N2EtOTA2NS1mMDAxMDFlYWIwMmQiLCJzY29wZXMiOltdfQ.LDaFnXrU7hBPrfYVD9aqd3O3U_qWSAXPAc4um9mq-j50eNBKPhNu4sLa1NX4pJrn1wmAExy6j_RACqWXjAwhHg\"}}"}],"_postman_id":"c8667958-9d9b-455c-9676-1d5d89e4a6e0"},{"name":"Un Register","id":"4625d18a-62e7-4250-a523-731530d2f87f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/user/unregister/scheduler/schedule/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Un register user from the system, It de activate the user and schedules the user deletion of configured time, if no revoke action take from user it will detele the user accounts permanently.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>requestId: '7c6bcfbb-388e-47e1-815d-15c7c183034d'\nContent-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UnRegisterResponse;\n}\n\ninterface UnRegisterResponse {\n     result: boolean\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>401 : UNAUTHORIZED</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","unregister","scheduler","schedule",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"a43af77a-4d57-4fed-837e-66be1c37485f","key":"sub"}]}},"response":[{"id":"11685cac-8929-4bf5-b0bf-8432f88bf086","name":"Un Register","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"User-Agent","value":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36","type":"text"},{"key":"Accept-Language","value":"en-US,en;q=0.9,de;q=0.8","type":"text"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{baseurl}}/users-srv/user/unregister/scheduler/schedule/:sub","host":["{{baseurl}}"],"path":["users-srv","user","unregister","scheduler","schedule",":sub"],"variable":[{"key":"sub","value":"a43af77a-4d57-4fed-837e-66be1c37485f"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 11 Jan 2020 15:58:14 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"52"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1578758294733-3edfcf45-f549-4186-a19b-79d7422d5309"},{"key":"ETag","value":"W/\"34-9/VWmcdYeRO4iUKeB2tloo5FH6o\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"result\": true\n    }\n}"}],"_postman_id":"4625d18a-62e7-4250-a523-731530d2f87f"},{"name":"Handle Unregister [Intenal]","id":"478d1e44-b761-421f-9416-b6d83386fcc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/user/unregister/scheduler/handle/dc93ff9e-ed23-45fc-886a-741bd27cb7dc","description":"<h1 id=\"description\">Description</h1>\n<p>Handles the event from the scheduler</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>requestId: '7c6bcfbb-388e-47e1-815d-15c7c183034d'\nContent-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: UnRegisterResponse;\n}\n\ninterface UnRegisterResponse {\n     result: boolean\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","unregister","scheduler","handle","dc93ff9e-ed23-45fc-886a-741bd27cb7dc"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[{"id":"cba4d90f-1f96-42ec-a6b6-57b21de65076","name":"Handle Unregister [Intenal]","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{baseurl}}/users-srv/user/unregister/scheduler/handle/dc93ff9e-ed23-45fc-886a-741bd27cb7dc"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 11 Jan 2020 16:01:06 GMT"},{"key":"Server","value":"nginx"},{"key":"Strict-Transport-Security","value":"max-age=31536000; includeSubDomains;"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"52"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"x-cidaas-ref-number","value":"1578758466775-979c7b55-9d72-4b54-9f3e-195c588fa8a7"},{"key":"ETag","value":"W/\"34-9/VWmcdYeRO4iUKeB2tloo5FH6o\""},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"x-powered-by","value":"cidaas"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"success\": true,\n    \"status\": 200,\n    \"data\": {\n        \"result\": true\n    }\n}"}],"_postman_id":"478d1e44-b761-421f-9416-b6d83386fcc3"}],"id":"bbfdade8-86dd-430d-95be-d39b2db3edb0","_postman_id":"bbfdade8-86dd-430d-95be-d39b2db3edb0","description":""},{"name":"RegistrationFields","item":[{"name":"Get public registration fields by requestid","id":"4c9647f9-2243-4454-ae70-c2f4c5485017","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{baseurl}}/registration-setup-srv/public/list?acceptlanguage=en_US&requestId=bf608dd1-2584-4459-a543-ac1bd50b37e3","description":"<h1 id=\"description\">Description</h1>\n<p>Get Registration fields by requestId</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>requestId</code> and <code>accept-language</code> in the request header</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>requestId: '7c6bcfbb-388e-47e1-815d-15c7c183034d'\nContent-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no body required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity{\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: FlatRegistrationFieldSetup[]\n}\n\ninterface FlatRegistrationFieldSetup {\n    fieldKey?: string;\n    fieldName?: string;\n    dataType?: string;\n    readOnly?: boolean;\n    required?: boolean;\n    order?: number;\n    internal?: boolean;\n    claimable?: boolean;\n    scopes?: string[];\n    fieldDefinition?: WebFieldDefination;\n    localeText?: WebFieldMessage;\n    is_group?: boolean;\n    parent_group_id?: string;\n    fieldType?: string;\n\n    enabled?: boolean;\n\n    consent_refs?: string[];\n\n    _id?: string;\n    id?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["registration-setup-srv","public","list"],"host":["{{baseurl}}"],"query":[{"key":"acceptlanguage","value":"en_US"},{"key":"requestId","value":"bf608dd1-2584-4459-a543-ac1bd50b37e3"}],"variable":[]}},"response":[],"_postman_id":"4c9647f9-2243-4454-ae70-c2f4c5485017"}],"id":"7052502d-bcbc-447f-8827-e0f04e7fda02","_postman_id":"7052502d-bcbc-447f-8827-e0f04e7fda02","description":""},{"name":"Public","item":[{"name":"Get Tenant Basic Info","id":"4cb66935-d2a6-4d5b-be7c-9dd26847a492","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/public-srv/tenantinfo/basic","description":"<h1 id=\"description\">Description</h1>\n<p>Get Tenant Basic Information</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>client_id</code> in the query param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no body required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity{\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: ITenantInfo;\n}\n\ninterface ITenantInfo {\n    tenant_name: string;\n    logo_uri: string;\n    fav_icon_uri: string;\n    allowLoginWith: string;\n    tenant_key: string;\n    versionInfo: string;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["public-srv","tenantinfo","basic"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4cb66935-d2a6-4d5b-be7c-9dd26847a492"},{"name":"Get Public details of requestid","id":"82a2830d-a56f-42b8-a3e7-6f3fc08a5c9e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/public-srv/public/:requestid","description":"<h1 id=\"description\">Description</h1>\n<p>Get Public Client Details by requestId</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>requestId</code> in the param</p>\n<h2 id=\"param\">Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>requestId\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no body required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity{\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: PublicPageResponseEntity;\n}\n\ninterface PublicPageResponseEntity {\n    logo_uri?: string;\n    login_providers?: string[];\n    custom_providers?: IProviderMetadData[];\n    saml_providers?: IProviderMetadData[];\n    ad_providers?: IProviderMetadData[];\n    passwordless_enabled?: boolean = true;\n    policy_uri?: string;\n    tos_uri?: string;\n    copy_right_info?: string;\n    client_name?: string;\n    client_display_name?: string;\n    captcha_site_key?: string;\n    allow_login_with?: string[];\n    fds_enabled?: boolean;\n    registration_enabled?: boolean;\n\n    allowed_mfa?: string[];\n    password_policy?: IPasswordPolicySetup;\n    consentDetails?: IConsentVersion;\n\n    email_verification_required?: boolean;\n    mobile_number_verification_required?: boolean;\n    enable_classical_provider?: boolean;\n\n}\n\ninterface IProviderMetadData {\n    logo_url: string;\n    provider_name: string;\n    display_name: string;\n    type: string;\n}\n\ninterface IPasswordPolicySetup {\n    _id: string;\n    id: string;\n    policy_name: string;\n    minimumLength: number;\n    maximumLength: number;\n    noOfSpecialChars: number;\n    noOfDigits: number;\n    lowerAndUpperCase: boolean;\n    validityDays: number;\n    notifyUserBefore: number;\n    preventAlreadyUsedPwd: boolean;\n    preventPersonalInformation: boolean;\n}\n\ninterface IConsentVersion {\n    _id?: string;\n    id?: string;\n    version?: number;\n    scopes?: string[];\n    customField?: string;\n    consentType?: string;\n    consent_locale?: IConsentLocale;\n    consent_locales?: IConsentLocale[];\n}\n\ninterface IConsentLocale {\n    _id?: string;\n    id?: string;\n    title?: string;\n    url?: string;\n    content?: string;\n    content_agrement_text?: string;\n    locale?: string;\n    consent_id?: string;\n    consent_version_id?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["public-srv","public",":requestid"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"a2a3491d-3168-4f40-abcc-7e752506a272","type":"string","value":"123","key":"requestid"}]}},"response":[],"_postman_id":"82a2830d-a56f-42b8-a3e7-6f3fc08a5c9e"},{"name":"Load communication status by sub","id":"bf9449b4-8dba-49ea-96c9-435c43e6b6b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/user-srv/user/communication/status/{{sub}}","description":"<h1 id=\"description\">Description</h1>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expect <code>sub</code> in the path param</p>\n<h2 id=\"path-param\">Path Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>sub\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"success\":true,\n   \"status\":200,\n   \"data\":{\n    \"USER_NAME\":true,\n    \"EMAIL\":true,\n    \"MOBILE\":false\n    }\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["user-srv","user","communication","status","{{sub}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bf9449b4-8dba-49ea-96c9-435c43e6b6b5"},{"name":"Get user invite details by inviteId","id":"131a0388-823b-402b-97a1-b90352602c69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/invite/info/{{invite_id}}","description":"<h1 id=\"description\">Description</h1>\n<p>Load invite user details by inviteid</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>invite_id</code> in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>invite_id\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface IResponseEntity {\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IUserInvite;\n}\ninterface IUserInvite {\n    _id: string;\n    id: string;\n    invited_email: string;\n    invited_name: string; // given name\n    invited_family_name: string;\n    used_email: string;\n    allow_same_email: boolean;\n    customFields: any;\n    client_id: string;\n    redirect_uri: string;\n    response_type: string;\n    params: any;\n    roles: string[];\n    userGroups: IUserGroupMap[];\n    accepted: boolean;\n    invited_time: Date;\n    accepted_time: Date;\n    valid: boolean;\n    sub: string;\n    invite_count: number;\n    invited_by_name: string;\n    invited_by_sub: string;\n    invite_template_key: string;\n    invite_object: any;\n    lang: string;\n    revoked: boolean;\n    revoked_reason: string;\n    revoked_by: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","invite","info","{{invite_id}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"131a0388-823b-402b-97a1-b90352602c69"}],"id":"201c59b4-781a-44cf-936e-2ea31fa63f99","_postman_id":"201c59b4-781a-44cf-936e-2ea31fa63f99","description":""},{"name":"Login","item":[{"name":"Login User [Form Post]","id":"12c14eac-afd8-40ca-a9c3-b2074eccc1ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"username\":\"vimalprakashts\",\n\t\"password\":\"test123\",\n\t\"requestId\":\"207dd79c-ae1f-4d6a-bc72-a4dde32e62a8\"\n}"},"url":"{{baseurl}}/login-srv/login","description":"<h1 id=\"description\">Description</h1>\n<p>Login User (from Form Post)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>requestId or q or status_id or verificationType</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class PhysicalVerificationLoginRequest {\n    q?: string;\n    sub?: string;\n    requestId?: string;\n    status_id?: string;\n    verificationType?: string;\n    deviceInfo?: IDeviceRequest;\n    device_fp?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no response entity\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["login-srv","login"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"12c14eac-afd8-40ca-a9c3-b2074eccc1ee"},{"name":"Resolve Redirect By requestid","id":"d9afe3ec-33dd-4acf-8591-d185ef7b8a99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/authz-srv/authz/resolve_redirect/:requestid","description":"<h1 id=\"description\">Description</h1>\n<p>Resolve Redict By requestId</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>requestId</code> entity in the Param</p>\n<h2 id=\"param\">Param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>requestId\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no body required\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">redirect to somewhere\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz","resolve_redirect",":requestid"],"host":["{{baseurl}}"],"query":[],"variable":[{"id":"669f1bf0-ddab-48b9-b626-589308fb46f2","type":"string","value":"","key":"requestid"}]}},"response":[],"_postman_id":"d9afe3ec-33dd-4acf-8591-d185ef7b8a99"},{"name":"Login user [SDK]","id":"f5330bea-4e84-463f-8859-9dc66f5843a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"username\":\"developer@cidaas.de\",\n\t\"password\":\"test123\",\n\t\"username_type\":\"email\",\n\t\"requestId\":\"c503add2-6c39-4e26-9273-302f150cfab9\"\n}"},"url":"{{baseurl}}/login-srv/login/sdk","description":"<h1 id=\"description\">Description</h1>\n<p>Login User (via SDK)</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>requestId or q or status_id or verificationType</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Content-Type: application/json\naccept-language: en\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class PhysicalVerificationLoginRequest {\n    q?: string;\n    sub?: string;\n    requestId?: string;\n    status_id?: string;\n    verificationType?: string;\n    deviceInfo?: IDeviceRequest;\n    device_fp?: string;\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">no response entity, redirect to some where\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["login-srv","login","sdk"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5330bea-4e84-463f-8859-9dc66f5843a8"},{"name":"Login after register by trackId","id":"5d58ce42-42bf-4b78-9c06-f8134293a20a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/invite/info/{{invite_id}}","description":"<h1 id=\"description\">Description</h1>\n<p>Login after register by trackId</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>trackId</code> in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>trackId\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to the login success page \n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : FOUND</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","invite","info","{{invite_id}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5d58ce42-42bf-4b78-9c06-f8134293a20a"}],"id":"cc435496-f03a-457d-aa01-98402a106dec","_postman_id":"cc435496-f03a-457d-aa01-98402a106dec","description":""},{"name":"Change Password","item":[{"name":"ChangePassword","id":"8353f58a-2659-450c-88c5-89341f43e9f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"new_password\": \"test123\",\n  \"old_password\": \"test123\",\n  \"confirm_password\": \"test123\",\n  \"identityId\": \"5764e14324aa9a0001cea4bc\"\n}"},"url":"{{baseurl}}/users-srv/changepassword","description":"<h1 id=\"description\">Description</h1>\n<p>Change Password</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>identityId or sub or old_password or new_password or confirm_password</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">interface ChangePasswordEntity {\n    sub: string = \"\";\n    identityId: string = \"\";\n    old_password: string = \"\";\n    new_password: string = \"\";\n    confirm_password: string = \"\";\n    accessToken: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity{\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IResponseData;\n}\n\ninterface IResponseData {\n    changed: boolean;\n}\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","changepassword"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8353f58a-2659-450c-88c5-89341f43e9f5"},{"name":"Change password after login","id":"3c01afda-e774-44be-9968-895e13591253","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"{{access_token}}"}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"new_password\": \"test123\",\n  \"old_password\": \"test123\",\n  \"confirm_password\": \"test123\",\n  \"identityId\": \"5764e14324aa9a0001cea4bc\"\n}"},"url":"{{baseurl}}/users-srv/changepassword","description":"<h1 id=\"description\">Description</h1>\n<p>Change password after login</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>ChangePasswordEntity</code> entity in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export class ChangePasswordEntity {\n    sub: string = \"\"; // *\n    identityId: string = \"\";// *\n    old_password: string = \"\";// *\n    new_password: string = \"\";// *\n    confirm_password: string = \"\";// *\n    accessToken: string = \"\";\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"status\": 200,\n    \"success\": true,\n    \"data\": {\n        \"changed\": true\n    }\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","changepassword"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3c01afda-e774-44be-9968-895e13591253"}],"id":"74424055-4ffc-4f3b-9c74-1b51927994d5","_postman_id":"74424055-4ffc-4f3b-9c74-1b51927994d5","description":""},{"name":"Profile","item":[{"name":"Update Profile","id":"fb5e9b82-873a-47c7-b00c-2a45e76bd07b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n            \"birthdate\": \"1989-09-05T00:00:00.000Z\",\n            \"email\": \"vimalprakashts+asdfsdf23410@gmail.com\",\n            \"email_verified\": true,\n            \"family_name\": \"Prakash\",\n            \"gender\": \"male\",\n            \"given_name\": \"Vimal\",\n            \"locale\": \"en_US\",\n            \"middle_name\": \"\",\n            \n            \"nickname\": \"\",\n            \"phone_number\": \"\",\n            \"phone_number_verified\": false,\n            \"picture\": \"https://example.com/picture/id\",\n            \"profile\": \"https://example.com/profile/id\",\n            \"provider\": \"self\",\n            \"website\": \"\",\n            \"zoneinfo\": \"\",\n            \"userGroups\": [\n    {\n      \"groupId\": \"CIDAAS_ADMINS\",\n      \"roles\": [\n        \"ADMIN\",\n        \"SECONDARY_ADMIN\",\n        \"USER_DELETE\",\n        \"USER_CREATE\",\n        \"SETTINGS_READ\",\n        \"SETTINGS_CREATE\",\n        \"SETTINGS_RESET\"\n      ]\n    }],\n    \"groups\": [\n    {\n      \"groupId\": \"CIDAAS_ADMINS\",\n      \"roles\": [\n        \"ADMIN\",\n        \"SECONDARY_ADMIN\",\n        \"USER_DELETE\",\n        \"USER_CREATE\",\n        \"SETTINGS_READ\",\n        \"SETTINGS_CREATE\",\n        \"SETTINGS_RESET\"\n      ]\n    }]\n\n         \n}"},"url":"{{baseurl}}/users-srv/user/profile/:sub","description":"<h1 id=\"description\">Description</h1>\n<p>Update User Profile</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>sub</code> entity in the param</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer eyJhbGciOiJ.....\nContent-Type: application/json\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">class AddressEntity {\n    formatted: string = \"\";\n    street_address: string = \"\";\n    locality: string = \"\";\n    region: string = \"\";\n    postal_code: string = \"\";\n    country: string = \"\";\n}\n\ninterface IMobileEntity {\n    _id: string;\n    id: string;\n    given_phone: string,\n    phone: string,\n    country: string,\n    dail_code: string,\n    carrier_type: string,\n    carrier_name: string,\n    national_format: string,\n    international_format: string,\n    E164_format: string\n}\n\ninterface IConsentField {\n    field_key?: string;\n    value?: boolean;\n}\n\ninterface IUserGroupMap {\n    sub: string;\n    groupId: string;\n    roles: string[];\n    appendRole: boolean;\n    eventType: string;\n    status: number;\n}\n\nclass UserEntity {\n\n    // user accounts\n    userStatus: string = \"\";\n    user_status: string = \"\";\n    user_status_reason: string = \"\";\n    // social identies\n    username: string = \"\";\n    sub: string = \"\";\n    given_name: string = \"\";\n    family_name: string = \"\";\n    middle_name: string = \"\";\n    nickname: string = \"\";\n    email: string = \"\";\n    email_verified: boolean = false;\n    mobile_number: string = \"\";\n    mobile_number_obj: IMobileEntity | null = null;\n    mobile_number_verified: boolean = false;\n    phone_number: string = \"\";\n    phone_number_obj: IMobileEntity | null = null;\n    phone_number_verified: boolean = false;\n    profile: string = \"\";\n    picture: string = \"\";\n    website: string = \"\";\n    gender: string = \"\";\n    zoneinfo: string = \"\";\n    locale: string = \"\";\n    birthdate: Date | null = null;\n    address?: AddressEntity;\n    customFields?: any; // Map&lt;string,ICustomFieldData&gt;\n    identityCustomFields?: any;\n    password: string = \"\";\n    provider: string = \"\";\n    identityId: string = \"\";\n    providerUserId: string = \"\";\n\n    mfa_enabled?: boolean;\n\n    // just for migration\n    old_password_hash: string = \"\";\n\n\n    // groups and roles\n    roles?: string[];\n    groups?: IUserGroupMap[];\n    userGroups?: IUserGroupMap[];\n    trackId: string = \"\";\n    rawJSON: string = \"\";\n    need_reset_password: boolean = false;\n\n    no_event: boolean = false;\n    consents?: IConsentField[];\n\n    consent_track_ids?: string[];\n    ignore_default_roles?: string[];\n}\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>interface IResponseEntity{\n    success: boolean;\n    error?: BaseException;\n    status: number;\n    data: IResponseData;\n}\n\ninterface IResponseData {\n    updated: boolean;\n}\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>401 : UNAUTHORIZED</p>\n<p>400: BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","user","profile",":sub"],"host":["{{baseurl}}"],"query":[],"variable":[{"type":"string","value":"0dedb028-4ad6-4503-81ec-fae165864996","key":"sub"}]}},"response":[],"_postman_id":"fb5e9b82-873a-47c7-b00c-2a45e76bd07b"}],"id":"ffb5d1e0-bbe6-4ba9-ad71-f1e854e40942","_postman_id":"ffb5d1e0-bbe6-4ba9-ad71-f1e854e40942","description":""},{"name":"Deduplication","item":[{"name":"Get deduplication details by deduplicationId","id":"76695379-3a60-4e66-9ad6-67abf4e6997e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/deduplication/info/{{deduplicationId}}","description":"<h1 id=\"description\">Description</h1>\n<p>Get deduplication details by deduplicationId</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>deduplicationId</code> in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>deduplicationId\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"deduplicationList\" : IDeduplicationResponse\n}\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export interface IDeduplicationResponse  {\n    _id: string;\n    id: string;\n    provider: string;\n    sub: string;\n    q: string;\n    email: string;\n    emailName: string;\n    firstname: string;\n    lastname: string;\n    displayName: string;\n    currentLocale?: string;\n    country?: string;\n    region?: string;\n    city?: string;\n    zipcode?: string;\n}\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","deduplication","info","{{deduplicationId}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"76695379-3a60-4e66-9ad6-67abf4e6997e"},{"name":"User registration via deduplication","id":"5f8bae9c-57aa-42a4-87a1-d34c69f0a802","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/users-srv/deduplication/register/{{deduplicationId}}","description":"<h1 id=\"description\">Description</h1>\n<p>User registration via deduplication</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>deduplicationId</code> in the path param</p>\n<h2 id=\"headers\">Headers</h2>\n<h2 id=\"path-param\">Path param</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>deduplicationId\n</code></pre><h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export class UserCreateResponse {\n    q: string = \"\";\n    sub: string = \"\";\n    userStatus: string = \"\";\n    email_verified?: boolean = false;\n    mobile_number_verified?: boolean = false;\n    phone_number_verified?: boolean = false;\n    suggested_redirect_uri?: string;\n    suggested_action?: string;\n    next_token?: string;\n    trackId?: string;\n    client_id?: string;\n    is_admin_app?: boolean;\n    password_reset_link?: string;\n}\n\n</code></pre>\n<h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["users-srv","deduplication","register","{{deduplicationId}}"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f8bae9c-57aa-42a4-87a1-d34c69f0a802"},{"name":"Handle login response from deduplication login","id":"9510fe19-01ff-4784-98af-66f7c7390dee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"url":"{{baseurl}}/login-srv/deduplication/login/handle","description":"<h1 id=\"description\">Description</h1>\n<p>Handle login response from deduplication login</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>DeduplicationAfterLoginEntity</code> in the body section</p>\n<h2 id=\"headers\">Headers</h2>\n<h2 id=\"body\">Body</h2>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-typescript\">export class DeduplicationAfterLoginEntity {\n    access_token: string = \"\"; // *\n    state: string = \"\"; // *\n}\n\n</code></pre>\n<h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to the login success page\n\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : FOUND</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["login-srv","deduplication","login","handle"],"host":["{{baseurl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9510fe19-01ff-4784-98af-66f7c7390dee"}],"id":"834a85a5-9cc0-44a3-98bd-2f65ba30179e","_postman_id":"834a85a5-9cc0-44a3-98bd-2f65ba30179e","description":""}],"id":"7f83b035-ec6c-4f89-980a-6ef392a25dc8","_postman_id":"7f83b035-ec6c-4f89-980a-6ef392a25dc8","description":""},{"name":"Sample Authz Login URLs","item":[{"name":"Login","item":[{"name":"Social","item":[{"name":"Social Login","id":"eb5346d6-fcbf-43ab-8380-31cec6e7fb40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/login-srv/social/login/facebook/aa7a0b33-f88a-4f94-8637-bcb5dac60062?return_to=http://localhost:8080","description":"<h1 id=\"description\">Description</h1>\n<p>Social Identity Login.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes Required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>No Scopes and Roles Required\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"request\">Request</h1>\n<h2 id=\"query-param\">Query Param</h2>\n<p>It Request to pass this value into <code>grant_type</code>, <code>viewtype</code>, <code>code</code> query param.</p>\n<h3 id=\"request-entity\">Request Entity</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export class SocialLoginInitRequest {\n    provider: string = \"\"; // *\n    requestId: string = \"\"; // *\n    view_type: string = \"\"; \n    remember_me: boolean = false;\n    return_to: string = \"\"; // *\n    popup: boolean = false;\n    [key: string]: any;\n}\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>redirected to return_to URL provided in the request.\n</code></pre><h2 id=\"success\">Success</h2>\n<p>200 : OK</p>\n<h2 id=\"error\">Error</h2>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n","urlObject":{"path":["login-srv","social","login","facebook","aa7a0b33-f88a-4f94-8637-bcb5dac60062"],"host":["{{baseurl}}"],"query":[{"key":"return_to","value":"http://localhost:8080"}],"variable":[]}},"response":[],"_postman_id":"eb5346d6-fcbf-43ab-8380-31cec6e7fb40"}],"id":"3a245094-b5c6-4cc5-8e08-788ccac026f5","_postman_id":"3a245094-b5c6-4cc5-8e08-788ccac026f5","description":""},{"name":"Classical","item":[{"name":"OAuth2","item":[{"name":"Authz Login URL with reponse_type=token","id":"b427675a-1967-4b1c-8c58-3425fef5d216","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=c4364c44-ddda-4552-9fbc-d1281d9ad351&response_type=token&scope=profile%20email%20groups&redirect_uri=https://example.com/dashboard&nonce=xcdes-wsqikurl-4364c44-ddda-4552","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=token</strong> field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // *\n    response_mode: string;\n    response_type: string; // *\n    scope: string;\n    state: string; \n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"c4364c44-ddda-4552-9fbc-d1281d9ad351"},{"key":"response_type","value":"token"},{"key":"scope","value":"profile%20email%20groups"},{"key":"redirect_uri","value":"https://example.com/dashboard"},{"key":"nonce","value":"xcdes-wsqikurl-4364c44-ddda-4552"}],"variable":[]}},"response":[],"_postman_id":"b427675a-1967-4b1c-8c58-3425fef5d216"},{"name":"Authz Login URL with reponse_type=code","id":"d9611dfa-63a2-453e-80a9-22d4656466d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=c4364c44-ddda-4552-9fbc-d1281d9ad351&response_type=code&scope=profile%20email%20groups&redirect_uri=https://example.com/dashboard&nonce=xcdes-wsqikurl-4364c44-ddda-4552","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<p>It expects to pass <strong>response_type=code</strong> field in the query parameter.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // *\n    response_mode: string;\n    response_type: string; // *\n    scope: string;\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"c4364c44-ddda-4552-9fbc-d1281d9ad351"},{"key":"response_type","value":"code"},{"key":"scope","value":"profile%20email%20groups"},{"key":"redirect_uri","value":"https://example.com/dashboard"},{"key":"nonce","value":"xcdes-wsqikurl-4364c44-ddda-4552"}],"variable":[]}},"response":[],"_postman_id":"d9611dfa-63a2-453e-80a9-22d4656466d6"},{"name":"Authz Login URL with response_mode=form_post","id":"3ea6d909-c1ad-497d-808f-57d31c27dcb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=c4364c44-ddda-4552-9fbc-d1281d9ad351&redirect_uri=http%3A%2F%2Flocalhost%3A8080%2F&nonce=123&response_type=token%20id_token&response_mode=form_post&scope=profile%20offline_access","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=form_post</strong> field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // *\n    response_mode: string;\n    response_type: string; // *\n    scope: string;\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"c4364c44-ddda-4552-9fbc-d1281d9ad351"},{"key":"redirect_uri","value":"http%3A%2F%2Flocalhost%3A8080%2F"},{"key":"nonce","value":"123"},{"key":"response_type","value":"token%20id_token"},{"key":"response_mode","value":"form_post"},{"key":"scope","value":"profile%20offline_access"}],"variable":[]}},"response":[],"_postman_id":"3ea6d909-c1ad-497d-808f-57d31c27dcb1"}],"id":"509a3789-2d08-4c8b-ae28-dd3b90bc1f88","_postman_id":"509a3789-2d08-4c8b-ae28-dd3b90bc1f88","description":""},{"name":"OpenId Connect","item":[{"name":"Authz Login URL with reponse_type=token","id":"0eba3198-f9c5-4728-a096-7fcfa3fba777","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=c4364c44-ddda-4552-9fbc-d1281d9ad351&response_type=token&scope=openid%20profile%20email%20groups&redirect_uri=https%3A%2F%2Fexample.com%2Fdasboard&nonce=xcdes-wsqikurl-4364c44-ddda-4552","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=token</strong>, <strong>scope=openid</strong> field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // *\n    response_mode: string;\n    response_type: string; // *\n    scope: string; // *\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"c4364c44-ddda-4552-9fbc-d1281d9ad351"},{"key":"response_type","value":"token"},{"key":"scope","value":"openid%20profile%20email%20groups"},{"key":"redirect_uri","value":"https%3A%2F%2Fexample.com%2Fdasboard"},{"key":"nonce","value":"xcdes-wsqikurl-4364c44-ddda-4552"}],"variable":[]}},"response":[],"_postman_id":"0eba3198-f9c5-4728-a096-7fcfa3fba777"},{"name":"Authz Login URL with reponse_type=code","id":"39b39afb-dcc7-4907-8b9e-c83cb7014942","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=c4364c44-ddda-4552-9fbc-d1281d9ad351&response_type=code&scope=openid%20profile%20email%20groups&redirect_uri=https%3A%2F%2Fexample.com%2Fdasboard&nonce=xcdes-wsqikurl-4364c44-ddda-4552","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=code</strong>, <strong>scope=openid</strong> field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // *\n    response_mode: string;\n    response_type: string; // *\n    scope: string;\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"c4364c44-ddda-4552-9fbc-d1281d9ad351"},{"key":"response_type","value":"code"},{"key":"scope","value":"openid%20profile%20email%20groups"},{"key":"redirect_uri","value":"https%3A%2F%2Fexample.com%2Fdasboard"},{"key":"nonce","value":"xcdes-wsqikurl-4364c44-ddda-4552"}],"variable":[]}},"response":[],"_postman_id":"39b39afb-dcc7-4907-8b9e-c83cb7014942"},{"name":"Authz Login URL with reponse_type=code with PKCE","id":"d7ee5b34-70b2-48de-bf57-bb19826a947c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=01d4b5c1-04f1-494d-9503-ab687cba6fd9&response_type=code&scope=openid%20profile%20email%20groups%20offline_access&redirect_uri=https://www.cidaas.com/&nonce=xcdes-wsqikurl-4364c44-ddda-4552&code_challenge=gvtFZzCWzmpszjTbRqsZdEloI8f0mn3uHG2HBkv8IDg&code_challenge_method=S256","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=code</strong>, <strong>code_challenge=gvtFZzCWzmpszjTbRqsZdEloI8f0mn3uHG2HBkv8IDg</strong>, field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // *\n    response_mode: string;\n    response_type: string; // *\n    scope: string;\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string; // *\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"01d4b5c1-04f1-494d-9503-ab687cba6fd9"},{"key":"response_type","value":"code"},{"key":"scope","value":"openid%20profile%20email%20groups%20offline_access"},{"key":"redirect_uri","value":"https://www.cidaas.com/"},{"key":"nonce","value":"xcdes-wsqikurl-4364c44-ddda-4552"},{"key":"code_challenge","value":"gvtFZzCWzmpszjTbRqsZdEloI8f0mn3uHG2HBkv8IDg"},{"key":"code_challenge_method","value":"S256"}],"variable":[]}},"response":[],"_postman_id":"d7ee5b34-70b2-48de-bf57-bb19826a947c"},{"name":"Authz Login URL with response_type=code id_token token","id":"0fad28e7-4c40-4801-9b16-2a334965d069","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=d6dd11ab-9214-461e-a556-5046be153634&redirect_uri=https%3A%2F%2Fexample.com%2Fdasboard&response_type=token%20id_token%20code&scope=openid%20profile%20email%20groups","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=code id_token token</strong>, <strong>scope=openid</strong> field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string; \n    client_id: string; // *\n    response_mode: string;\n    response_type: string; // *\n    scope: string; // *\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"d6dd11ab-9214-461e-a556-5046be153634"},{"key":"redirect_uri","value":"https%3A%2F%2Fexample.com%2Fdasboard"},{"key":"response_type","value":"token%20id_token%20code"},{"key":"scope","value":"openid%20profile%20email%20groups"}],"variable":[]}},"response":[],"_postman_id":"0fad28e7-4c40-4801-9b16-2a334965d069"},{"name":"Authz Login URL with reponse_type=code token","id":"3b9e1c07-69b9-4c56-854d-ef8992c0b65f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=d6dd11ab-9214-461e-a556-5046be153634&redirect_uri=https%3A%2F%2Fexample.com%2Fdasboard&response_type=token%20code&scope=openid%20profile%20email%20groups","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=code token</strong> field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // *\n    response_mode: string;\n    response_type: string; // *\n    scope: string;\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"d6dd11ab-9214-461e-a556-5046be153634"},{"key":"redirect_uri","value":"https%3A%2F%2Fexample.com%2Fdasboard"},{"key":"response_type","value":"token%20code"},{"key":"scope","value":"openid%20profile%20email%20groups"}],"variable":[]}},"response":[],"_postman_id":"3b9e1c07-69b9-4c56-854d-ef8992c0b65f"},{"name":"Authz Login URL with response_type=code id_token","id":"16125516-7d74-4b41-801f-bda202ae0d70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=d6dd11ab-9214-461e-a556-5046be153634&redirect_uri=https%3A%2F%2Fexample.com%2Fdasboard&response_type=code%20id_token&scope=openid%20profile%20email%20groups","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=code id_token</strong>, <strong>scope=openid</strong> field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // *\n    response_mode: string;\n    response_type: string; // *\n    scope: string;\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"d6dd11ab-9214-461e-a556-5046be153634"},{"key":"redirect_uri","value":"https%3A%2F%2Fexample.com%2Fdasboard"},{"key":"response_type","value":"code%20id_token"},{"key":"scope","value":"openid%20profile%20email%20groups"}],"variable":[]}},"response":[],"_postman_id":"16125516-7d74-4b41-801f-bda202ae0d70"},{"name":"Authz Login URL with id_token token","id":"0646f43f-4ab7-4f96-9d84-cfdc1db3f936","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=c4364c44-ddda-4552-9fbc-d1281d9ad351&response_type=token%20id_token&scope=openid profile email phone address identities&redirect_uri=http://localhost:8080/&nonce=1234","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=id_token token</strong> , <strong>scope=openid</strong> field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // * \n    response_mode: string;\n    response_type: string; // *\n    scope: string;\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"c4364c44-ddda-4552-9fbc-d1281d9ad351"},{"key":"response_type","value":"token%20id_token"},{"key":"scope","value":"openid profile email phone address identities"},{"key":"redirect_uri","value":"http://localhost:8080/"},{"key":"nonce","value":"1234"}],"variable":[]}},"response":[],"_postman_id":"0646f43f-4ab7-4f96-9d84-cfdc1db3f936"},{"name":"Authz Login URL with response_mode=form_post","id":"36d23d28-8e50-4566-8216-a19793e848cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=c4364c44-ddda-4552-9fbc-d1281d9ad351&redirect_uri=http%3A%2F%2Flocalhost%3A8080%2F&nonce=123&response_type=token%20id_token&response_mode=form_post&scope=openid%20profile%20offline_access","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=token id_token</strong>, <strong>response_mode=form_post</strong> , <strong>scope=openid</strong> field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // *\n    response_mode: string; // *\n    response_type: string; // *\n    scope: string;\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"c4364c44-ddda-4552-9fbc-d1281d9ad351"},{"key":"redirect_uri","value":"http%3A%2F%2Flocalhost%3A8080%2F"},{"key":"nonce","value":"123"},{"key":"response_type","value":"token%20id_token"},{"key":"response_mode","value":"form_post"},{"key":"scope","value":"openid%20profile%20offline_access"}],"variable":[]}},"response":[],"_postman_id":"36d23d28-8e50-4566-8216-a19793e848cd"},{"name":"Authz Login URL with requesting offline_access or refresh_token","id":"107a7340-4372-4ae5-bd98-452f67f4a3d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=d6dd11ab-9214-461e-a556-5046be153634&redirect_uri=https%3A%2F%2Flocalhost%3A8080%2Ftest&response_type=code&scope=openid profile offline_access","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=code</strong>, <strong>scope=openid  offline_access</strong> field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // *\n    response_mode: string;\n    response_type: string; // *\n    scope: string;\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string;\n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"d6dd11ab-9214-461e-a556-5046be153634"},{"key":"redirect_uri","value":"https%3A%2F%2Flocalhost%3A8080%2Ftest"},{"key":"response_type","value":"code"},{"key":"scope","value":"openid profile offline_access"}],"variable":[]}},"response":[],"_postman_id":"107a7340-4372-4ae5-bd98-452f67f4a3d8"},{"name":"Authz Login URL with login with prompt=none [openid connect remember me]","id":"c19f5cdd-d505-4f84-b7e3-482d81f1459a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?prompt=none&client_id=c4364c44-ddda-4552-9fbc-d1281d9ad351&response_type=id_token&scope=openid profile&redirect_uri=http://localhost:8080/","description":"<h1 id=\"description\">Description</h1>\n<p>Validate the user credential request and redirect to corresponding landing page.</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <strong>response_type=code</strong>, <strong>scope=openid</strong>, <strong>prompt=none</strong> field in the query parameter.</p>\n<h2 id=\"request-entity-\">Request Entity :</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>export interface AuthRequestEntity {\n    request_id: string;\n    client_id: string; // *\n    response_mode: string;\n    response_type: string; // *\n    scope: string;\n    state: string;\n    redirect_uri: string; // *\n    extraParms: any;\n    nonce: string;\n    display: string;\n    prompt: string; \n\n    max_age: number;\n    ui_locales: string;\n    id_token_hint: string;\n    login_hint: string;\n    acr_values: string;\n    iss: string;\n    target_link_uri: string;\n    view_type: string;\n    claims: IClaimRequestEntity;\n    claims_locales: string;\n    request: string;\n    request_uri: string;\n    registration: string;\n    groupId: string;\n    initiate_login_uri: string;\n    code_challenge: string;\n    code_challenge_method: string;\n    invite_id: string;\n\n    needCode: boolean;\n    needToken: boolean;\n    needDeviceCode: boolean;\n    needIdToken: boolean;\n\n    sso_id: string;\n\n    // backward support\n    viewtype: string;\n    apiversion?: string;\n    grant_type: string;\n    protocol: string;\n\n\n}\n</code></pre><h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to login page (resolved from  hosted page)\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"prompt","value":"none"},{"key":"client_id","value":"c4364c44-ddda-4552-9fbc-d1281d9ad351"},{"key":"response_type","value":"id_token"},{"key":"scope","value":"openid profile"},{"key":"redirect_uri","value":"http://localhost:8080/"}],"variable":[]}},"response":[],"_postman_id":"c19f5cdd-d505-4f84-b7e3-482d81f1459a"}],"id":"e57f935d-f4bd-4f6a-bdf5-2b2b69956e49","_postman_id":"e57f935d-f4bd-4f6a-bdf5-2b2b69956e49","description":""}],"id":"c00c39ff-cf48-4dff-85a8-9465ca361bf5","_postman_id":"c00c39ff-cf48-4dff-85a8-9465ca361bf5","description":""}],"id":"d75c7d8a-7e9a-4cd3-97e7-f13bc4b9facf","_postman_id":"d75c7d8a-7e9a-4cd3-97e7-f13bc4b9facf","description":""},{"name":"Register","item":[{"name":"Classical","item":[{"name":"Classical registraion page redirection","id":"82929d9c-b57e-4363-8fa3-ec1a42cd06b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseurl}}/authz-srv/authz/?client_id=d6dd11ab-9214-461e-a556-5046be153634&redirect_uri=https%3A%2F%2Flocalhost%3A8080%2Ftest&response_type=code&scope=openid profile&view_type=register","description":"<h1 id=\"description\">Description</h1>\n<p>Registration page redirection</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"request\">Request</h1>\n<p>It expects to pass <code>client_id</code>,<code>response_type</code>,<code>scope</code>,<code>view_type</code> and <code>redirect_uri</code> field in the query parameter</p>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to registration page\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["authz-srv","authz",""],"host":["{{baseurl}}"],"query":[{"key":"client_id","value":"d6dd11ab-9214-461e-a556-5046be153634"},{"key":"redirect_uri","value":"https%3A%2F%2Flocalhost%3A8080%2Ftest"},{"key":"response_type","value":"code"},{"key":"scope","value":"openid profile"},{"key":"view_type","value":"register"}],"variable":[]}},"response":[],"_postman_id":"82929d9c-b57e-4363-8fa3-ec1a42cd06b9"}],"id":"c2e46c7a-98c8-4633-836d-3cfac3acbf3e","_postman_id":"c2e46c7a-98c8-4633-836d-3cfac3acbf3e","description":""},{"name":"Social","item":[{"name":"Register Social : {{base_url}}/login-srv/social/register/{{provider}}/{{requestId}}?return_to={{returnToURL}}","id":"a37be0bf-246a-4c74-ba34-635414a91cc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{base_url}}/login-srv/social/register/facebook/aa7a0b33-f88a-4f94-8637-bcb5dac60062?return_to=http://localhost:8080","description":"<h1 id=\"description\">Description</h1>\n<p>Social identity registration</p>\n<h1 id=\"scopes\">Scopes</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no scopes required\n</code></pre><h1 id=\"groups-and-roles\">Groups and Roles</h1>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no groups and roles required\n</code></pre><h1 id=\"query-param\">Query Param</h1>\n<h1 id=\"path-param\">Path Param</h1>\n<p>provider &amp; requestId is mandatory</p>\n<h1 id=\"request\">Request</h1>\n<h2 id=\"headers\">Headers</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no headers\n</code></pre><h2 id=\"body\">Body</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>no body required\n</code></pre><h1 id=\"response\">Response</h1>\n<h3 id=\"response-entity-\">Response Entity :</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Redirect to the social registration page\n</code></pre><h2 id=\"success\">Success</h2>\n<p>302 : Redirect</p>\n<h2 id=\"error\">Error</h2>\n<p>204 : NO_CONTENT</p>\n<p>417 : EXPECTATION_FAILED</p>\n<p>400 : BAD_REQUEST</p>\n<p>500 : INTERNAL_SERVER_ERROR</p>\n","urlObject":{"path":["login-srv","social","register","facebook","aa7a0b33-f88a-4f94-8637-bcb5dac60062"],"host":["{{base_url}}"],"query":[{"key":"return_to","value":"http://localhost:8080"}],"variable":[]}},"response":[],"_postman_id":"a37be0bf-246a-4c74-ba34-635414a91cc7"}],"id":"5038cd0f-d742-45d4-a041-71edab5b21cc","event":[{"listen":"prerequest","script":{"id":"5e95e4d1-79ba-436b-8af3-cd1ca227497e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"ac54bfc9-7185-4b8b-8a1c-41b46817dfb2","type":"text/javascript","exec":[""]}}],"_postman_id":"5038cd0f-d742-45d4-a041-71edab5b21cc","description":""}],"id":"5ee2a02e-23c7-4464-9ca6-c982ea7cbeb2","_postman_id":"5ee2a02e-23c7-4464-9ca6-c982ea7cbeb2","description":""}],"id":"e5af4022-9a4f-4c3a-8ff3-75aa91d6e995","_postman_id":"e5af4022-9a4f-4c3a-8ff3-75aa91d6e995","description":""}],"event":[{"listen":"prerequest","script":{"id":"5b1ee620-316d-4e95-a2ef-835b01b6c024","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e5a9b40c-efec-431e-a6a0-cad7880c2b85","type":"text/javascript","exec":[""]}}]}