Open-API
  1. OAuth
Open-API
  • eBay fulfillment openAPI
  • OAuth
    • URL(getAuthorizationCode)
      GET
    • AccessToken
      POST
    • Refresh AccessToken
      POST
  • SKU
    • SKUCreation v3
      POST
    • SKUQuery v3
      POST
    • SKU Label
      POST
    • SKUSetupEFService
      POST
    • QuerySKUEFService
      POST
  • Stock
    • GetStockMovement
      POST
    • StockSnapshot v2
      POST
  • Inbound
    • PlaceInboundOrder
      POST
    • Inbound Order List Query
      POST
    • Inbound Order Detail Query
      POST
    • Inbound Label Query
      POST
    • Upload TrackingNo
      POST
    • Upload Clearance Doc
      POST
  • Outbound
    • Place Outbound Order
      POST
    • Outbound Order Query v2
      POST
    • Outbound Order Cancellation
      POST
  • Warehouse
    • GetServiceList
      GET
  • Pricing
    • Cost Estimation Request
      POST
    • Cost Estimation Response
      POST
  1. OAuth

URL(getAuthorizationCode)

Sandbox
Sandbox
GET
/oauth/authorize
OAuth
To begin the authorization flow, the 3PP constructs a URL like the following
Production environment https://openapi-hk.orangeconnex.com/oauth/authorize
Stage environment https://openapi-stage-hk.orangeconnex.com/oauth/authorize

Request

Query Params
response_type
string 
required
This tells the authorization server that the application is initiating the authorization code flow. fix value: code
client_id
string 
required
The ID of 3PP offered by OC offline.
redirect_uri
string 
required
Tells the authorization server where to send the user back to after they approve the request.
state
string 
required
3PP generates a string and includes it in the request. This string could be used to recognize 3PP's account.

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://openapi-stage-hk.orangeconnex.com/oauth/authorize?response_type=&client_id=&redirect_uri=&state='

Responses

🟢200OK
application/json
Body
object {0}
Example
{}
🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Modified at 2024-05-13 08:14:24
Previous
eBay fulfillment openAPI
Next
AccessToken
Built with