Categories
developer documentation v0.0.27
mimik Developer Documentation

mimik Identity Server API Reference

The purpose of the document is to provide reference to the Tenant Identity Service API.

Intended Readers

The intended readers of this document are software developers that will be programming using the Tenant Identity Service API.

What You Need To Know To Use This Reference

This document assumes that you have a basic knowledge of:


IMPORTANT NOTE ABOUT RETRIEVING AN ACCESS TOKEN

In order to get an Access Token that's necessary for working with microservices running under the edgeEngine Runtime, use the undocumented endpoint /token. The endpoint /token is adapted from the OpenID Connect specification.

The following example describes the format for retrieving the an Access Token using the /token endpoint.

curl --request POST \
--url https://mid.mimik360.com/token \
--header ‘content-type: application/x-www-form-urlencoded’ \
--header ‘user-agent: vscode-restclient’ \
--data client_id=<CLIENT_ID> \
--data grant_type=id_token_signin \
--data id_token=<DEVELOPER_ID_TOKEN> \
--data ‘scope=openid edge:mcm edge:clusters edge:account:associate’ \
--data ‘edge_id_token=<EDGE_ID_TOKEN>

WHERE

  • <CLIENT_ID> is the Client ID defined in the given project web page within the mimik Developer Console.
  • <DEVELOPER_ID_TOKEN> is the Developer ID Token generated from within the mimik Account page in the mimik Developer Console.
  • <EDGE_ID_TOKEN> is the edgeIDToken retrieved using the mimik JSON RPC API method getEdgeIdToken.

Reference

The following is the interactive documentation for the mimik Identity Server API Reference.

Was this article helpful?

© mimik technology, Inc. all rights reserved