Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

Resource: Relationships ( /api/organisation/{id}/relationshiptype/{key}/relationships )

Relationships (Collection) resource - allows the creation of new relationships via a POST request

This resource supports the following methods: POST

Methods

POST


Create new relationship.

This method supports the OData parameters $filter, $top, $take, $orderby and $inlinecount. See OData Topic for more details.

Required Permissions

  • TestManagement/ManageExecutions/Edit
  • TestManagement/ManageScripts/Edit
  • TestManagement/ManageIncidents/Edit
  • TestManagement/ManageRequirements/Edit

Status Codes

These are the expected status codes returned by the service. In addition, some other status codes may be returned if either an internal error occurs or there is an authentication issue (such as an expired OAuth token).

StatusDescription
200 - OKReturned if the request was completed successfully.
404 - NotFoundReturned if organisation does not exist.

Example - Create a new relationship

Creates a new relationship between two entities.

Request Headers

KeyValueDescription
Acceptapplication/json

Request Parameters

KeyValueDescription
{id}4bb709c2-e0e7-4af3-9f60-a045016a9610ID of the Organisation to create the relationship for.
{key}ScriptToRequirementCoverageThe key of the relationship type to create

Request Body

Code Block
languagenone
{
  "RelationshipDirection": "SourceToDestination",
  "DestinationEntityId": "e0f4b167-a01f-4e74-a78a-a182011e0305",
  "DestinationEntityType": "Requirement",
  "SourceEntityId": "d38882b4-8d73-4cd7-8ba1-a182011e3db1",
  "SourceEntityType": "TestScript"
}

Response Headers

KeyValueDescription
Locationhttp://localhost/api/organisation/1b716a03-b63d-4a17-b916-a182011b35d0/relationshiptype/ScriptToRequirementCoverage/relationship/940e88fb-5ba5-42af-ade1-a18500bedfd3
Content-Typeapplication/json; charset=utf-8

Response Body

Code Block
languagenone
{
  "EntityId": "e0f4b167-a01f-4e74-a78a-a182011e0305",
  "Number": "1",
  "Name": "Some Requirement",
  "EntityType": "Requirement",
  "AssignedTo": "joeb",
  "Status": "Draft",
  "Priority": "High",
  "Type": "Functional",
  "PackageId": "c232382b-0c66-475b-b59b-8753d4c5377b",
  "PackageName": "Reports",
  "PackageEntityType": "RequirementPackage",
  "PackagePath": "/Requirements/Reports",
  "ParentPath": "",
  "RelationshipId": "940e88fb-5ba5-42af-ade1-a18500bedfd3",
  "RelationshipTypeKey": "ScriptToRequirementCoverage",
  "RelationshipType": "Coverage",
  "Relation": "Covered By",
  "RelationshipDirection": "Source -> Destination",
  "CanDelete": true,
  "CanEdit": false,
  "Children": [],
  "Links": [
    {
      "Href": "http://localhost/api",
      "Rel": "Entity"
    }
  ]
}

Status Code

201 - Created