You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When performing a default OBPMarshal request with getResourceAtAPIPath to "my/accounts", the HandleOBPMarshalError is called with the following:
Expected to resource at path my/accounts to yield a NSDictionary, but got instead got:
(
{
"account_routing" = {
address = 1233;
scheme = OBP;
};
"bank_id" = rbs;
id = 1233;
label = "<null>";
}
)
from body: [{"id":"1233","label":null,"bank_id":"rbs","account_routing":{"scheme":"OBP","address":"1233"}}]
The response seems valid and expected, but isn't usable as the MarshalError is called in stead of HandleOBPMarshalData
I've used the following: let serverBase = "https://apisandbox.openbankproject.com/obp/v3.0.0/" session.marshal.getResourceAtAPIPath("my/accounts", withOptions: nil, forResultHandler: resultHandler, orErrorHandler: errorHandler)
The text was updated successfully, but these errors were encountered:
When performing a default OBPMarshal request with getResourceAtAPIPath to "my/accounts", the
HandleOBPMarshalError
is called with the following:The response seems valid and expected, but isn't usable as the MarshalError is called in stead of
HandleOBPMarshalData
I've used the following:
let serverBase = "https://apisandbox.openbankproject.com/obp/v3.0.0/"
session.marshal.getResourceAtAPIPath("my/accounts", withOptions: nil, forResultHandler: resultHandler, orErrorHandler: errorHandler)
The text was updated successfully, but these errors were encountered: