We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to include the ReferredBy attribute in the ClientService.get_clients function. In the docs you can state:
ReferredBy
ClientService.get_clients
<Fields> <string>Clients.CustomClientFields</string> </Fields>
but when I do that in my request:
"Fields"=>{ "string"=>"Clients.ReferredBy" }
the field is not included when I call:
response = MindBody::Services::ClientService.get_clients(search_params) response.result[:clients]
I can however access the field by parsing the response as follows:
response = MindBody::Services::ClientService.get_clients(search_params) response.response.hash[:envelope][:body][:get_clients_response][:get_clients_result][:clients][:referred_by]
Is there any way to have this included in the standard response so I don't need to manually parse the response?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to include the
ReferredBy
attribute in theClientService.get_clients
function. In the docs you can state:but when I do that in my request:
the field is not included when I call:
I can however access the field by parsing the response as follows:
Is there any way to have this included in the standard response so I don't need to manually parse the response?
The text was updated successfully, but these errors were encountered: