go
rr, err := client.Tenancy.Delete(context.Background(), &v1.TenantDeleteRequest{
Id: ""
})client.tenancy.delete({
id: "",
}).then((response) => {
// handle response
})curl --location --request DELETE 'http://localhost:3476/v1/tenants/t1'{
"tenant_id": "<string>"
}{
"code": 123,
"message": "<string>",
"details": [
{
"@type": "<string>"
}
]
}Tenancy Service
Delete Tenant
DELETE
/
v1
/
tenants
/
{id}
go
rr, err := client.Tenancy.Delete(context.Background(), &v1.TenantDeleteRequest{
Id: ""
})client.tenancy.delete({
id: "",
}).then((response) => {
// handle response
})curl --location --request DELETE 'http://localhost:3476/v1/tenants/t1'{
"tenant_id": "<string>"
}{
"code": 123,
"message": "<string>",
"details": [
{
"@type": "<string>"
}
]
}