new endpoints in bruno

This commit is contained in:
Uwe Steinmann 2026-03-31 09:11:31 +02:00
parent 5e8aa14f91
commit b2c2ff0210
4 changed files with 88 additions and 0 deletions

View File

@ -0,0 +1,20 @@
meta {
name: Delete Correspondent
type: http
seq: 5
}
delete {
url: {{baseurl}}api/correspondents/:id/
body: none
auth: inherit
}
params:path {
id: 5
}
settings {
encodeUrl: true
timeout: 0
}

View File

@ -0,0 +1,24 @@
meta {
name: Patch Correspondent
type: http
seq: 4
}
patch {
url: {{baseurl}}api/correspondents/:id/
body: formUrlEncoded
auth: inherit
}
params:path {
id: 5
}
body:form-urlencoded {
name: RWE
}
settings {
encodeUrl: true
timeout: 0
}

View File

@ -0,0 +1,20 @@
meta {
name: Delete Document Type
type: http
seq: 5
}
delete {
url: {{baseurl}}api/document_types/:id/
body: none
auth: inherit
}
params:path {
id: 1
}
settings {
encodeUrl: true
timeout: 0
}

View File

@ -0,0 +1,24 @@
meta {
name: Patch Document Type
type: http
seq: 4
}
patch {
url: {{baseurl}}api/document_types/:id/
body: formUrlEncoded
auth: inherit
}
params:path {
id: 1
}
body:form-urlencoded {
name: Rechnung
}
settings {
encodeUrl: true
timeout: 0
}