Interface UploadApplicationAttachmentOptions

interface UploadApplicationAttachmentOptions {
    accessToken: string;
    file: File;
}

Properties

Properties

accessToken: string

The user OAuth2 bearer token to use for the request. Client credentials grant tokens are not valid for this endpoint and currently produce a 500 error. This may be either raw or prefixed with Bearer .

file: File

The file to upload. This will be sent as the file multipart field.