POST api/progressionchain/{id}/addchainlink

Add node to progression chain Processes this progression chain API request. The parameter and response sections describe the data exchanged with the API.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The unique identifier of the requested resource.

integer

Required

Body Parameters

The chain link information

AddChainLinkDataContract
NameDescriptionTypeAdditional information
Source

The source value.

integer

None.

Target

The target value.

integer

None.

Circular

Indicates whether circular is true.

boolean

None.

Id

The unique identifier of this resource.

integer

None.

Request Formats

application/x-www-form-urlencoded

Sample:

Sample not available.

application/json, text/json

Sample:
{
  "Source": 1,
  "Target": 2,
  "Circular": true,
  "Id": 4
}

Response Information

Resource Description

The response returned after the operation completes.

ProgressionChainDataContract
NameDescriptionTypeAdditional information
Nodes

The collection of nodes.

Collection of ChainItemDataContract

None.

Links

The collection of links.

Collection of ChainLinkDataContract

None.

Property

The property value.

PropertyDataContract

None.

Id

The unique identifier of this resource.

integer

None.

Response Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.