RallyRestApiDelete Method (String, Int64) |
Delete the object described by the specified type and object id.
Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax public OperationResult Delete(
string typePath,
long oid
)
Public Function Delete (
typePath As String,
oid As Long
) As OperationResult
public:
OperationResult^ Delete(
String^ typePath,
long long oid
)
member Delete :
typePath : string *
oid : int64 -> OperationResult
Parameters
- typePath
- Type: SystemString
the type - oid
- Type: SystemInt64
the object id
Return Value
Type:
OperationResultAn OperationResult 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 long objectID = 12345678912L;
OperationResult deleteResult = restApi.Delete("Defect", objectID);
See Also