POST api/Pushdata

Request Information

URI Parameters

None.

Body Parameters

task_emp_allocation
NameDescriptionTypeAdditional information
allocation_sk

integer

None.

employee_id

integer

None.

project_id

integer

None.

task_id

integer

None.

row_version

integer

None.

record_status

string

None.

Request Formats

application/json, text/json

Sample:
{
  "allocation_sk": 1,
  "employee_id": 2,
  "project_id": 3,
  "task_id": 4,
  "row_version": 1,
  "record_status": "sample string 5"
}

application/xml, text/xml

Sample:
<task_emp_allocation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess">
  <allocation_sk>1</allocation_sk>
  <employee_id>2</employee_id>
  <project_id>3</project_id>
  <record_status>sample string 5</record_status>
  <row_version>1</row_version>
  <task_id>4</task_id>
</task_emp_allocation>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>