Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
pagopa-github-bot committed Oct 4, 2024
1 parent e43d082 commit f505510
Showing 1 changed file with 49 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"title": "PagoPA API Payments",
"description": "Payments",
"termsOfService": "https://www.pagopa.gov.it/",
"version": "0.8.0-1-PAGOPA-1140-sviluppo-gpd-payments-gestione-enti-pluri-intermediati"
"version": "0.12.28-10-PAGOPA-2178-gpd-debito-tecnico-ottimizzazione-dei-log"
},
"servers": [
{
Expand Down Expand Up @@ -155,24 +155,25 @@
{
"name": "pageNum",
"in": "query",
"description": "Page number",
"required": true,
"description": "Page number, starts from 0",
"required": false,
"schema": {
"minimum": 0,
"type": "integer",
"format": "int32"
"format": "int32",
"default": 0
}
},
{
"name": "pageSize",
"in": "query",
"description": "Number of elements per page. Default = 50",
"description": "Number of elements per page. Default = 20",
"required": false,
"schema": {
"maximum": 100,
"type": "integer",
"format": "int32",
"default": 50
"default": 20
}
},
{
Expand Down Expand Up @@ -210,6 +211,25 @@
"schema": {
"type": "string"
}
},
{
"name": "segregationCodes",
"in": "query",
"description": "Segregation codes for which broker is authorized",
"required": false,
"schema": {
"pattern": "\\d{2}(,\\d{2})*",
"type": "string"
}
},
{
"name": "debtorOrIuv",
"in": "query",
"description": "Filter start of debtor or IUV",
"required": false,
"schema": {
"type": "string"
}
}
],
"responses": {
Expand All @@ -226,7 +246,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReceiptsInfo"
"$ref": "#/components/schemas/PaymentsResult"
}
}
}
Expand Down Expand Up @@ -326,6 +346,16 @@
"type": "string"
},
"example": "ABC123"
},
{
"name": "segregationCodes",
"in": "query",
"description": "Segregation codes for which broker is authorized",
"required": false,
"schema": {
"pattern": "\\d{2}(,\\d{2})*",
"type": "string"
}
}
],
"responses": {
Expand Down Expand Up @@ -468,36 +498,25 @@
}
}
},
"ReceiptModelResponse": {
"PaymentsResult": {
"type": "object",
"properties": {
"organizationFiscalCode": {
"type": "string"
},
"iuv": {
"type": "string"
"currentPageNumber": {
"type": "integer",
"format": "int32"
},
"debtor": {
"type": "string"
"length": {
"type": "integer",
"format": "int32"
},
"paymentDateTime": {
"type": "string"
"totalPages": {
"type": "integer",
"format": "int32"
},
"status": {
"type": "string"
}
}
},
"ReceiptsInfo": {
"required": [
"receipts_list"
],
"type": "object",
"properties": {
"receipts_list": {
"results": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ReceiptModelResponse"
"type": "object"
}
}
}
Expand Down

0 comments on commit f505510

Please sign in to comment.