curl --request POST \
--url https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/assignVendor \
--header 'Content-Type: application/json' \
--data '
{
"vendor": {
"id": "<string>"
},
"dateDue": "2023-11-07T05:31:56Z"
}
'To unassign Vendor from Project, use empty body:
{}
curl --request POST \
--url https://cloud.memsource.com/web/api2/v1/projects/{projectUid}/assignVendor \
--header 'Content-Type: application/json' \
--data '
{
"vendor": {
"id": "<string>"
},
"dateDue": "2023-11-07T05:31:56Z"
}
'Was this page helpful?