POST
/
transaction
curl --request POST \
  --url https://api.legitimuz.com/transaction \
  --header 'Content-Type: multipart/form-data' \
  --form amount=400 \
  --form cpf=53477771842 \
  --form external_id=123 \
  --form status=completed \
  --form type=withdraw

Headers

Origin
string

Client's domain (created during the integration key stage).

Example:

"dashboard.legitimuz.com"

x-api-key
string
Example:

"{{secret_key}}"

Body

multipart/form-data
amount
string

Monetary value of the transaction.

Example:

"400"

cpf
string

CPF of user.

Example:

"53477771842"

external_id
string

(Optional) External ID for the transaction.

Example:

"123"

status
string

(Optional) Initial status of the transaction.

Example:

"completed"

type
string

Type of transaction (e.g., deposit, bet, or withdraw).

Example:

"withdraw"

Response

200

Successful creation of the transaction.