I'm using the Jasmin API to send automatic invoices for online payments, I've looked, but I'm not seeing how I can edit a customer's information, I can create through the endpoint:
api/{tenantKey}/{orgKey}/salesCore/customerParties
But I do not see an endpoint for editing the Name and Address fields, for example.
UPDATE:
I have already found the documentation for the client edition (Thank you Sérgio Sereno): link
But here I have a problem, I'm doing the request:
https://my.jasminsoftware.com/api/{{AccountKey}}/{{SubscriptionKey}}/businessCore/parties/ALCAD/country
With the body:
{
"partyKey": "ALCAD",
"value": "GB"
}
And returns:
{
"validations": [
{
"propertyName": "value",
"errorMessage": "Unexpected character encountered while parsing value: {. Path '', line 1, position 1."
}
]
}