Approve custom login

Used to approve custom login requests using JWT authentication (For exampe Apple ID, Google or other JWT based login providers). This is a server-side endpoint and should not be called from the client.

POST
/sdk/custom_login/approve
X-Stash-Api-Key<token>

API key authentication for server-side SDK operations. Used for secure server-to-server communication.

In: header

code?string

Authentication code provided by Stash webshop via deep link or QR code

user?pie.sdk.custom_login.ApproveCustomLoginRequest.User

User information for authentication

Response Body

curl -X POST "https://test-api.stash.gg/sdk/custom_login/approve" \  -H "Content-Type: application/json" \  -d '{}'
{}
{
  "code": 0,
  "message": "string",
  "details": [
    {
      "@type": "string",
      "property1": null,
      "property2": null
    }
  ]
}

How is this guide?