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 USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "_embedded": {
- "application_profiles": [
- {
- "id": "PPqCt5m7AFobHUQsKxqkCEyT",
- "created_at": "2024-11-14T22:25:06.78Z",
- "updated_at": "2024-11-14T22:25:06.78Z",
- "application": "APc9vhYcPsRuTSpKD9KpMtPe",
- "card_present_fee_profile": null,
- "fee_profile": null,
- "risk_profile": "RP3X1FMA23pSsP9dJRMmQ4Pf",
- "tags": { },
- "_links": {
- "self": {
}, - "application": {
}, - "risk_profile": {
}, - "fee_profile": {
}
}
}
]
}, - "_links": {
}, - "page": {
- "limit": 100,
- "next_cursor": "PPqCt5m7AFobHUQsKxqkCEyT"
}
}
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/PPqCt5m7AFobHUQsKxqkCEyT" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "id": "PPqCt5m7AFobHUQsKxqkCEyT",
- "created_at": "2024-11-14T22:25:06.78Z",
- "updated_at": "2024-11-14T22:25:06.78Z",
- "application": "APc9vhYcPsRuTSpKD9KpMtPe",
- "card_present_fee_profile": null,
- "fee_profile": "RP3X1FMA23pSsP9dJRMmQ4Pf",
- "risk_profile": "RP3X1FMA23pSsP9dJRMmQ4Pf",
- "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/PPqCt5m7AFobHUQsKxqkCEyT" \ -H "Content-Type: application/json" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda \ -X PUT \ -d '{ "fee_profile": "FP9n9pPnDHZ98zxH9S2d1Qwn" }'
{- "id": "PPqCt5m7AFobHUQsKxqkCEyT",
- "created_at": "2024-11-14T22:25:06.78Z",
- "updated_at": "2024-11-14T22:25:06.78Z",
- "application": "APc9vhYcPsRuTSpKD9KpMtPe",
- "card_present_fee_profile": null,
- "fee_profile": "RP3X1FMA23pSsP9dJRMmQ4Pf",
- "risk_profile": "RP3X1FMA23pSsP9dJRMmQ4Pf",
- "tags": { },
- "_links": {
- "self": {
}, - "application": {
}, - "risk_profile": {
}, - "fee_profile": {
}
}
}