Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 'PageSize' parameter to all 'read' actions #59

Merged
merged 1 commit into from
Aug 28, 2019
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
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