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.
Get a demo
  • Introduction
    • Welcome
    • SDK
  • API Principles
    • Design Principles
    • Endpoint Availability
    • Versioning & Releases
    • Breaking Changes
    • Conventions
  • Developer API
  • Marketplace API
  • Platform API
      • GETGet Onboarding Status
      • GETGet Auth Integration Config
      • PUTPut Auth Integration Config
      • POSTTest Auth Integration
      • POSTComplete Onboarding
Get a demo
LogoLogo
Platform APIOnboarding

Put Auth Integration Config

Beta
PUT
/platform/onboarding/v1/auth
PUT
/platform/onboarding/v1/auth
$curl -X PUT https://api.upshift.dev/platform/onboarding/v1/auth \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "type": "auth0",
> "clientId": "clientId",
> "clientSecret": "clientSecret",
> "domain": "domain"
>}'
200Updated
1{
2 "type": "auth0",
3 "clientId": "clientId",
4 "clientSecret": "clientSecret",
5 "domain": "domain"
6}
Was this page helpful?
Previous

Test Auth Integration

Next
Built with

Authentication

AuthorizationBearer

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

Request

This endpoint expects an object.
auth0objectRequired

Response

This endpoint returns an object.
auth0object