Compare commits
2 Commits
0c6c93a507
...
c5fa6746a2
| Author | SHA1 | Date | |
|---|---|---|---|
| c5fa6746a2 | |||
| cb0c79f68c |
@ -141,7 +141,7 @@ paths:
|
|||||||
examples:
|
examples:
|
||||||
fullCustomerProfile:
|
fullCustomerProfile:
|
||||||
value:
|
value:
|
||||||
Entries:
|
customers:
|
||||||
- customerProfileId: 1
|
- customerProfileId: 1
|
||||||
customerNumber: 1000001
|
customerNumber: 1000001
|
||||||
debtorNumber: TEST001
|
debtorNumber: TEST001
|
||||||
@ -1233,7 +1233,7 @@ components:
|
|||||||
getCustomerProfileList:
|
getCustomerProfileList:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
Entries:
|
customers:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
$ref: "#/components/schemas/getCustomerProfile"
|
$ref: "#/components/schemas/getCustomerProfile"
|
||||||
@ -1299,6 +1299,183 @@ components:
|
|||||||
type: string
|
type: string
|
||||||
replacedByTokenId:
|
replacedByTokenId:
|
||||||
type: integer
|
type: integer
|
||||||
|
postPhone:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
phone:
|
||||||
|
$ref: "#/components/schemas/phonePostEntity"
|
||||||
|
personEntity:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
birthname:
|
||||||
|
type: string
|
||||||
|
surname:
|
||||||
|
type: string
|
||||||
|
prefix:
|
||||||
|
type: string
|
||||||
|
suffix:
|
||||||
|
type: string
|
||||||
|
dateOfBirth:
|
||||||
|
type: string
|
||||||
|
format: date
|
||||||
|
emailAddress:
|
||||||
|
type: string
|
||||||
|
addressPostEntity:
|
||||||
|
required:
|
||||||
|
- addressTypeId
|
||||||
|
- city
|
||||||
|
- country
|
||||||
|
- houseNumber
|
||||||
|
- postalCode
|
||||||
|
- street
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
street:
|
||||||
|
type: string
|
||||||
|
houseNumber:
|
||||||
|
type: integer
|
||||||
|
houseNumberSuffix:
|
||||||
|
type: string
|
||||||
|
postalCode:
|
||||||
|
type: string
|
||||||
|
city:
|
||||||
|
type: string
|
||||||
|
country:
|
||||||
|
type: string
|
||||||
|
isPreferred:
|
||||||
|
type: boolean
|
||||||
|
addressTypeId:
|
||||||
|
type: integer
|
||||||
|
phonePostEntity:
|
||||||
|
required:
|
||||||
|
- countryCode
|
||||||
|
- number
|
||||||
|
- phoneTypeId
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
number:
|
||||||
|
type: string
|
||||||
|
countryCode:
|
||||||
|
type: string
|
||||||
|
phoneTypeId:
|
||||||
|
type: integer
|
||||||
|
isPreferred:
|
||||||
|
type: boolean
|
||||||
|
defaultCustomerProfileResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
customerNumber:
|
||||||
|
type: integer
|
||||||
|
example: 10000001
|
||||||
|
postCustomerProfileCustomerNumberResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
customerNumber:
|
||||||
|
type: integer
|
||||||
|
example: 10000001
|
||||||
|
postCustomerProfileAddressResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
customerNumber:
|
||||||
|
type: integer
|
||||||
|
example: 10000001
|
||||||
|
addressId:
|
||||||
|
type: integer
|
||||||
|
example: 1
|
||||||
|
postCustomerProfilePhoneResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
customerNumber:
|
||||||
|
type: integer
|
||||||
|
example: 10000001
|
||||||
|
phoneId:
|
||||||
|
type: integer
|
||||||
|
example: 1
|
||||||
|
postCustomerProfileBillingInformationResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
customerNumber:
|
||||||
|
type: integer
|
||||||
|
example: 10000001
|
||||||
|
billingInformationId:
|
||||||
|
type: integer
|
||||||
|
example: 1
|
||||||
|
postCustomerProfileDirectDebitMandateResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
customerNumber:
|
||||||
|
type: integer
|
||||||
|
example: 10000001
|
||||||
|
directDebitMandateId:
|
||||||
|
type: integer
|
||||||
|
example: 1
|
||||||
|
postCustomerProfileOvChipCardResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
customerNumber:
|
||||||
|
type: integer
|
||||||
|
example: 10000001
|
||||||
|
ovChipCardId:
|
||||||
|
type: integer
|
||||||
|
example: 1
|
||||||
|
patchCustomerProfileResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
customerNumber:
|
||||||
|
type: integer
|
||||||
|
example: 10000001
|
||||||
|
patchCustomerPreferencesResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
customerNumber:
|
||||||
|
type: integer
|
||||||
|
example: 10000001
|
||||||
|
ovPayTokenGetEntity:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
ovPayTokenId:
|
||||||
|
type: integer
|
||||||
|
example: 1
|
||||||
|
tokenTypeId:
|
||||||
|
type: integer
|
||||||
|
example: 1
|
||||||
|
xTat:
|
||||||
|
type: string
|
||||||
|
example: 0044831b-8e80c-4f82-r989a-8d85ee1996
|
||||||
|
xBot:
|
||||||
|
type: string
|
||||||
|
example: 0044831b-8e80c-4f82-r989a-8d85ee1996
|
||||||
|
lastDigits:
|
||||||
|
type: string
|
||||||
|
example: "0001"
|
||||||
|
ovpasNumber:
|
||||||
|
type: integer
|
||||||
|
example: 1
|
||||||
|
alias:
|
||||||
|
type: string
|
||||||
|
example: alias
|
||||||
|
tokenStatusId:
|
||||||
|
type: integer
|
||||||
|
expirationDate:
|
||||||
|
type: string
|
||||||
|
replacedByTokenId:
|
||||||
|
type: integer
|
||||||
|
getCustomerProfileOvPayTokenResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
ovPayToken:
|
||||||
|
type: array
|
||||||
|
items:
|
||||||
|
$ref: "#/components/schemas/ovPayTokenGetEntity"
|
||||||
|
postCustomerProfileOvPayTokenResponse:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
ovPaytoken:
|
||||||
|
type: object
|
||||||
|
example: 10000001
|
||||||
|
ovPayTokenId:
|
||||||
|
type: integer
|
||||||
|
example: 1
|
||||||
400Response:
|
400Response:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user