POST api/v2/news/deleteNews

Request Information

URI Parameters

None.

Body Parameters

NewsDeleteBindingModel
NameDescriptionTypeAdditional information
NewsId

globally unique identifier

None.

TenantId

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "NewsId": "4c41b84e-d526-43c4-9515-b3b0aec505fa",
  "TenantId": "25185f0c-2849-4277-9a6f-e41e2b4fc07e"
}

application/xml, text/xml

Sample:
<NewsDeleteBindingModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models.v2.BindingModels">
  <NewsId>4c41b84e-d526-43c4-9515-b3b0aec505fa</NewsId>
  <TenantId>25185f0c-2849-4277-9a6f-e41e2b4fc07e</TenantId>
</NewsDeleteBindingModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

NewsDeleteResult
NameDescriptionTypeAdditional information
Succeeded

boolean

None.

Errors

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "Succeeded": true,
  "Errors": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<NewsDeleteResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models.v2.Result">
  <Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Errors>
  <Succeeded xmlns="http://schemas.datacontract.org/2004/07/FormulaCertaAPI.Models">true</Succeeded>
</NewsDeleteResult>