getCustomer

Get a Customer by id

This function retrieves the details of the customer which is represented by the Id passed in the parameters.

func getCustomer(byId id: String, completion: @escaping (_ model: CustomerResultView?, _ error: String?)->()) {
}

What’s Next