We just GoLive API Rate Limits. Please follow up
authorization_code and refresh_token grants. The token inherits the connector resource from the grant.curl --location 'https://api.omisell.com/oauth/token' \
--header 'Seller-ID;' \
--header 'Country;' \
--header 'Authorization: Bearer <token>' \
--data-urlencode 'grant_type=' \
--data-urlencode 'code=' \
--data-urlencode 'refresh_token=' \
--data-urlencode 'redirect_uri=' \
--data-urlencode 'client_id=' \
--data-urlencode 'code_verifier=' \
--data-urlencode 'resource='{
"token_type": "Bearer",
"expires_in": 3600,
"access_token": "...",
"refresh_token": "...",
"scope": "read_order read_product"
}