Skip to content

Commit

Permalink
Merge pull request #370 from alchemyplatform/accounts-api
Browse files Browse the repository at this point in the history
add context on signedturnkey request object to accounts api
  • Loading branch information
SahilAujla authored Apr 1, 2024
2 parents 7d4c7a9 + f4fad5f commit 3e2cf65
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions accounts/accounts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -312,26 +312,29 @@ components:
type: string
SignedTurnkeyRequest:
type: object
description: The signed request object containing session information
description: >
The signed request object containing session information. It is used to ensure the integrity and authenticity of requests to our API. For detailed steps on how to create a stamped request refer to the [Turnkey Stamps Documentation](https://docs.turnkey.com/api-design/stamps).
required: true
properties:
url:
type: string
description: Generated by the turnkey client, but will be ignored on our end
description: Generated by the turnkey client, but will be ignored on our end.
required: true
body:
type: string
description: JSON stringified request body
description: JSON stringified request body.
required: true
stamp:
type: object
description: >
A JSON-encoded object containing stamping information.
required: true
properties:
stampHeaderName:
type: string
description: A header name of the approved authentication request
description: Header name of the approved authentication request.
required: true
stampHeaderValue:
type: string
description: A header value of the approved authentication request
description: Header value of the approved authentication request.
required: true

0 comments on commit 3e2cf65

Please sign in to comment.