Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 5 Next »

Enable the API

The membes API incurs a setup and ongoing fee (provided on request), the customer can request access by logging a ticket in the Help Desk or emailing support@membes.com.au.

Authorisation & Access URLs

The API EndPoints can be accessed via the following URLs:

Authorisation URL: https://ms-auth.membes-ams.com/

Access URL: https://[customer-membes-url]/api/

The Authorisation URL used is referred to as {{authurl}} throughout this document.

The Access URL used is referred to as {{url}} throughout this document.

Access Token

Almost all API endpoints will need to include a bearer token as part of the API authentication framework.

To call the token endpoint, you will need to obtain the authentication secret.

The customer can request the authentication secret via the Help Desk or developers can email a request to support@membes.com.au.

Request

Method

URL

POST

{{authurl}}token

Body Payload

{
    "orgid":[customer org id],
    "secret":[authentication secret]
}

Response

Status

Response

200

{
  "accesstoken": <token>
}

Endpoints

Endpoints documentation can be found at https://documenter.getpostman.com/view/9582776/TzzDKahF .

Conventions

  • Status - HTTP status code of response

  • All responses are in JSON format.

  • No labels