Skip to content
Merged
Show file tree
Hide file tree
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
19 changes: 12 additions & 7 deletions openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ paths:
operationId: createApplicationAccessToken
x-speakeasy-group: tokens
x-speakeasy-name-override: create
security:
- basicAuth: []
x-codeSamples:
- lang: bash
source: |
Expand Down Expand Up @@ -142,10 +144,8 @@ paths:
example: gTm0p62yYXFiB1rOdhV0TsNOinC2V2P1CMaAtojkO9JEGbv3i5
token_type:
type: string
enum:
- bearer
description: The type of token, always "bearer"
example: bearer
description: The type of token, always "Bearer"
example: Bearer
expires_in:
type: integer
description: The lifetime of the access token, in seconds. Default is 3600.
Expand Down Expand Up @@ -4853,8 +4853,9 @@ paths:
format: date-time
example: '2016-02-22T20:46:38.777Z'
total:
type: string
example: '1'
type: integer
format: int32
example: 1
'404':
description: 404 Not Found
headers: {}
Expand Down Expand Up @@ -9567,7 +9568,7 @@ paths:
'200':
description: Client token created successfully
content:
application/json:
application/vnd.dwolla.v1.hal+json:
schema:
type: object
required:
Expand Down Expand Up @@ -9837,6 +9838,7 @@ components:
- ach
- real-time-payments
- wire
- external
example: ach
bankName:
type: string
Expand Down Expand Up @@ -10467,6 +10469,9 @@ components:
- $ref: '#/components/schemas/VerifiedPersonalCustomer'
- $ref: '#/components/schemas/VerifiedSolePropCustomer'
- $ref: '#/components/schemas/VerifiedBusinessCustomer'
total:
type: integer
example: 2
ForbiddenError:
title: ForbiddenError
description: Error response schema for 403 Forbidden
Expand Down
6 changes: 6 additions & 0 deletions redocly.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
extends:
- recommended

rules:
security-defined: off

9 changes: 5 additions & 4 deletions specs/resources/authorization.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ post:
operationId: createApplicationAccessToken
x-speakeasy-group: tokens
x-speakeasy-name-override: create
security:
- basicAuth: []
x-codeSamples:
- lang: bash
source: |
Expand Down Expand Up @@ -81,9 +83,8 @@ post:
example: gTm0p62yYXFiB1rOdhV0TsNOinC2V2P1CMaAtojkO9JEGbv3i5
token_type:
type: string
enum: [bearer]
description: The type of token, always "bearer"
example: bearer
description: The type of token, always "Bearer"
example: Bearer
expires_in:
type: integer
description: The lifetime of the access token, in seconds. Default is 3600.
Expand All @@ -98,4 +99,4 @@ post:
properties:
error:
type: string
example: invalid_client
example: invalid_client
2 changes: 1 addition & 1 deletion specs/resources/client-tokens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ post:
'200':
description: Client token created successfully
content:
application/json:
application/vnd.dwolla.v1.hal+json:
schema:
type: object
required:
Expand Down
5 changes: 3 additions & 2 deletions specs/resources/transfers/listFeesForTransfer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,9 @@ get:
format: date-time
example: '2016-02-22T20:46:38.777Z'
total:
type: string
example: '1'
type: integer
format: int32
example: 1
'404':
description: 404 Not Found
headers: {}
Expand Down
3 changes: 3 additions & 0 deletions specs/schemas/customers/Customers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ Customers:
- $ref: './Customer.yml#/VerifiedPersonalCustomer'
- $ref: './Customer.yml#/VerifiedSolePropCustomer'
- $ref: './Customer.yml#/VerifiedBusinessCustomer'
total:
type: integer
example: 2
1 change: 1 addition & 0 deletions specs/schemas/funding-sources/FundingSource.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ FundingSource:
- ach
- real-time-payments
- wire
- external
example: ach
bankName:
type: string
Expand Down
Loading