feat(MED-85): add logging for medipost actions with xml and related order id
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
-- Parameters order_id
|
||||
CREATE OR REPLACE FUNCTION medreport.send_medipost_test_response_for_order(order_id text)
|
||||
CREATE OR REPLACE FUNCTION medreport.send_medipost_test_response_for_order(medusa_order_id text)
|
||||
RETURNS void
|
||||
LANGUAGE plpgsql
|
||||
AS $$
|
||||
BEGIN
|
||||
select net.http_post(
|
||||
url := 'https://test.medreport.ee/api/job/send-medipost-test-response-for-order',
|
||||
url := 'https://test.medreport.ee/api/order/medipost-test-response',
|
||||
headers := jsonb_build_object(
|
||||
'Content-Type', 'application/json',
|
||||
'x-jobs-api-key', 'fd26ec26-70ed-11f0-9e95-431ac3b15a84'
|
||||
),
|
||||
body := jsonb_build_object(
|
||||
'order_id', order_id
|
||||
'medusaOrderId', medusa_order_id
|
||||
)
|
||||
) as request_id;
|
||||
END;
|
||||
|
||||
Reference in New Issue
Block a user