Const{
type: "GET_BILLS_BY_PARCEL_NUMBER_REQUEST",
payload: {
parcelNumber: "123-456-789"
}
}
{
type: "GET_BILLS_BY_PARCEL_NUMBER_SUCCESS",
payload: {
parcelNumber: "123-456-789",
data: []
}
}
{
type: "GET_BILLS_BY_PARCEL_NUMBER_FAILURE",
payload: {
parcelNumber: "123-456-789",
error: "Not found"
}
}
Dispatch to fetch a tax account by parcel number.
{
type: "GET_TAX_ACCOUNT_BY_PARCEL_NUMBER_REQUEST",
payload: {
parcelNumber: "123-456-789"
}
}
{
type: "GET_TAX_ACCOUNT_BY_PARCEL_NUMBER_SUCCESS",
payload: {
parcelNumber: "123-456-789",
data: {
parcelNumber: "123-456-789"
}
}
}
{
type: "GET_TAX_ACCOUNT_BY_PARCEL_NUMBER_FAILURE",
payload: {
parcelNumber: "123-456-789",
error: "Not found"
}
}
Dispatch to submit a bill payment request.
Dispatch to record PayIt payment post-log details.
Dispatch to search tax accounts by business name.
{
type: "SEARCH_ACCOUNTS_BY_BUSINESS_NAME_REQUEST",
payload: {
businessName: "Acme LLC"
}
}
{
type: "SEARCH_ACCOUNTS_BY_BUSINESS_NAME_SUCCESS",
payload: {
businessName: "Acme LLC",
data: []
}
}
{
type: "SEARCH_ACCOUNTS_BY_BUSINESS_NAME_FAILURE",
payload: {
businessName: "Acme LLC",
error: "Search failed"
}
}
Dispatch to search tax accounts by owner name.
{
type: "SEARCH_ACCOUNTS_BY_OWNER_NAME_REQUEST",
payload: {
ownerFirstName: "Jane",
ownerLastName: "Doe"
}
}
{
type: "SEARCH_ACCOUNTS_BY_OWNER_NAME_SUCCESS",
payload: {
ownerFirstName: "Jane",
ownerLastName: "Doe",
data: []
}
}
{
type: "SEARCH_ACCOUNTS_BY_OWNER_NAME_FAILURE",
payload: {
ownerFirstName: "Jane",
ownerLastName: "Doe",
error: "Search failed"
}
}
Dispatch to search tax accounts by street address.
{
type: "SEARCH_ACCOUNTS_BY_STREET_ADDRESS_REQUEST",
payload: {
streetNumber: "123",
streetName: "Main St"
}
}
{
type: "SEARCH_ACCOUNTS_BY_STREET_ADDRESS_SUCCESS",
payload: {
streetNumber: "123",
streetName: "Main St",
data: []
}
}
{
type: "SEARCH_ACCOUNTS_BY_STREET_ADDRESS_FAILURE",
payload: {
streetNumber: "123",
streetName: "Main St",
error: "Search failed"
}
}
Dispatch to set whether the payment flow is client-initiated.
Dispatch to fetch tax bills by parcel number.