-
Notifications
You must be signed in to change notification settings - Fork 2
Messages block
Nadia edited this page Jan 8, 2020
·
1 revision
client = EbanqApi::Client.new
Some examples:
options - hash of options for request,
client.messages.list({page: 1, per_page: 3, order: 'subject', sort: 'asc'})
client.messages.list(search: 'test')
id (required) - Message id
client.messages.show(4)
id (required) - Thread ID
client.messages.delete(4)
id (required) - Message id
client.messages.show(4)
subject (required) body (required) recipient thread_id
client.messages.send_to_administrator('test subject', 'test body')