Skip to content

Commit

Permalink
OpenAPI Update (#787)
Browse files Browse the repository at this point in the history
Update OpenAPI for f513366b6b96ec728bc66375df8dbb114e3d1e5a

Co-authored-by: Stripe OpenAPI <105521251+stripe-openapi[bot]@users.noreply.github.com>
  • Loading branch information
stripe-openapi[bot] committed Apr 29, 2024
1 parent c7fee6a commit 77a0740
Showing 1 changed file with 0 additions and 159 deletions.
159 changes: 0 additions & 159 deletions embedded/openapi/spec3.json
Expand Up @@ -100845,165 +100845,6 @@
}
}
},
"/v1/issuing/settlements": {
"get": {
"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>",
"operationId": "GetIssuingSettlements",
"parameters": [
{
"description": "Only return issuing settlements that were created during the given date interval.",
"explode": true,
"in": "query",
"name": "created",
"required": false,
"schema": {
"anyOf": [
{
"properties": {
"gt": {
"type": "integer"
},
"gte": {
"type": "integer"
},
"lt": {
"type": "integer"
},
"lte": {
"type": "integer"
}
},
"title": "range_query_specs",
"type": "object"
},
{
"type": "integer"
}
]
},
"style": "deepObject"
},
{
"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.",
"in": "query",
"name": "ending_before",
"required": false,
"schema": {
"maxLength": 5000,
"type": "string"
},
"style": "form"
},
{
"description": "Specifies which fields in the response should be expanded.",
"explode": true,
"in": "query",
"name": "expand",
"required": false,
"schema": {
"items": {
"maxLength": 5000,
"type": "string"
},
"type": "array"
},
"style": "deepObject"
},
{
"description": "A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 10.",
"in": "query",
"name": "limit",
"required": false,
"schema": {
"type": "integer"
},
"style": "form"
},
{
"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.",
"in": "query",
"name": "starting_after",
"required": false,
"schema": {
"maxLength": 5000,
"type": "string"
},
"style": "form"
}
],
"requestBody": {
"content": {
"application/x-www-form-urlencoded": {
"encoding": {},
"schema": {
"additionalProperties": false,
"properties": {},
"type": "object"
}
}
},
"required": false
},
"responses": {
"200": {
"content": {
"application/json": {
"schema": {
"description": "",
"properties": {
"data": {
"items": {
"$ref": "#/components/schemas/issuing.settlement"
},
"type": "array"
},
"has_more": {
"description": "True if this list has another page of items after this one that can be fetched.",
"type": "boolean"
},
"object": {
"description": "String representing the object's type. Objects of the same type share the same value. Always has the value `list`.",
"enum": [
"list"
],
"type": "string"
},
"url": {
"description": "The URL where this list can be accessed.",
"maxLength": 5000,
"pattern": "^/v1/issuing/settlements",
"type": "string"
}
},
"required": [
"data",
"has_more",
"object",
"url"
],
"title": "IssuingSettlementList",
"type": "object",
"x-expandableFields": [
"data"
]
}
}
},
"description": "Successful response."
},
"default": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/error"
}
}
},
"description": "Error response."
}
}
}
},
"/v1/issuing/settlements/{settlement}": {
"get": {
"description": "<p>Retrieves an Issuing <code>Settlement</code> object.</p>",
Expand Down

0 comments on commit 77a0740

Please sign in to comment.