Skip to main content
POST
/
v3
/
{customerId}
/
attributes
/
upload
/
AllAttributes
Upload (All Attributes Example)
curl --request POST \
  --url https://{instance}-api.private.fin.ag/v3/{customerId}/attributes/upload/AllAttributes
{
  "HttpStatusCode": 200,
  "Card": {
    // List of All Attributes
    "AttributesDetail": [
      {
        //List of All AttributesDetail Transactions
      }
    ]
  },
  "RequestId": "c736fc5c-68c4-44de-ab68-bb09af0fe4d7"
}
This endpoint returns all available attributes for the given set of transactions. Unlike the base /Upload endpoint, you do not need to specify which attributes you want to receive—the API will automatically calculate and return all supported attributes.

A note on Authorization

In order to access and use any of the /Upload endpoints, you will need a secret authorization token from Flinks. If you do not already have one, please reach out to your Flinks Representative.
{
  "HttpStatusCode": 200,
  "Card": {
    // List of All Attributes
    "AttributesDetail": [
      {
        //List of All AttributesDetail Transactions
      }
    ]
  },
  "RequestId": "c736fc5c-68c4-44de-ab68-bb09af0fe4d7"
}

Headers

Authorization
string

Bearer Token (API secret key).

Path Parameters

customerId
string
required

Unique GUID provided by Flinks that grants you access to the environment.

Query Parameters

Options
string[]

Additional parameters that you want to include.

Origin Country
enum<string>

Tells the API to use a specific country model. Possible values include: - ca = Canada - us = United States

Available options:
ca,
us
MostRecentBalance
string

The most recent balance for all transactions. Flinks uses this parameter to calculate the running balance if you are not passing the balance field in your transaction set or using OldestBalance.

If you are not using balance in the transaction set or OldestBalance, this parameter is required.

OldestBalance
string

The oldest balance of all transactions. Flinks uses this parameter to calculate the running balance if you are not passing the balance field in your transaction set or using MostRecentBalance.

If you are not using balance in the transaction set or MostRecentBalance, this parameter is required.

Transactions
string[]

Contains the previously formatted transactions (defined earlier in this documentation) that you are uploading to Flinks.

Response

Result

The response is of type object.