For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DocsAPI ReferenceChangelog
DocsAPI ReferenceChangelog
  • REST
    • Authentication
    • Platform
    • Event-Driven Sync (EDRTS)
    • Content
    • FeedAMP Order
    • FeedAMP Order V2
    • FeedAMP Order Source
          • GETOAuth Authorization
          • POSTAccess Token
LogoLogo
RESTFeedAMP Order SourceAuthentication

OAuth Authorization

GET
https://marketplace-order-api.feedamp.feedonomics.com/api/v1/authorize
GET
/api/v1/authorize
$curl -G https://marketplace-order-api.feedamp.feedonomics.com/api/v1/authorize \
> -H "Authorization: Bearer <token>" \
> -d response_type=code \
> -d client_id=client_id \
> -d state=state \
> --data-urlencode redirect_url=https://domain.localhost/callback
Start of Oauth process a Seller's to authorize access to a marketplace in FeedAMP.
Was this page helpful?
Previous

FeedAMP Order Source API

Next

Access Token

Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

response_typeenumRequired
Specifies the OAuth authorization method. Only the Authorization code workflow is supported.
Allowed values:
client_idstringRequired
The account id given by Feedonomics as part of the onboarding process
statestringRequired

A unique value provided for each authorization request. This value will be returned in the query parameters in the redirect_url so the request can be verified by the marketplace.

redirect_urlstringRequired
The fully qualified url that the seller will be sent to once the Oauth Authorization workflow has been completed. The url will have the query parameters returning the authorization code and the provided state