Printway API Document
  • ๐ŸŽ‰Welcome to Printway API
  • ๐Ÿ”Authentication
  • ๐Ÿ›’Products
    • ๐Ÿ“‘List products
    • ๐ŸงพDetail products
    • Break of products
  • ๐Ÿ“œOrders
    • ๐Ÿ“”List order synced
    • ๐Ÿ“‹Detail Order Synced
    • ๐Ÿ“ฅCreate order
    • โž•Create order v2
    • โž•Create order v3 (Beta)
    • โ‰๏ธTest price order (Updated)
  • ๐Ÿ“คWebhook
  • โฌ†๏ธWebhook Update Status Order (New)
Powered by GitBook
On this page

Authentication

POST https://api.printway.io/cdn/api/auth/v1/token

Request Body

Name
Type
Description

email*

String

Your email in Printway Fulfillment

password*

String

Your Password

{
    "status": 200,
    "message": "Access Token generated",
    "result":  {
        "access_token": "NzJkZmQwOGQ2YTY1ZjAwM2E4N2JkMGU3NTI0MzQ0MWI5ZTllZmNmYmY3ZmYzNTYzNj1ZWEwNDQyMmMzZDI3OGQ"
    }
}
{
    "status": 404,
    "message": "Missing requirement information",
    "result": []
}

GET https://api.printway.io/cdn/api/auth/v1/token

Request Body

Name
Type
Description

email*

String

Your email in Printway Fulfillment

password*

String

Your Password

{
    "status": 200,
    "message": "success",
    "result": {
        "access_token": "NzJkZm0MWI5ZTllZmNmYmY3ZzY0YjUyZTNkOTA3YzQ1ZWEwNDQyMmMzZDI3OGQ"
    }
}
{
    "status": 404,
    "message": "Missing requirement information",
    "result": []
}
PreviousWelcome to Printway APINextProducts

Last updated 3 years ago

๐Ÿ”