Skip to content

Correct the generate access token api definition #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1067,21 +1067,31 @@ paths:
description: "Y016 : loginName header missing<br>Y015 : Unauthorized User<br>Y016 : Api-Version header missing<br>Y020 : Invalid token in authorization header<br>Y027 : Unsupported authentication type"
404:
description: "Not Found"
tags:
- "Auth"
consumes:
- "application/x-www-form-urlencoded"
parameters:
- in: "formData"
name: "clientId"
description: "clientId issued by Yodlee is used to generate the OAuth token for authentication."
type: "string"
required: false
description: "clientId issued by Yodlee is used to generate the OAuth token for authentication."
required: true
- in: "formData"
name: "secret"
type: "string"
description: "secret issued by Yodlee is used to generate the OAuth token for authentication."
required: true
- in: "header"
name: "loginName"
type: "string"
required: false
tags:
- "Auth"
consumes:
- "application/x-www-form-urlencoded"
description: "The id of your end user."
required: true
- in: "header"
name: "Api-Version"
type: "string"
description: "The api verson"
required: true
delete:
summary: "Delete Token"
deprecated: false
Expand Down