Request parameters for listFinancialEventsByGroupId operation in DefaultApi.

DefaultApiListFinancialEventsByGroupIdRequest

interface DefaultApiListFinancialEventsByGroupIdRequest {
    eventGroupId: string;
    maxResultsPerPage?: number;
    nextToken?: string;
    postedAfter?: string;
    postedBefore?: string;
}

Properties

eventGroupId: string

The identifier of the financial event group to which the events belong.

DefaultApiListFinancialEventsByGroupId

maxResultsPerPage?: number

The maximum number of results to return per page. If the response exceeds the maximum number of transactions or 10 MB, the API responds with 'InvalidInput'.

DefaultApiListFinancialEventsByGroupId

nextToken?: string

A string token returned in the response of your previous request.

DefaultApiListFinancialEventsByGroupId

postedAfter?: string

A date used for selecting financial events posted after (or at) a specified time. The date-time must be more than two minutes before the time of the request, in ISO 8601 date time format.

DefaultApiListFinancialEventsByGroupId

postedBefore?: string

A date used for selecting financial events posted before (but not at) a specified time. The date-time must be later than `PostedAfter` and no later than two minutes before the request was submitted, in ISO 8601 date time format. If `PostedAfter` and `PostedBefore` are more than 180 days apart, no financial events are returned. You must specify the `PostedAfter` parameter if you specify the `PostedBefore` parameter. Default: Now minus two minutes.

DefaultApiListFinancialEventsByGroupId