This section provides detailed information about the API endpoint for creating a secure payment account. Follow the steps below to successfully create an account.

Prerequisites

  • Ensure you have the necessary API credentials.
  • Familiarize yourself with the API structure and data format.

API Endpoint

GET /en/tools/api-documentation/secure_payments/create-account

Request Parameters

  • username: The desired username for the account.
  • email: The email address associated with the account.
  • password: The password for the account.
  • confirm_password: The password confirmation.

Request Example

{
  "username": "john_doe",
  "email": "john.doe@example.com",
  "password": "securepassword123",
  "confirm_password": "securepassword123"
}

Response

The API will return a JSON response indicating the success or failure of the account creation process.

  • status: Indicates the status of the request.
  • message: Provides additional information about the request.
  • data: Contains the details of the created account.

Success Response

{
  "status": "success",
  "message": "Account created successfully.",
  "data": {
    "username": "john_doe",
    "email": "john.doe@example.com",
    "account_id": "123456789"
  }
}

Error Response

{
  "status": "error",
  "message": "Invalid email format."
}

Next Steps

After creating a secure payment account, you can proceed to the next steps as outlined in our Payment Gateway Integration Guide.

For further assistance, please visit our Support Center.

Secure Payment Account