POST api/customer/{userId}/projects/{projectId}/blackList

add new references to project blackList

Request Information

URI Parameters

NameDescriptionTypeAdditional information
userId

string

Required

projectId

integer

Required

Body Parameters

Collection of ProjectBlackListModel
NameDescriptionTypeAdditional information
id

integer

None.

reference

string

None.

addDate

date

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "$id": "2",
    "id": 1,
    "reference": "sample string 2",
    "addDate": "2024-05-20T03:16:47.5976728+00:00"
  },
  {
    "$ref": "2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfProjectBlackListModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CraudWezom_v1.Models.Projects">
  <ProjectBlackListModel>
    <addDate>2024-05-20T03:16:47.5976728+00:00</addDate>
    <id>1</id>
    <reference>sample string 2</reference>
  </ProjectBlackListModel>
  <ProjectBlackListModel>
    <addDate>2024-05-20T03:16:47.5976728+00:00</addDate>
    <id>1</id>
    <reference>sample string 2</reference>
  </ProjectBlackListModel>
</ArrayOfProjectBlackListModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.