Posts

Showing posts from September, 2022

REST API for AP invoice Cancellation | How to cancel standard invoice in payables by using REST API

 how to cancel standard invoice in payables. Here's how to pass correct Content Type: 1) In Postman/REST API Tool, go to Headers tab, and check the box for key : "Content-Type", 2) Pass value = 'application/vnd.oracle.adf.action+json' , without any quotes. 3) This value is also specified in documentation for REST APIs : link :-  Cancel Invoice :- /fscmRestApi/resources/11.13.18.05/invoices/action/cancelInvoice --================================================  OLD ---- https://your link info.com/fscmRestApi/resources/11.13.18.05/invoices {   "name": "cancelInvoice",   "parameters": [ { "InvoiceNumber": "REST_API_1001" }, { "BusinessUnit": "OAL Private Limited" }, { "Supplier": "Test Supplier  App99" }   ] } --================================================  NEW ---- https://your link info.com/fscmRestApi/resources/11.13.18.05/invoices/action/cancelInvoi

REST API for AP invoice creation | How to create standard invoice in payables by using REST API

 How to create Standard AP Invoice by using REST API in fusion. API LINK :- https://passyour link info.com/fscmRestApi/resources/11.13.18.05/invoices payload:- {     "InvoiceNumber": "REST_1003",     "InvoiceCurrency": "INR",     "InvoiceAmount": 200,     "InvoiceDate": "2022-09-10",     "BusinessUnit": "OAL Private Limited",     "Supplier": "Test Supplier  App99",     "SupplierSite": "DELHI-APP1099",     "InvoiceGroup": "REST-External",     "Description": "TESTING REST API",        "invoiceInstallments": [ {             "InstallmentNumber": 1,             "DueDate": "2022-09-10",             "GrossAmount": 110                    },         {             "InstallmentNumber": 2,             "DueDate": "2022-09-15",             "Gro