Skip to content

Commit 77a0740

Browse files
OpenAPI Update (#787)
Update OpenAPI for f513366b6b96ec728bc66375df8dbb114e3d1e5a Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
1 parent c7fee6a commit 77a0740

File tree

1 file changed

+0
-159
lines changed

1 file changed

+0
-159
lines changed

embedded/openapi/spec3.json

Lines changed: 0 additions & 159 deletions
Original file line numberDiff line numberDiff line change
@@ -100845,165 +100845,6 @@
100845100845
}
100846100846
}
100847100847
},
100848-
"/v1/issuing/settlements": {
100849-
"get": {
100850-
"description": "<p>Returns a list of Issuing <code>Settlement</code> objects. The objects are sorted in descending order by creation date, with the most recently created object appearing first.</p>",
100851-
"operationId": "GetIssuingSettlements",
100852-
"parameters": [
100853-
{
100854-
"description": "Only return issuing settlements that were created during the given date interval.",
100855-
"explode": true,
100856-
"in": "query",
100857-
"name": "created",
100858-
"required": false,
100859-
"schema": {
100860-
"anyOf": [
100861-
{
100862-
"properties": {
100863-
"gt": {
100864-
"type": "integer"
100865-
},
100866-
"gte": {
100867-
"type": "integer"
100868-
},
100869-
"lt": {
100870-
"type": "integer"
100871-
},
100872-
"lte": {
100873-
"type": "integer"
100874-
}
100875-
},
100876-
"title": "range_query_specs",
100877-
"type": "object"
100878-
},
100879-
{
100880-
"type": "integer"
100881-
}
100882-
]
100883-
},
100884-
"style": "deepObject"
100885-
},
100886-
{
100887-
"description": "A cursor for use in pagination. `ending_before` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list.",
100888-
"in": "query",
100889-
"name": "ending_before",
100890-
"required": false,
100891-
"schema": {
100892-
"maxLength": 5000,
100893-
"type": "string"
100894-
},
100895-
"style": "form"
100896-
},
100897-
{
100898-
"description": "Specifies which fields in the response should be expanded.",
100899-
"explode": true,
100900-
"in": "query",
100901-
"name": "expand",
100902-
"required": false,
100903-
"schema": {
100904-
"items": {
100905-
"maxLength": 5000,
100906-
"type": "string"
100907-
},
100908-
"type": "array"
100909-
},
100910-
"style": "deepObject"
100911-
},
100912-
{
100913-
"description": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.",
100914-
"in": "query",
100915-
"name": "limit",
100916-
"required": false,
100917-
"schema": {
100918-
"type": "integer"
100919-
},
100920-
"style": "form"
100921-
},
100922-
{
100923-
"description": "A cursor for use in pagination. `starting_after` is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list.",
100924-
"in": "query",
100925-
"name": "starting_after",
100926-
"required": false,
100927-
"schema": {
100928-
"maxLength": 5000,
100929-
"type": "string"
100930-
},
100931-
"style": "form"
100932-
}
100933-
],
100934-
"requestBody": {
100935-
"content": {
100936-
"application/x-www-form-urlencoded": {
100937-
"encoding": {},
100938-
"schema": {
100939-
"additionalProperties": false,
100940-
"properties": {},
100941-
"type": "object"
100942-
}
100943-
}
100944-
},
100945-
"required": false
100946-
},
100947-
"responses": {
100948-
"200": {
100949-
"content": {
100950-
"application/json": {
100951-
"schema": {
100952-
"description": "",
100953-
"properties": {
100954-
"data": {
100955-
"items": {
100956-
"$ref": "#/components/schemas/issuing.settlement"
100957-
},
100958-
"type": "array"
100959-
},
100960-
"has_more": {
100961-
"description": "True if this list has another page of items after this one that can be fetched.",
100962-
"type": "boolean"
100963-
},
100964-
"object": {
100965-
"description": "String representing the object's type. Objects of the same type share the same value. Always has the value `list`.",
100966-
"enum": [
100967-
"list"
100968-
],
100969-
"type": "string"
100970-
},
100971-
"url": {
100972-
"description": "The URL where this list can be accessed.",
100973-
"maxLength": 5000,
100974-
"pattern": "^/v1/issuing/settlements",
100975-
"type": "string"
100976-
}
100977-
},
100978-
"required": [
100979-
"data",
100980-
"has_more",
100981-
"object",
100982-
"url"
100983-
],
100984-
"title": "IssuingSettlementList",
100985-
"type": "object",
100986-
"x-expandableFields": [
100987-
"data"
100988-
]
100989-
}
100990-
}
100991-
},
100992-
"description": "Successful response."
100993-
},
100994-
"default": {
100995-
"content": {
100996-
"application/json": {
100997-
"schema": {
100998-
"$ref": "#/components/schemas/error"
100999-
}
101000-
}
101001-
},
101002-
"description": "Error response."
101003-
}
101004-
}
101005-
}
101006-
},
101007100848
"/v1/issuing/settlements/{settlement}": {
101008100849
"get": {
101009100850
"description": "<p>Retrieves an Issuing <code>Settlement</code> object.</p>",

0 commit comments

Comments
 (0)