تسجيل الدخول

Introduction
Spaceremit Gateway
At Spaceremit Gateway, we're committed to revolutionizing the way businesses handle online payments. With our robust and flexible payment gateway solutions, we empower businesses to effortlessly manage transactions and enhance customer satisfaction.
Our Services
  • Credit Card Processing: Accept major credit cards such as Visa, Mastercard and more, providing your customers with the convenience of paying with their preferred method.

  • Local Payment Methods: Cater to the specific preferences of your target audience by offering a variety of local payment methods, including bank transfers, e-wallets, and alternative payment solutions.

Get Started
Spaceremit Gateway Structure
Client-Side
Client-Side Configuration
<script>
const SP_PUBLIC_KEY = "YOUR_PUBLIC_KEY"; //Your website public key
const SP_FORM_ID = "#spaceremit-form"; // Identifier for the form
const SP_SELECT_RADIO_NAME = "sp-pay-type-radio"; // Name attribute of radio buttons

const LOCAL_METHODS_BOX_STATUS = true; // Status of local payment methods box
const LOCAL_METHODS_PARENT_ID = "#spaceremit-local-methods-pay"; // Identifier for the container of local payment methods

const CARD_BOX_STATUS = true; // Status of card payment box
const CARD_BOX_PARENT_ID = "#spaceremit-card-pay"; // Identifier for the container of card payment
let SP_FORM_AUTO_SUBMIT_WHEN_GET_CODE = true; // Flag indicating whether the form should automatically submit when getting a code

// Callback function for successful payment
function SP_SUCCESSFUL_PAYMENT(spaceremit_code) {}
// Callback function for failed payment
function SP_FAILD_PAYMENT() {}
// Callback function for receiving message
function SP_RECIVED_MESSAGE(message) {alert(message);}
// Callback function for needing authentication
function SP_NEED_AUTH(target_auth_link) {}
</script>
Explanation:
  1. SP_PUBLIC_KEY: This constant holds the public key of your website. It's a unique identifier used for authentication with the Spaceremit service. Replace <YOUR_PUBLIC_KEY> with the actual or test public key of your website that provided by Spaceremit.Websites And Keys

  2. SP_FORM_ID: This constant defines the identifier for the form element. It helps in locating and manipulating the form within the HTML document.

  3. SP_SELECT_RADIO_NAME: This constant specifies the name attribute of the radio buttons used for selecting the payment method. It's used to group the radio buttons together.

  4. LOCAL_METHODS_BOX_STATUS: This variable determines the status of the container for local payment methods. If set to true, it means that the container will be enabled and displayed; otherwise, it will be hidden.When it's disabled, you can manually remove the radio input from the form.

  5. LOCAL_METHODS_PARENT_ID: This constant specifies the identifier for the container element that holds the local payment methods. It's used to manipulate the container within the HTML document.

  6. CARD_BOX_STATUS: Similar to LOCAL_METHODS_BOX_STATUS, this variable determines the status of the container for card payment methods.When it's disabled, you can manually remove the radio input from the form.

  7. CARD_BOX_PARENT_ID: Similar to LOCAL_METHODS_PARENT_ID, this constant specifies the identifier for the container element that holds the card payment methods.

  8. SP_FORM_AUTO_SUBMIT_WHEN_GET_CODE: This variable is a flag indicating whether the form should automatically submit when getting a code. If set to true, the form will automatically submit; otherwise, it won't.

  9. Callback Functions: These functions are callback functions that are triggered in certain events:

    • SP_SUCCESSFUL_PAYMENT: This function is called when a payment is successfully processed.
    • SP_FAILD_PAYMENT: This function is called when a payment fails.
    • SP_RECIVED_MESSAGE: This function is called when a message is received.
    • SP_NEED_AUTH: This function is called when authentication is required.
Form Configuration

This HTML snippet outlines the client-side configuration necessary for integrating Spaceremit's payment gateway into your website. It includes hidden input fields for specifying the amount, currency, and buyer information . Additionally, it provides options for selecting between local payment methods and card payment, along with respective containers for displaying the available payment methods. Finally, it includes a submit button to initiate the payment process. This setup allows seamless integration of Spaceremit's payment functionality into your website's frontend, providing users with a smooth and efficient payment experience.

<!-- Start of form -->
<form id="spaceremit-form" style="width: 400px;padding: 10px;"> 
    <!-- Hidden input fields for amount and currency -->
    <input type="hidden" name="amount"  value="1">
    <input type="hidden" name="currency" value="USD">
    
    <!-- Hidden input fields for buyer information -->
    <input type="hidden" name="fullname" value="<FULLNAME OF BUYER>">
    <input type="hidden" name="email"  value="<EMAIL OF BUYER>">
    <input type="hidden" name="phone"  value="<PHONE OF BUYER>">
    <input type="hidden" name="notes"  value="<CUSTOM FEILD YOU WANT TO ADD>">
    
    <!-- Container for local payment methods -->
    <div class="sp-one-type-select">
        <!-- Local payment methods radio button -->
        <input type="radio" name="sp-pay-type-radio" value="local-methods-pay" id="sp_local_methods_radio" checked>
        <label for="sp_local_methods_radio"><div>Local payment methods</div></label>
        
        <!-- Container for displaying local payment methods -->
        <div id="spaceremit-local-methods-pay"></div>
    </div>
  
    <!-- Container for card payment -->
    <div class="sp-one-type-select">
        <!-- Card payment radio button -->
        <input type="radio" name="sp-pay-type-radio" value="card-pay" id="sp_card_radio" >
        <label for="sp_card_radio"><div>Card payment</div></label>
        
        <!-- Container for card payment -->
        <div id="spaceremit-card-pay"></div>
    </div>
   
    <!-- Button to submit the form -->
    <div><button type="submit">pay</button></div>
    
</form> <!-- End of form -->
Including Spaceremit JavaScript Library

This HTML script tag imports Spaceremit's JavaScript library into your website's frontend, enabling seamless integration of Spaceremit's payment gateway functionality. By including this library, your website gains access to essential features and functions required for processing payments securely and efficiently. This step is crucial for ensuring that your website is equipped to handle payment transactions effectively.

<script src="https://spaceremit.com/api/v2/js_script/spaceremit.js" ></script><!-- Script tag to include Spaceremit JavaScript library -->
After Completing the Generation of Spaceremit Code

Upon completion of the payment process, Spaceremit will automatically append an additional input tag with name is SP_payment_code to the payment form.Also, Spaceremit will automatically trigger the SP_SUCCESSFUL_PAYMENT(spaceremit_code) function. This is a unique code represent a transaction id. It is imperative to verify the authenticity of this code to ensure the integrity of the payment process.(that will done in the next step-in server side-).

Server-Side
Payment Authentication
curl https://spaceremit.com/api/v2/payment_info/ \
-X POST \
-H "Content-Type: application/json" \
-d '{"private_key":"YOUR_SECRET_KEY","payment_id":"PAYMENT_ID"}'

Explanation:
This command is used to send a request to the Spaceremit API endpoint using the cURL command-line tool. The request is aimed at retrieving payment information from Spaceremit to complete the payment process.

  • curl: The command used to send HTTP requests from the command line.
  • https://spaceremit.com/api/v2/payment_info/: The URL address of the API endpoint to which the request is sent.
  • -X POST: Specifies that the request should be of type POST, indicating that data is being sent to the server.
  • -H "Content-Type: application/json": Specifies the request header to indicate that the content type is JSON, meaning the data sent will be in JSON format.
  • -d '{"private_key":"YOUR_SECRET_KEY","payment_id":"PAYMENT_ID"}': Specifies the data sent in the request, which is in JSON object format containing the private key and payment ID. "YOUR_SECRET_KEY" and "PAYMENT_ID" should be replaced with actual values(SP_payment_code field from the previous form).

Responses
{
  "response_status": "success",
  "message": "", 
  "data": {
    "id": "SP21CqDJzj4QRUCGebvwQFkJm7DVTMIlG4bcWSy0SvRd2uh90kjtyuY",
    "type": "Deposit",
    "currency": "USD",
    "total_amount": "1.00",
    "total_fees": "0.00",
    "total_service_tax": "0.00",
    "total_added_tax": "0.00",
    "original_amount": "1.00",
    "buyer_payed_amount": "1.00",
    "buyer_total_fees": "0.00",
    "buyer_sevice_tax": "0.00",
    "buyer_added_tax": "0.00",
    "buyer_fees_map": "{\"Spaceremit_Api_Tax\":\"0.00\",\"Added_Fees\":\"0.00\"}",
    "seller_received_amount": "1.00",
    "seller_total_fees": 0,
    "seller_sevice_tax": "0.00",
    "seller_added_tax": 0,
    "seller_fees_map": "{\"Spaceremit_Api_Tax\":\"0.00\",\"Added_Fees\":0}",
    "seller_public_key": "pkUSWNYV6Z1DGBN1AQSNJ7I0SOIZZRHTHJSIMU5O2ZNA72RX9UJGNSG",
    "date": "2024-03-02 06:34:28",
    "status": "Test payment",
    "notes": "",
    "status_tag": "T"
  }
}

  • response_status: Indicates whether the request was successful or not (success / failed).
  • message: Error message in case of failure.
  • data:
  • id: The unique identifier for the payment transaction.
  • type: The type of transaction, in this case,("Deposit" or "Card").
  • currency: The currency used for the transaction, (USD).
  • total_amount: The total amount of the transaction.
  • total_fees: The total fees applied to the transaction.
  • total_service_tax: The total service tax applied to the transaction.
  • total_added_tax: The total added tax applied to the transaction.
  • original_amount: The original amount of the transaction.
  • buyer_payed_amount: The amount paid by the buyer.
  • buyer_total_fees:buyer_service_tax + buyer_added_tax The total fees paid by the buyer.
  • buyer_service_tax: The service tax paid by the buyer.
  • buyer_added_tax: The added tax paid by the buyer.
  • buyer_fees_map: A map of fees paid by the buyer.
  • seller_received_amount: The amount received by the seller.
  • seller_total_fees: seller_service_tax + seller_added_tax The total fees for the seller.
  • seller_service_tax: The service tax for the seller.
  • seller_added_tax: The added tax for the seller.
  • seller_fees_map: A map of fees for the seller.
  • seller_public_key: The public key of the seller.
  • date: The date and time of the transaction.
  • notes: Any additional notes or comments regarding the transaction.
  • status: The status of the transaction, which can be one of the following:
    • Completed
    • Pending
    • Refused
    • Waiting a Holding Time
    • Need Our Review
    • Not Paid
    • Canceled
    • Refunded
    • Test Payment
  • status_tag: The status tag of the transaction, represented by one of the following codes:
    • A
    • B
    • C
    • D
    • E
    • F
    • G
    • H
    • T

This relationship illustrates the correspondence between the transaction status and its corresponding tag. Each specific transaction status is assigned a tag for easy reference and efficient processing. Through this relationship, programmers or systems can quickly identify the transaction status by checking its corresponding tag.

  • Status: Completed → Tag: A : Payment completed and amount transferred to the seller.
  • Status: Pending → Tag: B : Payment added to seller's pending balance, awaiting delivery of service.
  • Status: Refused → Tag: C : Payment refused. Transaction did not go through.
  • Status: Waiting a Holding Time → Tag: D : Payment waiting for holding time, but added to seller's pending balance. May be released after a specified period.
  • Status: Need Our Review → Tag: E : Payment needs our review, but amount added to seller's pending balance. Pending approval.
  • Status: Not Paid → Tag: F : Payment not completed. This is only a deposit; no funds have been transferred.
  • Status: Canceled → Tag: G : Payment canceled by either buyer or seller before completion.
  • Status: Refunded → Tag: H : Payment refunded to the buyer.
  • Status: Test Payment → Tag: T : Test payment, not involving real funds. Used for testing purposes only.
  • Note: You can accept payments with status A, B, D, or E.
Examples of that, according to programming languages

Simple examples of HTTP POST requests in various programming languages. Whether you're utilizing Python, JavaScript, Ruby, PHP, Java, C#, Go, Swift, or any other language, these code snippets provide simple practical implementations for accessing Spaceremit's payment information endpoint.

import requests

url = 'https://spaceremit.com/api/v2/payment_info/'
headers = {'Content-Type': 'application/json'}
data = {'private_key': 'YOUR_SECRET_KEY', 'payment_id': 'PAYMENT_ID'}

response = requests.post(url, headers=headers, json=data)
print(response.json())
const axios = require('axios');

const url = 'https://spaceremit.com/api/v2/payment_info/';
const headers = { 'Content-Type': 'application/json' };
const data = { private_key: 'YOUR_SECRET_KEY', payment_id: 'PAYMENT_ID' };

axios.post(url, data, { headers: headers })
    .then(response => {
        console.log(response.data);
    })
    .catch(error => {
        console.error(error);
    });
require 'httparty'

url = 'https://spaceremit.com/api/v2/payment_info/'
headers = { 'Content-Type' => 'application/json' }
data = { private_key: 'YOUR_SECRET_KEY', payment_id: 'PAYMENT_ID' }

response = HTTParty.post(url, headers: headers, body: data.to_json)
puts response.body
<?php
$url = "https://spaceremit.com/api/v2/payment_info/";
$headers = ["Content-Type: application/json"];
$data = ["private_key" => "YOUR_SECRET_KEY", "payment_id" => "PAYMENT_ID"];

$curl = curl_init($url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($data));
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

$response = curl_exec($curl);
curl_close($curl);
echo $response;
import java.net.HttpURLConnection;
import java.net.URL;
import java.io.OutputStream;
import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) {
        try {
            URL url = new URL("https://spaceremit.com/api/v2/payment_info/");
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            conn.setRequestMethod("POST");
            conn.setRequestProperty("Content-Type", "application/json");
            conn.setDoOutput(true);

            String data = "{\"private_key\":\"YOUR_SECRET_KEY\",\"payment_id\":\"PAYMENT_ID\"}";
            OutputStream os = conn.getOutputStream();
            os.write(data.getBytes());
            os.flush();

            BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String output;
            while ((output = br.readLine()) != null) {
                System.out.println(output);
            }

            conn.disconnect();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}
using System;
using System.Net.Http;
using System.Threading.Tasks;

class Program
{
    static async Task Main(string[] args)
    {
        using (var client = new HttpClient())
        {
            var url = "https://spaceremit.com/api/v2/payment_info/";
            var content = new StringContent("{\"private_key\":\"YOUR_SECRET_KEY\",\"payment_id\":\"PAYMENT_ID\"}", System.Text.Encoding.UTF8, "application/json");

            var response = await client.PostAsync(url, content);
            var responseString = await response.Content.ReadAsStringAsync();
            Console.WriteLine(responseString);
        }
    }
}
package main

import (
	"bytes"
	"fmt"
	"net/http"
)

func main() {
	url := "https://spaceremit.com/api/v2/payment_info/"
	data := []byte(`{"private_key":"YOUR_SECRET_KEY","payment_id":"PAYMENT_ID"}`)
	req, err := http.NewRequest("POST", url, bytes.NewBuffer(data))
	if err != nil {
		panic(err)
	}
	req.Header.Set("Content-Type", "application/json")

	client := &http.Client{}
	resp, err := client.Do(req)
	if err != nil {
		panic(err)
	}
	defer resp.Body.Close()

	fmt.Println("Response Status:", resp.Status)
}

import Foundation

func makePostRequest() {
    let url = URL(string: "https://spaceremit.com/api/v2/payment_info/")!
    var request = URLRequest(url: url)
    request.httpMethod = "POST"
    request.setValue("application/json", forHTTPHeaderField: "Content-Type")
    
    let parameters: [String: Any] = ["private_key": "YOUR_SECRET_KEY", "payment_id": "PAYMENT_ID"]
    request.httpBody = try? JSONSerialization.data(withJSONObject: parameters)
    
    let task = URLSession.shared.dataTask(with: request) { data, response, error in
        guard let data = data, let response = response as? HTTPURLResponse, error == nil else {
            print("Error:", error?.localizedDescription ?? "Unknown error")
            return
        }
        guard (200 ... 299) ~= response.statusCode else {
            print("Status code:", response.statusCode)
            return
        }
        print("Response:", String(data: data, encoding: .utf8)!)
    }
    
    task.resume()
}

makePostRequest()
Callback
Handling Spaceremit Payment Callbacks: Reacting to Payment Status Changes
Spaceremit sends callbacks to websites by making HTTP POST requests to the specified endpoint URL provided by the customer Websites And Keys. When a payment status changes or a payment is completed, Spaceremit sends a JSON payload containing relevant information about the payment to the customer's endpoint URL. To receive Spaceremit callbacks, customers should implement an endpoint on their server to handle incoming POST requests. This endpoint should be able to parse the JSON payload sent by Spaceremit, verify its authenticity Payment Authentication, and process the payment information accordingly. Once the payment data is received and processed, the customer's server can perform any necessary actions, such as updating the payment status in their database or triggering notifications to users.
JSON Callback Structure
The JSON callback structure is same as payment authentication JSON response, includes information about the payment transaction.Websites can parse this JSON payload to handle payment authentication and update their systems accordingly.
Callback Example
{
  "response_status": "success",
  "message": "", 
  "data": {
    "id": "SP21CqDJzj4QRUCGebvwQFkJm7DVTMIlG4bcWSy0SvRd290kjtyuY",
    "type": "Deposit",
    "currency": "USD",
    "total_amount": "1.00",
    "total_fees": "0.00",
    "total_service_tax": "0.00",
    "total_added_tax": "0.00",
    "original_amount": "1.00",
    "buyer_payed_amount": "1.00",
    "buyer_total_fees": "0.00",
    "buyer_sevice_tax": "0.00",
    "buyer_added_tax": "0.00",
    "buyer_fees_map": "{\"Spaceremit_Api_Tax\":\"0.00\",\"Added_Fees\":\"0.00\"}",
    "seller_received_amount": "1.00",
    "seller_total_fees": 0,
    "seller_sevice_tax": "0.00",
    "seller_added_tax": 0,
    "seller_fees_map": "{\"Spaceremit_Api_Tax\":\"0.00\",\"Added_Fees\":0}",
    "seller_public_key": "pkUSWNYV6Z11AQSNJ7I0SOIZZRHTHJSIMU5O2ZNA72RX9UJGNSG",
    "date": "2024-03-02 06:34:28",
    "status": "Test payment",
    "notes": "",
    "status_tag": "T"
  }
}

Explanation: See Payment Authentication
Websites and Keys
Websites Integration and API Keys Management
This section provides steps for add websites to Spaceremit, and managing API keys effectively.

Steps for Adding Websites:

  1. Log in to your Spaceremit account.
  2. Navigate to the Websites And Keys section and add a new website.
  3. Within the same page for adding websites, locate the API section. Here, you'll find two sets of codes: Public Key and Secret Key, as well as Test Public Key and Test Secret Key.
  4. You can utilize the test keys for testing and integration before switching to live keys.
  5. The test transactions will be visible on the same page.
Security Measures
Protecting Customer Card Data And Advanced Security Measures
At Spaceremit, we understand the critical importance of safeguarding your website's integrity and your customers' sensitive card information. That's why we've implemented a comprehensive suite of advanced security measures designed to fortify the protection of card data throughout every stage of the transaction process.

Central to our security framework is the use of encryption protocols that encrypt customer card details before they are transmitted over the network. By employing industry-standard encryption algorithms, we ensure that sensitive information is transformed into unreadable ciphertext, thereby rendering it virtually impenetrable to unauthorized access or interception. This encryption process not only secures data during transmission but also ensures that it remains protected within our systems, guarding against potential breaches or data compromises.

Moreover, Spaceremit adheres to stringent security standards and compliance requirements to uphold the highest levels of data protection. Our systems are continuously monitored and audited to identify and address any vulnerabilities or potential security risks proactively. We also implement robust access controls and authentication mechanisms to restrict unauthorized access to sensitive data, further bolstering the security posture of our platform.

In addition to encryption and access controls, Spaceremit employs cutting-edge technologies and practices to enhance the overall security of your customers' card data. Our infrastructure is designed with redundancy and failover mechanisms to ensure continuous availability and resilience against potential threats or disruptions. Furthermore, we employ real-time monitoring and anomaly detection systems to promptly identify and mitigate any suspicious activities or unauthorized access attempts.

By prioritizing security, Spaceremit provides you with the confidence and assurance that your customers' card data is protected with the utmost care and diligence. With our advanced security measures in place, you can rest assured that transactions conducted through our platform are conducted in a secure and trustworthy environment, preserving the confidentiality and integrity of your customers' sensitive information.

title
اغلاق
تأكيد
title
موافق
يرجى مراجعة قائمة الأعمال التي لا ندعمها حاليًا:
اغلاق
المزيد

الحاسبة

يمكنك حساب سعر الصرف، لعملة وسيلة الايداع

المبلغ بالدولار:
المبلغ بعملة

اغلاق