Pull Requests
Create a card asynchronously
Create a pull request.
POST
https://api.walleo.io/partners/v1/pull_requests
Creates a new pull request.
Request Body
Name
Type
Description
amount*
Integer
The amount of the gift card
gift_card_code*
String
The code of the gift card
request_id*
String
Request ID of pull request
Response
{
"pull_request": {
"id": "3db15189-ef10-49b4-8265-58e3fe946ffb",
"status": "waiting",
"request_id": "your_request_id",
"amount_cents": 5000,
"created_at": "2024-02-05T11:33:39.999+01:00",
"updated_at": "2024-02-05T11:33:39.999+01:00",
"card": null
}
}
Errors
{
"errors": [
{
"code": "gift_card_not_found",
"message": "Gift card not found with code 'IKEA-FR'"
}
],
"status": "not_found"
}
Show pull request
Show pull request.
GET
https://api.walleo.io/partners/v1/pull_requests/:request_id
Show pull request details.
Path Parameters
Name
Type
Description
request_id*
String
Request ID of pull request
Response
{
"pull_request": {
"id": "3db15189-ef10-49b4-8265-58e3fe946ffb",
"status": "success",
"request_id": "your_request_id",
"created_at": "2024-02-05T11:33:39.999+01:00",
"updated_at": "2024-02-05T11:33:41.488+01:00",
"card": {
"id": "4fe88e46-eb22-436c-91ec-6bf874fcf2ae",
"code": "345454545451154154",
"expire_at": "2022-06-24T00:00:00.000+02:00",
"pin_code": "1234",
"amount": 50,
"gift_card_code": "IKEA",
"pdf_url": "https://url.pdf"
}
}
}
Errors
{
"errors": [
{
"code": "pull_request_not_found",
"message": "Pull request not found with request_id: REQ-ID-TEST"
}
],
"status": "not_found"
}
Last updated