Introducing Acumatica Cloud ERP: 2026R1
Technical discussions focused on Web Services and APIs for developers
Recently active
URL: https://esquared.acumatica.com/entity/Default/22.200.001Payload:{ "CustomerID": { "value": "T99999" }, "custom": { "baccount": { "AttributeCWCID": { "value": "Sample123" } } }} I’m getting 200 response but the AttributeCWCID is not updating
When we create a new check for a bill i found that FinePeriodId error.How To fix It.I have already passed the FinePeriodId property In checkRequest
I am trying to use the endpoint to update an employee Payment instructions & getting this exception for the records LocalizedMessage, Message, MessageNoNumber, MessageNoPrefix. The exception is trigerred after the PXWait.LongOperation tried to check PXAction. I have checked the locales table & it has data.
Hello everyone, hope you all good.How can I include a button on a web service Endpoint?i.e.I need to add this button to web service endpoint. Endpoint: Will really appreciate for any kind of responseThank you.
Good day,I’m trying to create a Normal PO which has lines that are linked to a Blanket PO via the REST API. The request I’m sending through is successful, however the line item in the Normal PO is not linked to the Blanket PO as expected. When using the UI to link the Blanket PO Line, all works as expected.From my understanding, we would need to pass through the OrigPONbr & OrigPOType fields, which should link them to the blanket PO, am I perhaps missing something else?API Request & Response:{ "Type": { "value": "Normal" }, "Branch": { "value": "FTNHQ" }, "Date": { "value": "2023-03-08T00:00:00+02:00" }, "Hold": { "value": true }, "Owner": { "value": "FTNHQ-1009" }, "PromisedOn": { "value": "2023-03-15T00:00:00+02:00" }, "VendorID": { "value": "10079" }, "Description": { "value": "Test Blanket PO Creation" }, "Details": [ { "BranchID": { "v
Hi guys,I am currently developing an integration to pull data from Acumatica ERP. I am trying to implement an OAuth 2.0 flow using the Authorization Code Flow.From reading through the resources, I have gotten this flow to work for my local Acumatica ERP instance. However, I am struggling to understand how to expand this to other Acumatica ERP instances, such as those used by our clients.I understand that a key part of the OAuth flow is creating a record in the Connected Applications form, and being issued a Client ID and a secret. I’ve seen that I can export this Connected Applications form as part of a Customization Project, but when I import this Customization Project in another Acumatica ERP instance, it loses the record in the Connected Applications form. I suspect this may have to do with the tenant name being different in the other instance, but I am unsure how to get around this.Even if I do get this Customization Project approach to work, it doesn’t seem logical to me to have e
How to call a check delete action endpoint through rest api
Hi, what is the last Acumatica endpoint version ?For Acumatica 2022R2 it was 22.200.001What endpoint for 2023R1 ?
hello folks so i have a service which is supposed to create an InventoryIssue using IN302000, with the help of an API call on a custom endpoint:I didn’t find an existing Contract , so I created an custom one named InventoryIssue, quite similar to InventoryReceipt.different actions and details:And I tried this PUT call in Postman:put inventoryIssue request: The response is what I expected, with a ReferenceNbrbut when I try the POST for ReleasingFromHold with this ReferenceNbr as parameter, it does not remove the hold of that specific ReferenceNbr, rather it creates a new Issue,POST req with the ReferenceNbr, response is 204.this is what the necessary actions look like I have been following the integration development guide till now to create the different entities and details. So if anyone can help me figure out why me calling the ReleaseFromHold does not removes hold from the previous PUT request, but rather create a new InventoryIssue?
Dears, Kindly need your helpCould I remove (id, rownumber and note ) from response? How?Could I return InventoryId:Ac316 direct not like object? How?
Hello everyone, I am trying to add allocations through the REST API but I am having problems adding the Source and Destination Accounts. I was trying to extend the endpoint but I couldn’t find an object for these two.Has anyone done this before and can show me the setup of the endpoint? Regards,Nick
Which end point can be used to add a new inventory transfer for the screen IN304000 through the Web-API.
Hi,I am trying to call “Add subcontract line" for Bill, but none of subcontracts is availableI tried to create new subcontract and tried to select the existing one subcontract but none of them is depicted at this section. What should I check ?
I’ve created an inventory item and set-up all options/features to make the “NonStockReceiptAsService” checkbox visible in the UI.Now, I’m trying to update this field via the PUT REST API call to no avail. If I inspect this element, it appears to be defined by the field name “NonStockReceiptAsService” but that is ignored in the PUT/update and it is not acquired/visible via the GET API call.Hoping for more information about how to actually set this value programmatically as it only appears to be accessible via the UI (which is not ideal in an integration situation). Added:
Hi,Previously, I had experience with default actions for Bill that are depicted at screenFor using them it was enough to send such request Our client is using custom entity named SubcontractsI need to send new fields from this entity to Bill, these fields are SubcontractNbr and SubcontractLineClient’s Acumatica already contains such actions for this entityI assume that I need to use addSubContractLines action as I need to add these fields to Bill’s columns in DetailsHowever this action does not contain any parametersMy question is : how to use action for adding these custom fields : SubcontractNbr and SubcontractLine to Bill and how to form such request ?This is my request for creating BillURL : https://mcicj.acumatica.com/entity/ARTSDocAlphaEndpoint/20.200.001/BillBody :{ "VendorRef": { "value": "1ABL-217i941" }, "DueDate": { "value": "3/2/2023" }, "Vendor": { "value": "V-06702" }, "Date": { "value": "1/31/2023" }, "Terms": { "value": "PWP" }, "PostPeriod": {
I want to use the Task api with the customer visit type, but the response is generated like this, please help
Good day,In nutshell, we send via the API GI results at night PST (e.g. 11:00 AM PST). We schedule the sending of the data from a product called JB. I have the conditions on the results set to identity the orders that need to pass through the API endpoint to Jitterbit. Now, the data received by JB is not finding the results because of the API UTC time is already the next day. Seems to be eight hours ahead. It seems that any results we send in the evening Questions:Is the API in UTC time?If so, How should I set up the filter conditions on the GI so that the current days records are sent via the API and not get all the records for the previous day. The timestamp is showing the next day on the API transmission. I was thinking @Today-1; this would send yesterday’s records based on the nightly schedule which seems to be the in Acumatica UTC time the next day. Any assistance would grateful.Thank you
Hi,My application generates REST requests for creates invoices creationIt is working except one momentOur client has added custom entityThere is opportunity to create Bill based on this subcontract, when I am doing this in Acumatica interface everything works fine I added those fields to endpointand now trying to do same with rest request Here is my request :URL : https://mcicj.acumatica.com/entity/ARTSDocAlphaEndpoint/20.200.001/BillBody :{ "VendorRef": { "value": "1ABL-217i941" }, "DueDate": { "value": "3/2/2023" }, "Vendor": { "value": "V-06702" }, "Date": { "value": "1/31/2023" }, "Terms": { "value": "PWP" }, "PostPeriod": { "value": "01-2023" }, "Details": [ { "Description": { "value": "Line 001 - Gypcrete" }, "Qty": { "value": 1 }, "UnitCost": { "value": "34573.2" }, "ExtendedCost": { "value": "34573.2" }, "Account": { "value": "5430" }, "SubcontractLine": {
Hi,My application forms rest requests and creates invoicesIt working except one momentOur client has added custom entityThere is opportunity to create Bill based on subcontract, when I am doing this in Acumatica interface everything works fine I added those fields to endpointand now trying to do same with rest request Here is my request :URL : https://mcicj.acumatica.com/entity/ARTSDocAlphaEndpoint/20.200.001/BillBody :{ "VendorRef": { "value": "1ABL-217i941" }, "DueDate": { "value": "3/2/2023" }, "Vendor": { "value": "V-06702" }, "Date": { "value": "1/31/2023" }, "Terms": { "value": "PWP" }, "PostPeriod": { "value": "01-2023" }, "Details": [ { "Description": { "value": "Line 001 - Gypcrete" }, "Qty": { "value": 1 }, "UnitCost": { "value": "34573.2" }, "ExtendedCost": { "value": "34573.2" }, "Account": { "value": "5430" }, "SubcontractLine": { "value": "1"
Hi,I mistakenly deleted one of endpoints.I tried to load customization project again, I unpublished, and removed the project. Imported and published again, but it did not help, endpoint is absent.What should I do ?
I want to use OAuth 2.0 for more security but it does not really seem more secure if I can still connect via simple auth as well. So I want to block the authentification with only username and password and only be able to use Connected Applications for the instance.Does anyone know how to archive this?
I want to be able to post my solution on Acumatica maket place. But I don't know how to do it. Can anyone help me understand this problem. Thanks a lot !!
Hi Team,I have a small question about Acumatica Endpoints.I am using the following endpoint to integrate data from our test Acumatica account.https://{HOST}/AcumaticaERP/ But I see that on production some of our Clients use only the HOST to integrate data. I mean https://{HOST} , without AcumaticaERP/. I would be very grateful if you could clarify where in Acumatica can I check the true Endpoint.Or what is the standard Endpoint that Acumatica recommends using to integrate data?
I tried put request to the following endpoint:https://mysite/entity/Default/22.200.001/EmployeePayrollSettings/?$expand=TaxSettings{ "id": "7946c002-43d0-eb11-818d-0276c812300c", ... "TaxSettings": [ { "id": "eaf47825-ba75-ed11-834f-026327f073d5", "Value": { "value": "2" },... } ]} This is what I get:{ "message": "An error has occurred.", "exceptionMessage": "Operation failed", "exceptionType": "PX.Data.PXInvalidOperationException", "stackTrace": " at PX.Api.ContractBased.EntityService.Put(ISystemContract systemContract, String version, String name, EntityImpl entity, CbOperationContext operationContext, Boolean throwOnError)\r\n at PX.Api.ContractBased.Soap.SoapFacadeBase.PutImpl(EntityImpl entity, Boolean throwOnValidationError)\r\n at PX.Api.ContractBased.SystemContracts.V2.RestController.PutEntity(EntityImpl entity, String select, String filter, String expand, String custom)\r\n at l
Hello all,I am experimenting with extending Acumatica’s web service endpoint to exposes objects from the PR module. I have added a Top Level Entity with a PR203000 as the base. In addition to a few attributes on that top level entity, I have added a Detail Entity that maps to the TaxSettings tab on the screen. Specifically, in that detail entity, I have exposed the Description, State, and Value properties of the “Tax Settings” object. I then try and add data using the following PUT request:{ "EmployeeID": { "value": "KLM" }, "TaxSettings": [ { "State": { "value": "FED" }, "Description": { "value": "Social Security Number" }, "Value": { "value": "123-45-6789" } } ]}However, I receive the following error message:{ "message": "An error has occurred.", "exceptionMessage": "Operation failed", "exceptionType": "PX.Data.PXInvalidOperationExce
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.