Method: Contacts#get_contact_submissions
- Defined in:
- lib/user/crm/contacts.rb
#get_contact_submissions(contact_id) ⇒ Object
Get contact submissions.
Get submissions of a contact.
Parameters
- contact_id
-
(Integer) – Contact id.
Example
@data = @mints_user.get_contact_submissions(146)
224 225 226 |
# File 'lib/user/crm/contacts.rb', line 224 def get_contact_submissions(contact_id) @client.raw('get', "/crm/contacts/#{contact_id}/submissions") end |