https://api.uat.securefinancing.com/v1
The Customer Test Environment URL above provides a fully functional API for testing and development. Please do not use real client data for testing in the environment. When a new major version of the API is going to be released it will be available in the environmnet for some time before it becomes available in production.
https://api.securefinancing.com/v1
For live usage with real client data only. You must be approved for production credentials prior to using this URL. Please use the Customer Test environment for all integration work and testing, prior to migrating to production.
Authentication for the API uses the OAuth2.0 standard with JWT tokens. To generate a token you will invoke a POST on the https://auth.uat.securefinancing.com/oauth/token endpoint for the Customer Test environment, and https://auth.securefinancing.com/oauth/token for production, without any url parameters. The request body for the endpoint call should contain the MonetaGo-provided client id, client secret and oauth audience values. (Note that this is a OAuth2ClientCredentials oauth flow):
{
"client_id": "<client-id>",
"client_secret": "<client-secret>",
"audience": "<oauth-audience>",
"grant_type":"client_credentials"
}
A sample response would contain the base64 encoded JWT token and token expiry details.
{
"access_token": "<base64 encoded JWT Token Value>",
"expires_in": 43200,
"token_type": "Bearer"
}
For any subsequent calls you will provide the
token value in the Authentication
header as a bearer token. For example:
{"Authentication": "Bearer <base64 encoded JWT Token Value>"}
The API is split into 2 primary services:
We will focus on doing a simple deduplication check here. All flows center around a deduplication check. Document authentication is optional and dependent on the availability of relevant trade utility services (sources of document authenticity data) for the supporting documents, used as evidence in the financing, in the geographic region the documents pertain to. This API is for usage only by the lenders in any financing transaction.
Note: The API is structured to be asynchronous
This means that
POST
requests will not respond with results, but will respond with a request identifier which must be used in a subsequentGET
request to retrieve the results.
POST /registrations
- Register
your financing applicationGET status/{request-identification}
- Retrieve the results of your registrationPOST /financings
- Update your
financing registration as ‘Financed’GET status/{request-identification}
- Verify your financing was successfulSee Monitoring
Activity and Polling for best practices on
the /activity
endpoint.