curl --request POST \
--url https://app.pennylane.com/api/external/v2/supplier_invoices/{supplier_invoice_id}/matched_purchase_requests \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"purchase_request_id": 42
}'
This response does not have an example.
This endpoint allows you to match a purchase request to a supplier invoice.
You can match one purchase request with one supplier invoice at a time. To match multiple purchase request to a supplier invoice, you need to call this endpoint multiple times. It’s possible to match a purchase request to multiple supplier invoices too.
ℹ️ This endpoint requires one of the following scopes:
supplier_invoices:all
curl --request POST \
--url https://app.pennylane.com/api/external/v2/supplier_invoices/{supplier_invoice_id}/matched_purchase_requests \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"purchase_request_id": 42
}'
This response does not have an example.
The access token received from the authorization server in the OAuth 2.0 flow.
Purchase request matched successfully
Was this page helpful?