Skip to content

Commit

Permalink
Add 'PageSize' parameter to all 'read' actions (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
childish-sambino authored and dprothero committed Aug 28, 2019
1 parent 65d56d0 commit ebd4c7b
Show file tree
Hide file tree
Showing 23 changed files with 2,314 additions and 32 deletions.
26 changes: 24 additions & 2 deletions src/services/twilio-api/twilio_accounts.json
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,18 @@
"description": "User provided AWS keys",
"get": {
"description": "Retrieves a collection of AWS Credentials belonging to the account used to make the request",
"parameters": [],
"parameters": [
{
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
"in": "query",
"name": "PageSize",
"schema": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
Expand Down Expand Up @@ -352,7 +363,18 @@
"description": "User provided public keys",
"get": {
"description": "Retrieves a collection of Public Key Credentials belonging to the account used to make the request",
"parameters": [],
"parameters": [
{
"description": "How many resources to return in each list page. The default is 50, and the maximum is 1000.",
"in": "query",
"name": "PageSize",
"schema": {
"maximum": 1000,
"minimum": 1,
"type": "integer"
}
}
],
"responses": {
"200": {
"content": {
Expand Down
Loading

0 comments on commit ebd4c7b

Please sign in to comment.