RallyRestApiCreate Method (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 typePath,
DynamicJsonObject obj
)
Public Function Create (
typePath As String,
obj As DynamicJsonObject
) As CreateResult
public:
CreateResult^ Create(
String^ typePath,
DynamicJsonObject^ obj
)
member Create :
typePath : string *
obj : DynamicJsonObject -> CreateResult
Parameters
- 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 DynamicJsonObject toCreate = new DynamicJsonObject();
toCreate["Name"] = "My Defect";
CreateResult createResult = restApi.Create("defect", toCreate);
See Also