Skip to content

Commit 2dd01b5

Browse files
OpenAPI Update (#944)
Update OpenAPI for f86d2ed5e28d21e72f70e97f9cb210315356fc8d Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
1 parent 5a369cc commit 2dd01b5

File tree

1 file changed

+95
-0
lines changed

1 file changed

+95
-0
lines changed

embedded/openapi/spec3.json

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153083,6 +153083,101 @@
153083153083
}
153084153084
}
153085153085
},
153086+
"/v1/test_helpers/issuing/settlements": {
153087+
"post": {
153088+
"description": "<p>Allows the user to create an Issuing settlement.</p>",
153089+
"operationId": "PostTestHelpersIssuingSettlements",
153090+
"requestBody": {
153091+
"content": {
153092+
"application/x-www-form-urlencoded": {
153093+
"encoding": {
153094+
"expand": {
153095+
"explode": true,
153096+
"style": "deepObject"
153097+
}
153098+
},
153099+
"schema": {
153100+
"additionalProperties": false,
153101+
"properties": {
153102+
"bin": {
153103+
"description": "The Bank Identification Number reflecting this settlement record.",
153104+
"maxLength": 5000,
153105+
"type": "string"
153106+
},
153107+
"clearing_date": {
153108+
"description": "The date that the transactions are cleared and posted to user's accounts.",
153109+
"type": "integer"
153110+
},
153111+
"currency": {
153112+
"description": "Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).",
153113+
"type": "string"
153114+
},
153115+
"expand": {
153116+
"description": "Specifies which fields in the response should be expanded.",
153117+
"items": {
153118+
"maxLength": 5000,
153119+
"type": "string"
153120+
},
153121+
"type": "array"
153122+
},
153123+
"interchange_fees": {
153124+
"description": "The total interchange received as reimbursement for the transactions.",
153125+
"type": "integer"
153126+
},
153127+
"net_total": {
153128+
"description": "The total net amount required to settle with the network.",
153129+
"type": "integer"
153130+
},
153131+
"network_settlement_identifier": {
153132+
"description": "The Settlement Identification Number assigned by the network.",
153133+
"maxLength": 5000,
153134+
"type": "string"
153135+
},
153136+
"transaction_count": {
153137+
"description": "The total number of transactions reflected in this settlement.",
153138+
"type": "integer"
153139+
},
153140+
"transaction_volume": {
153141+
"description": "The total transaction amount reflected in this settlement.",
153142+
"type": "integer"
153143+
}
153144+
},
153145+
"required": [
153146+
"bin",
153147+
"clearing_date",
153148+
"currency",
153149+
"net_total"
153150+
],
153151+
"type": "object"
153152+
}
153153+
}
153154+
},
153155+
"required": true
153156+
},
153157+
"responses": {
153158+
"200": {
153159+
"content": {
153160+
"application/json": {
153161+
"schema": {
153162+
"$ref": "#/components/schemas/issuing.settlement"
153163+
}
153164+
}
153165+
},
153166+
"description": "Successful response."
153167+
},
153168+
"default": {
153169+
"content": {
153170+
"application/json": {
153171+
"schema": {
153172+
"$ref": "#/components/schemas/error"
153173+
}
153174+
}
153175+
},
153176+
"description": "Error response."
153177+
}
153178+
}
153179+
}
153180+
},
153086153181
"/v1/test_helpers/issuing/transactions/create_force_capture": {
153087153182
"post": {
153088153183
"description": "<p>Allows the user to capture an arbitrary amount, also known as a forced capture.</p>",

0 commit comments

Comments
 (0)