Getting Started
Last updated
Last updated
Momofin API gives you the ability to integrate eSignature into your applications, websites, CRM, or cloud services. It allows you to create templates, create documents from templates.
Follow these steps to start using Momofin API:
Register for an account
Setting your subdomain
Retrieve access token
Next, let’s look at the step-by-step process of how to send your first eSignature request using the Momofin API.
To register an account, visit the registration page here. Enter your email address and password on the Momofin developer page, then click the Registrasi button. You are then required to validate your email by clicking the email link sent by Momofin.
Get your subdomain from the dashboard. Copy this value for use later when retrieving the access token.
The base URL for interacting with the Momofin API depends on your development stage:
Development Environment: Utilize https://api-dev.momofin.com throughout development and testing phases. This isolated environment allows you to experiment with the API functionality without impacting the production system.
Production Environment: Once your application is ready for deployment, use https://api-v1.momofin.com to interact with the live Momofin platform. This ensures seamless integration with real-world data and processes.
Access token can be obtained by calling the Generate Token API. This token must be obtained before using our API. Prepare your credentials (email and password) for use with the API. You can try to retrieve the access token by pasting this to the terminal:
This request queries the Login API, which in turn returns the access token for the given user. You should receive a response back that resembles the following:
The access token can be retrieved by accessing the data.token
payload from the response. This access token will be used on every request to Momofin platform.
You can view the detailed API documentation of retrieving the access token below:
Now, you're ready to use Momofin API Platform.