Improvements for Supplier replication

This commit is contained in:
Uwe Klinger
2021-05-03 12:52:11 +02:00
parent de806a1e38
commit eb4bc703dd
6 changed files with 106 additions and 5 deletions

27
suppliers/requests.http Normal file
View File

@@ -0,0 +1,27 @@
@server = http://localhost:4004
@authAlice = Authorization: Basic alice:
PUT {{server}}/api-business-partner/A_BusinessPartner('ACME')
Content-Type: application/json
{
"BusinessPartnerFullName": "Alice Changed"
}
###
PATCH {{server}}/admin/Books(201)
{{authAlice}}
Content-Type: application/json
{
"supplier_ID": "PNG"
}
###
GET {{server}}/admin/Books?$top=11&$expand=supplier
{{authAlice}}