Bunjang Open API
    Bunjang Open API
    • Overview
    • Changelog
    • Authentication
    • Product Catalog
      • Service Base URL
      • Sample Data
      • Full Catalog Download
        GET
      • Segment Catalog Download
        GET
    • Rest API
      • Service Base URL
      • Error Codes
      • Product Category
        • Categories Lookup
      • Brand
        • Brands Lookup
      • Product
        • Product Lookup
        • Products Retrieval
      • Point
        • Point Balance Lookup
      • Order
        • Create Order
        • Confirm Order
        • Order Lookup
        • Orders Lookup
        • Create Order V2

    Authentication

    API Authentication#

    When accessing the API, the client must include the JWT token in the Authorization header using the Bearer schema.
    The content of the header should look like the following:
    Autorization: Bearer {JWT_TOKEN}

    JWT Token#

    JWT tokens are generated using the access key and secret key

    Required JWT Claims#

    There are differences in the required JWT claims depending on the HTTP method.
    ClaimDescriptionHttp Method
    accessKeyaccess keyALL
    noncerandom uuid (v4)POST, PUT, DELETE
    iatJWT Registered Claim (link)ALL

    JWT Token with Expiration Time#

    The validity period of the JWT token is 5 seconds.
    The server verifies the token’s validity period using the iat(issued at)claim. for example,
    Token creation time: 12:50:00
    Token is valid until: 12:50:05. After that, it will expire.

    Sample Codes#

    Java
    Kotlin
    Python
    Node
    Modified at 2024-11-06 12:36:55
    Previous
    Changelog
    Next
    Product Catalog
    Built with