Examples - Notes service Introducer Supplier
Create a note
This example creates a note which is visible to the Customer with a reference.
@host=https://api.themovingportal.dev
@auth=BASICAUTHHEADER
@tmpReference=TMP123456
###
POST {{host}}/instruction/{{tmpReference}}/note
Authorization: Basic {{auth}}
Content-Type: application/json
{
"caseNoteReference": "Note1",
"visibleTo": [ "Customer" ],
"noteBody": "This is a test note"
}
###
PUT {{host}}/instruction/{{tmpReference}}/readnotes
Authorization: Basic {{auth}}
Mark all notes as read
This example creates a note which is visible to the Customer with a reference.
@host=https://api.themovingportal.dev
@auth=BASICAUTHHEADER
@tmpReference=TMP123456
###
PUT {{host}}/instruction/{{tmpReference}}/readnotes
Authorization: Basic {{auth}}
