cloudflare
Version:
The official TypeScript library for the Cloudflare API
50 lines (42 loc) • 1.29 kB
text/typescript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../../../resource';
import * as Core from '../../../core';
export class Reclassify extends APIResource {
/**
* Change email classfication
*/
create(
postfixId: string,
params: ReclassifyCreateParams,
options?: Core.RequestOptions,
): Core.APIPromise<ReclassifyCreateResponse> {
const { account_id, ...body } = params;
return (
this._client.post(`/accounts/${account_id}/email-security/investigate/${postfixId}/reclassify`, {
body,
...options,
}) as Core.APIPromise<{ result: ReclassifyCreateResponse }>
)._thenUnwrap((obj) => obj.result);
}
}
export type ReclassifyCreateResponse = unknown;
export interface ReclassifyCreateParams {
/**
* Path param: Account Identifier
*/
account_id: string;
/**
* Body param:
*/
expected_disposition: 'NONE' | 'BULK' | 'MALICIOUS' | 'SPAM' | 'SPOOF' | 'SUSPICIOUS';
/**
* Body param: Base64 encoded content of the EML file
*/
eml_content?: string | null;
}
export declare namespace Reclassify {
export {
type ReclassifyCreateResponse as ReclassifyCreateResponse,
type ReclassifyCreateParams as ReclassifyCreateParams,
};
}