RallyRestApiCreate Method (String, String, DynamicJsonObject) |
Create an object of the specified type from the specified object
Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax public CreateResult Create(
string workspaceRef,
string typePath,
DynamicJsonObject obj
)
Public Function Create (
workspaceRef As String,
typePath As String,
obj As DynamicJsonObject
) As CreateResult
public:
CreateResult^ Create(
String^ workspaceRef,
String^ typePath,
DynamicJsonObject^ obj
)
member Create :
workspaceRef : string *
typePath : string *
obj : DynamicJsonObject -> CreateResult
Parameters
- workspaceRef
- Type: SystemString
the workspace into which the object should be created. Null means that the server will pick a workspace. - typePath
- Type: SystemString
the type to be created - obj
- Type: Rally.RestApi.JsonDynamicJsonObject
the object to be created
Return Value
Type:
CreateResultA
CreateResult with information on the status of the request
Exceptions Exception | Condition |
---|
RallyUnavailableException | Rally returned an HTML page. This usually occurs when Rally is off-line. Please check the ErrorMessage property for more information. |
RallyFailedToDeserializeJson | The JSON returned by Rally was not able to be deserialized. Please check the JsonData property for what was returned by Rally. |
Examples string workspaceRef = "/workspace/12345678910";
DynamicJsonObject toCreate = new DynamicJsonObject();
toCreate["Name"] = "My Defect";
CreateResult createResult = restApi.Create(workspaceRef, "defect", toCreate);
See Also