The application_profile
resource is used to configure the Application
's Fee Profile
.
The Application
's Fee Profile
configures what Fee
gets applied to transactions processed by the application_profile
.
Related Guides: Onboarding Process, Collecting Fees
Retrieve a list of application_profiles
.
limit | integer The numbers of items to return. Example: limit=10 |
after_cursor | string Return every resource created after the cursor value. |
before_cursor | string Return every resource created before the cursor value. |
tags.key | string Filter by the |
tags.value | string Filter by the value of a |
List of application_profile objects
Authentication information is missing or invalid
Forbidden
Not Acceptable
curl https://finix.sandbox-payments-api.com/application_profiles \ -H "Content-Type: application/vnd.api+json" \ -u USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e
{- "_embedded": {
- "application_profiles": [
- {
- "id": "PPqjTEKAmRNGLquQUeLKmXhi",
- "created_at": "2022-01-27T07:36:33.65Z",
- "updated_at": "2022-01-27T07:37:38.07Z",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "fee_profile": "FPvCQUcnsueN3Bc3zR1qCBG8",
- "risk_profile": "RPvF6X3AcLnvMby9wBkaVoBi",
- "tags": { },
- "_links": {
- "self": {
}, - "application": {
}, - "risk_profile": {
}, - "fee_profile": {
}
}
}
]
}, - "_links": {
}, - "page": {
- "offset": 0,
- "limit": 20,
- "count": 1
}
}
Retrieve the details of an existing application_profile
.
Single application_profile object
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
curl https://finix.sandbox-payments-api.com/application_profiles/PPqjTEKAmRNGLquQUeLKmXhi \ -H "Content-Type: application/vnd.api+json" \ -u USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e
{- "id": "PPqjTEKAmRNGLquQUeLKmXhi",
- "created_at": "2022-01-27T07:36:33.65Z",
- "updated_at": "2022-01-27T07:37:38.07Z",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "fee_profile": "FPvCQUcnsueN3Bc3zR1qCBG8",
- "risk_profile": "RPvF6X3AcLnvMby9wBkaVoBi",
- "tags": { },
- "_links": {
- "self": {
}, - "application": {
}, - "risk_profile": {
}, - "fee_profile": {
}
}
}
Update an existing application_profile
.
Single application_profile object
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
curl https://finix.sandbox-payments-api.com/application_profiles/PP6Gu3JTdcS5CVuTsY8eCoU7 \ -H "Content-Type: application/vnd.api+json" \ -u USsRhsHYZGBPnQw8CByJyEQW:8a14c2f9-d94b-4c72-8f5c-a62908e5b30e \ -X PUT \ -d '{}'
{- "id": "PPqjTEKAmRNGLquQUeLKmXhi",
- "created_at": "2022-01-27T07:36:33.65Z",
- "updated_at": "2022-01-27T07:37:38.07Z",
- "application": "APgPDQrLD52TYvqazjHJJchM",
- "fee_profile": "FPvCQUcnsueN3Bc3zR1qCBG8",
- "risk_profile": "RPvF6X3AcLnvMby9wBkaVoBi",
- "tags": { },
- "_links": {
- "self": {
}, - "application": {
}, - "risk_profile": {
}, - "fee_profile": {
}
}
}