PUT api/data_source/project/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

ProjectModel
NameDescriptionTypeAdditional information
ProjectId

globally unique identifier

None.

Name

string

None.

Show

boolean

None.

Order

decimal number

None.

Dashboards

Collection of DashModel

None.

Request Formats

application/json, text/json

Sample:
{
  "projectId": "8816cf69-2a70-4c3f-be57-83c988ea10cb",
  "name": "sample string 2",
  "show": true,
  "order": 4.0,
  "dashboards": [
    {
      "projectId": "2a37c5f4-d581-4f6f-a427-443c027fd7f2",
      "dashboardId": "a572b2f7-4ad9-4af2-8a61-417b2c9a0411",
      "name": "sample string 3",
      "description": "sample string 4",
      "show": true,
      "order": 6.0
    },
    {
      "projectId": "2a37c5f4-d581-4f6f-a427-443c027fd7f2",
      "dashboardId": "a572b2f7-4ad9-4af2-8a61-417b2c9a0411",
      "name": "sample string 3",
      "description": "sample string 4",
      "show": true,
      "order": 6.0
    }
  ]
}

application/xml, text/xml

Sample:
<ProjectModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Margin.Models">
  <Dashboards>
    <DashModel>
      <DashboardId>a572b2f7-4ad9-4af2-8a61-417b2c9a0411</DashboardId>
      <Description>sample string 4</Description>
      <Name>sample string 3</Name>
      <Order>6</Order>
      <ProjectId>2a37c5f4-d581-4f6f-a427-443c027fd7f2</ProjectId>
      <Show>true</Show>
    </DashModel>
    <DashModel>
      <DashboardId>a572b2f7-4ad9-4af2-8a61-417b2c9a0411</DashboardId>
      <Description>sample string 4</Description>
      <Name>sample string 3</Name>
      <Order>6</Order>
      <ProjectId>2a37c5f4-d581-4f6f-a427-443c027fd7f2</ProjectId>
      <Show>true</Show>
    </DashModel>
  </Dashboards>
  <Name>sample string 2</Name>
  <Order>4</Order>
  <ProjectId>8816cf69-2a70-4c3f-be57-83c988ea10cb</ProjectId>
  <Show>true</Show>
</ProjectModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResult
NameDescriptionTypeAdditional information
Status

ApiResultStatus

None.

Data

Object

None.

Message

string

None.

Code

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "success",
  "data": {},
  "message": "sample string 2",
  "code": 1
}

application/xml, text/xml

Sample:
<ApiResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Margin.Models">
  <Code>1</Code>
  <Data />
  <Message>sample string 2</Message>
  <Status>Success</Status>
</ApiResult>