The webhook routes use plural customers to match the webhook topic
post "/customers_data_request", to: "customers_data_request#receive"
post "/customers_redact", to: "customers_redact#receive"
The existing jobs also use plural customers. However, the controller classes are singular CustomerDataRequestController and CustomerRedactController and they both call singular CustomerDataRequestJob and CustomerRedactJob.
The webhook routes use plural
customersto match the webhook topicThe existing jobs also use plural
customers. However, the controller classes are singularCustomerDataRequestControllerandCustomerRedactControllerand they both call singularCustomerDataRequestJobandCustomerRedactJob.