@When("I get the external id")
public void iGetTheExternalId() throws SDKException {
result1 = new ArrayList();
try {
XtId id = new XtId(((ExternalIDRepresentation) input.get(0)).getExternalId());
id.setType(((ExternalIDRepresentation) input.get(0)).getType());
result1.add(identity.getExternalId(id));
} catch (SDKException e) {
notFound = (NOT_FOUND == e.getHttpStatus());
}
}