Get the object id from the specified ref
Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax public static string GetOidFromRef(
string reference
)
Public Shared Function GetOidFromRef (
reference As String
) As String
public:
static String^ GetOidFromRef(
String^ reference
)
static member GetOidFromRef :
reference : string -> string
Parameters
- reference
- Type: SystemString
The ref to get the object id from
Return Value
Type:
StringThe object id of the specified ref
Examples string fullyQualifiedRef = "https://rally1.rallydev.com/slm/webservice/v2.0/user/1234";
string relativeRef = Ref.GetOidFromRef(fullyQualifiedRef);
See Also