searchChangelogEntries
searchChangelogEntries
Query Parameters
- page string
Default value:
0
Number of page to get results from
- size string
Possible values:
<= 100
Default value:
10
Size of each page
- application/json
Request Body required
- timestampAfter date-time
Only changelog entries created after this time. Ignored if empty.
- bpns string[]
Only for business partners with the given array of BPNL/S/A. Ignored if empty.
- businessPartnerTypes string[]
Possible values: [
LEGAL_ENTITY
,SITE
,ADDRESS
,GENERIC
]Only for business partners with the given array of business partner types. Ignored if empty.
- 200
OK
- application/json
- Schema
- Example (from schema)
Schema
- totalElements int64
Total number of all results in all pages
- totalPages int32
Total number pages
- page int32
Current page number
- contentSize int32
Number of results in the page
content object[]
Collection of results in the page
bpn stringThe business partner number for which the changelog entry was created. Can be either a BPNL, BPNS or BPNA.
businessPartnerType stringPossible values: [
LEGAL_ENTITY
,SITE
,ADDRESS
,GENERIC
]One of the types of business partners for which the changelog entry was created: legal entity, site, address.
timestamp date-timeThe date and time when the changelog entry was created.
changelogType stringPossible values: [
CREATE
,UPDATE
]One of the actions for which the changelog entry was created: create, update.
{
"totalElements": 0,
"totalPages": 0,
"page": 0,
"contentSize": 0,
"content": [
{
"bpn": "string",
"businessPartnerType": "LEGAL_ENTITY",
"timestamp": "2024-07-15",
"changelogType": "CREATE"
}
]
}