Build better developer tools with PaySia

In order to make our API available to a wider range of developers quickly, we use Opapi specifications and standards to get most developers started quickly.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.
Designed for quick start

A unified API that do the hard work for you

There is no need for large-scale development, and only simple integration can link to PaySia, saving development time.Flexible and high degree of freedom

Sandbox
You can use the sandbox to start integration before your account is officially approved
Production
Once your account is approved, you can switch to production mode and switch back to sandbox mode at any time
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
 "client": {
   "email":
"test@test.com"
 },
 "purchase": {
   "products": [
     {
       "name":
"test",
       "price":
100
     }
   ]
 },
 "brand_id":
"409eb80e-3782-4b1d-afa8-b779759266a5"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
 "title":
"string",
 "all_events":
false,
 "events": [
   
"purchase.created"
 ],
 "callback":
"string"
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import GateUi
...

struct GatePurchase:
Decodable {  
let total: Int  let currency:
String
}

struct GatePurchaseResponse:
Decodable {
 let purchase:
GatePurchase?
 let checkout_url:
String?
 let direct_post_url:
String?
 let success_redirect:
String?
 let failure_redirect:
String?

}

......
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
include ':nibus-sdk'

dependencies {
...
compile project(':nibus-sdk')

}

You can use PaySia's API with confidence

Comply with PCI DSS

We have passed PCI DSS certification, data security can be effectively guaranteed

99.99% running time

We use Amazon's cloud services and integration architecture, as well as the exclusive API server, to ensure the reliability of interface service access up to 99.99%

Reducing privacy Data

We collect as little privacy data as possible. We only collect necessary data affecting payment and fund processing to reduce privacy exposure

Stable and reliable

Thanks to our unique API architecture and Amazon cloud services, our API performance is very reliable and stable

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const PaySia = new PaySia({ token: api_token });

// Promise <Item>
const item = PaySia.createItem({
   collectionId: '580e63fc8c9a982ac9b8b745',
   fields: {
      'name': 'Exciting blog post title',
      'slug': 'exciting-post',
      '_archived': false,
      '_draft': false,
      'color': '#a98080',
      'author': '580e640c8c9a982ac9b8b778',
      'post-body': '<p>Blog post contents...</p>',
      'post-summary': 'Summary of exciting blog post',
      'main-image': '580e63fe8c9a982ac9b8b749',
   },
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const PaySia = new PaySia({ token: api_token });

// Promise <Webhook>
const webhook = PaySia.createWebhook({
   siteId: '562ac0395358780a1f5e6fbd',
   triggerType: 'form_submission',
   url: 'https://api.mydomain.com/webhook',
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const PaySia = new PaySia({ token: api_token });

// Promise <Item>
const item = PaySia.patchItem({
   collectionId: '580e63fc8c9a982ac9b8b745',
   itemId: '58338a5735ca4f023b9f1847',
   fields: {
      'name': 'Patched Exciting blog post title',
      'slug': 'exciting-post',
      '_archived': false,
      '_draft': false,
      'color': '#4353FF',
   }
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const PaySia = new PaySia({ token: api_token });

// Promise <Item>
const item = PaySia.updateItem({
   collectionId: '580e63fc8c9a982ac9b8b745',
   itemId: '58338a5735ca4f023b9f1847',
   fields: {
      'name': 'Updated Exciting blog post title',
      'slug': 'exciting-post',
      '_archived': false,
      '_draft': false,
      'color': '#a98080',
      'author': '580e640c8c9a982ac9b8b778',
      'post-body': '<p>Blog post contents...</p>',
      'post-summary': 'Summary of exciting blog post',
      'main-image': 'http://somesite.com/image20.jpg',
   }
});
Start Fast

Rich SDK and library, quick start

Even if you don't want to spend time writing code, you can use our SDKS and libraries to get started on integration quickly

Go it !

View Docs