Skip to main content
Version: 3.0.0

Provisioning API

The provisioning API allows you to manage your IXOPAY platform entities. You can create, read, update tenants, merchants, merchant users and connectors.

IXOPAY platform Full Version

The Provisioning API is an optional feature which is not automatically available for all IXOPAY platform clients!

If you want to get access to all IXOPAY platform features you need to upgrade your plan. Please contact our customer success team at [email protected] or our sales team at [email protected] for more information.

Authentication

To authenticate API requests, the API username and password must be sent as BASIC Authentication in the Authorization header, as defined in RFC 7617. To achieve this, the username and password are first concatenated with a : (colon) separator, and the resulting string is then Base64 encoded. Here is an example of how this process works:

  1. Suppose the API username is anyApiUser and the password is myPassword.
  2. Concatenate the username and password with a : separator: anyApiUser:myPassword.
  3. Base64 encode the concatenated string: YW55QXBpVXNlcjpteVBhc3N3b3JkCg==.
  4. Finally, include the Authorization header in the API request with the Base64 encoded string, like so: Authorization: Basic YW55QXBpVXNlcjpteVBhc3N3b3JkCg==.
tip

Many programming frameworks will automatically handle the BASIC Authentication process for you once you provide the username and password to the appropriate request object.

Generating a Provisioning API Key

  1. Navigate to "System Setup" followed by "API Keys" from the main menu.

  2. Click on "+ New API Key" located at the top-right corner of the screen.

  3. Make sure to select "Provisioning API" in the "Services" field.

  4. Specify any IP addresses that are authorized to access the Provisioning API with this API key.

    • Enter multiple IP addresses in a comma-separated format, with no whitespace in between (for instance, "12.12.12.12,41.41.41.41").
    • You can also employ CIDR notation' for specifying IP addresses (for instance, "10.0.0.0/28" includes all IP addresses from 10.0.0.0 to 10.0.0.15).
  5. Click on "+ Create" to generate your new API Key.

  6. It is crucial to securely store the provided password upon creation, as this will be the only opportunity it will be visible to you. Once you navigate away from the page, you'll only have the option to reset the password, not view the existing one.

Security Scheme Type:

http

HTTP Authorization Scheme:

basic