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 all application_profiles
.
For details on how to query endpoints using the available parameters.
List of application_profile objects
Authentication information is missing or invalid
Forbidden
Not Acceptable
curl "https://finix.sandbox-payments-api.com/application_profiles" \ -H "Finix-Version: 2022-02-01" \ -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 "Finix-Version: 2022-02-01" \ -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/PPqjTEKAmRNGLquQUeLKmXhi" \ -H "Content-Type: application/json" \ -H "Finix-Version: 2022-02-01" \ -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": {
}
}
}