Skip to main content
POST
/
v3
/
profiles
/
{profile}
/
transactions
/
claims
Add Profile Transaction Claim
curl --request POST \
  --url http://localhost/api/v3/profiles/{profile}/transactions/claims \
  --header 'Content-Type: application/json' \
  --data '
{
  "profile_id": "<string>",
  "transaction_receipt_ref": "<string>",
  "transaction_total": 123,
  "transaction_transacted_at": "2023-12-25",
  "transaction_timezone": "<string>",
  "transaction_location_external_code": "<string>"
}
'
{
  "data": {
    "id": 123,
    "status": "<string>",
    "profile_id": "<string>",
    "transaction_receipt_ref": "<string>",
    "transaction_transacted_at": "<string>",
    "transaction_timezone": "<string>",
    "transaction_total": "<string>",
    "transaction_location_external_code": "<string>",
    "attempts": 123,
    "claimed_transaction_id": 123,
    "claimed_at": "<string>",
    "last_checked_at": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.omneo.io/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

profile
string<uuid>
required

The profile ID

Body

application/json
profile_id
string
required
transaction_receipt_ref
string
required
transaction_total
number
required
transaction_transacted_at
string<date>
transaction_timezone
string
transaction_location_external_code
string

Response

TransactionClaim

data
TransactionClaim · object
required