Checkout
With the AjoMoney checkout, your customers can perform a quick checkout from your e-commerce store. They have the option to either pay in full or pay small small at zero-interest (Buy now pay later).
Generate Checkout Link
Initiate request
POST https://business-api.myajopay.com/api/v1/store/generate/payment-link/{STORE_TAG}
Use the parameters below to generate a checkout link, ensure that the storetag of the merchant is added to the url in place of STORE_TAG.
To generate the store tag, merchant needs to visit the branding page on their website. .
Request Body
name*
string
The name of the pet
owner_id
string
The id of the user who owns the pet
species
string
The species of the pet
breed
string
The breed of the pet
{
"name"="Wilson",
"owner": {
"id": "sha7891bikojbkreuy",
"name": "Samuel Passet",
"species": "Dog",}
"breed": "Golden Retriever",
}Updating a pet
- : read your pets
- : modify pets in your account
doggiepet status in the store
Invalid ID supplied
Pet not found
Validation exception
PUT /v2/pet HTTP/1.1
Host: petstore.swagger.io
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 132
{
"id": 1,
"category": {
"id": 1,
"name": "text"
},
"name": "doggie",
"photoUrls": [
"text"
],
"tags": [
{
"id": 1,
"name": "text"
}
],
"status": "available"
}No content
Last updated