Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
- InboundBulkMessage
- InboundBulkMessage
import Courier from '@trycourier/courier';
const client = new Courier({
apiKey: 'My API Key',
});
const response = await client.bulk.createJob({ message: { template: 'template' } });
console.log(response.jobId);{
"jobId": "<string>"
}import Courier from '@trycourier/courier';
const client = new Courier({
apiKey: 'My API Key',
});
const response = await client.bulk.createJob({ message: { template: 'template' } });
console.log(response.jobId);{
"jobId": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Show child attributes