Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 419 Bytes

File metadata and controls

28 lines (22 loc) · 419 Bytes
description Automatically generated file. DO NOT MODIFY
const options = {
	authProvider,
};

const client = Client.init(options);

const forward = {
  comment: 'comment-value',
  toRecipients: [
    {
      emailAddress: {
        name: 'name-value',
        address: 'address-value'
      }
    }
  ]
};

await client.api('/groups/{id}/threads/{id}/posts/{id}/forward')
	.post(forward);