Skip to main content
POST
/
corporate
/
operation
/
{operation_id}
/
acam
Add an ACAM item to an existing operation
curl --request POST \
  --url https://fxaas-dev.acorianacorretora.com.br/corporate/operation/{operation_id}/acam \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "local_currency_amount": 1.2,
  "tax_id": "12345678901234",
  "merchant": "Acme Importações Ltda"
}
'
{
  "message": "ACAM item added successfully",
  "status": "success"
}

Headers

Authorization
string
required

Authorization header

Example:

"Bearer Token"

Path Parameters

operation_id
string<uuid>
required

ID of the EFX operation to add the ACAM item to

Body

application/json
local_currency_amount
number<double>
required

Amount in local currency

tax_id
string
required

Tax ID of the merchant or individual

merchant
string
required

Name of the merchant

Response

ACAM item added successfully

message
string

Success or error message

status
enum<string>

Response status

Available options:
success,
error