Compare commits
No commits in common. "98babaeb91a49a3387c1498edc4b175fead2e491" and "9e5e7821928c8faf05346dbb71560f4bcdf7fccb" have entirely different histories.
98babaeb91
...
9e5e782192
@ -1,162 +0,0 @@
|
|||||||
openapi: "3.0.3"
|
|
||||||
info:
|
|
||||||
title: ABT Customers CRUD APIs v2
|
|
||||||
version: "1.0"
|
|
||||||
description: CRUD APIs for ABT Customer database. These are NOT the functional APIs from Service Engine.
|
|
||||||
servers:
|
|
||||||
- url: https://api.integratielaag.nl/v1
|
|
||||||
paths:
|
|
||||||
/directdebitmandates:
|
|
||||||
get:
|
|
||||||
tags:
|
|
||||||
- Mandates
|
|
||||||
summary: Find direct debit mandates.
|
|
||||||
description: Find direct debit mandates.
|
|
||||||
parameters:
|
|
||||||
- in: query
|
|
||||||
name: directDebitMandateId
|
|
||||||
schema:
|
|
||||||
type: integer
|
|
||||||
example: 71
|
|
||||||
required: false
|
|
||||||
description: The id of the direct debit mandate.
|
|
||||||
- in: query
|
|
||||||
name: customerProfileId
|
|
||||||
schema:
|
|
||||||
type: integer
|
|
||||||
example: 12
|
|
||||||
required: false
|
|
||||||
description: The id of the customer related to the mandate.
|
|
||||||
- in: query
|
|
||||||
name: billingInformationId
|
|
||||||
schema:
|
|
||||||
type: integer
|
|
||||||
example: 51
|
|
||||||
required: false
|
|
||||||
description: The id of the billing information related to the mandate.
|
|
||||||
- in: query
|
|
||||||
name: directDebitMandateTypeId
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
type: integer
|
|
||||||
example: [1, 2]
|
|
||||||
explode: false
|
|
||||||
required: false
|
|
||||||
description: The id of the direct debit mandate type. 1 = Paper contract, 2 = PIN transaction, 3 = SEPA eMandate, 4 = Digital signature, 5 = iDEAL transaction.
|
|
||||||
- in: query
|
|
||||||
name: mandateAddressId
|
|
||||||
schema:
|
|
||||||
type: integer
|
|
||||||
example: 21
|
|
||||||
required: false
|
|
||||||
description: The id of the address related to the mandate.
|
|
||||||
- in: query
|
|
||||||
name: createdBefore
|
|
||||||
schema:
|
|
||||||
type: string
|
|
||||||
format: date-time
|
|
||||||
example: 2020-12-31T23:59:59
|
|
||||||
required: false
|
|
||||||
description: Filter on created before.
|
|
||||||
- in: query
|
|
||||||
name: createdAfter
|
|
||||||
schema:
|
|
||||||
type: string
|
|
||||||
format: date-time
|
|
||||||
example: 2020-01-01T00:00:00
|
|
||||||
required: false
|
|
||||||
description: Filter on created after.
|
|
||||||
- in: query
|
|
||||||
name: mandateReference
|
|
||||||
schema:
|
|
||||||
type: string
|
|
||||||
example: CORE01
|
|
||||||
required: false
|
|
||||||
description: Filter on mandate reference.
|
|
||||||
- in: query
|
|
||||||
name: mandateState
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
type: string
|
|
||||||
example: [SIGNED, PREPARED]
|
|
||||||
explode: false
|
|
||||||
required: false
|
|
||||||
description: Filter on possible states of the mandate. SIGNED = signed, PREPARED = prepared, CANCELLED = cancelled.
|
|
||||||
- in: query
|
|
||||||
name: updatedBefore
|
|
||||||
schema:
|
|
||||||
type: string
|
|
||||||
format: date-time
|
|
||||||
example: 2020-12-31T23:59:59
|
|
||||||
required: false
|
|
||||||
description: Filter on updated before.
|
|
||||||
- in: query
|
|
||||||
name: updatedAfter
|
|
||||||
schema:
|
|
||||||
type: string
|
|
||||||
format: date-time
|
|
||||||
example: 2020-01-01T00:00:00
|
|
||||||
required: false
|
|
||||||
description: Filter on updated after.
|
|
||||||
responses:
|
|
||||||
200:
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: "#/components/schemas/unavailable"
|
|
||||||
example:
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"directDebitMandateId": 71,
|
|
||||||
"customerProfileId": 12,
|
|
||||||
"billingInformationId": 51,
|
|
||||||
"directDebitMandateType": {
|
|
||||||
"directDebitMandateTypeId": 1,
|
|
||||||
"name": "import",
|
|
||||||
"description": "import"
|
|
||||||
},
|
|
||||||
"mandateAddressId": 21,
|
|
||||||
"created": "2024-03-22T08:55:00",
|
|
||||||
"mandateReference": "CORE01",
|
|
||||||
"mandateState": "SINGED",
|
|
||||||
"updateTimestamp": "2024-03-22T08:55:00"
|
|
||||||
},
|
|
||||||
]
|
|
||||||
components:
|
|
||||||
securitySchemes:
|
|
||||||
bearerToken:
|
|
||||||
type: http
|
|
||||||
scheme: bearer
|
|
||||||
bearerFormat: JWT
|
|
||||||
schemas:
|
|
||||||
unavailable:
|
|
||||||
type: object
|
|
||||||
rfc9457:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
type:
|
|
||||||
type: string
|
|
||||||
format: url
|
|
||||||
example: https://example.com/probs/out-of-credit
|
|
||||||
title:
|
|
||||||
type: string
|
|
||||||
example: You do not have enough credit.
|
|
||||||
detail:
|
|
||||||
type: string
|
|
||||||
example: Your current balance is 30, but that costs 50.
|
|
||||||
instance:
|
|
||||||
type: string
|
|
||||||
example: /account/12345/msgs/abc
|
|
||||||
balance:
|
|
||||||
type: string
|
|
||||||
example: 30
|
|
||||||
accounts:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
type: string
|
|
||||||
example:
|
|
||||||
- /account/12345
|
|
||||||
- /account/67890
|
|
||||||
Loading…
Reference in New Issue
Block a user