curl --request POST \
--url https://app.azalt.co/api/v1/units/merge \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"unitIds": [
"<string>"
],
"newName": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"organizationId": "<string>"
}Birden fazla birimi yeni bir isim altında birleştirir ve referansları yeni birime taşır.
curl --request POST \
--url https://app.azalt.co/api/v1/units/merge \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"unitIds": [
"<string>"
],
"newName": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"organizationId": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.