A Merchant Profile
links a Merchant
to it's risk_profile
and fee_profile
. Each Merchant
has a Merchant Profile
.
When a Merchant
gets created, a Merchant Profile
also gets created. This new Merchant Profile
automatically receives a new risk_profile
and fee_profile
that are copies of the risk and fee profiles on the Application Profile
.
Related Guides: Collecting Fees
Retrieve a list of Merchant Profiles
.
For details on how to query endpoints using the available parameters, see Query Parameters.
Single merchant profile object
Authentication information is missing or invalid
Forbidden
Not Acceptable
curl "https://finix.sandbox-payments-api.com/merchant_profiles" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "_embedded": {
- "merchant_profiles": [
- {
- "id": "MPo2FsjMoEV2xjq81cMWEjJ4",
- "created_at": "2024-12-27T06:34:21.36Z",
- "updated_at": "2024-12-27T06:34:21.36Z",
- "application": "APc9vhYcPsRuTSpKD9KpMtPe",
- "card_present_fee_profile": null,
- "fee_profile": null,
- "payout_profile": null,
- "risk_profile": "RP8z1UutdHx921DEcfnLRNs6",
- "tags": { },
- "_links": {
- "self": {
}, - "application": {
}, - "risk_profile": {
}
}
}, - {
- "id": "MPkqsHYxQ4SCLGbtAm4HMWsr",
- "created_at": "2024-12-04T07:55:59.88Z",
- "updated_at": "2025-01-02T09:42:17.82Z",
- "application": "APc9vhYcPsRuTSpKD9KpMtPe",
- "card_present_fee_profile": "FPuizPqrhzYLbmJm88u7aqfj",
- "fee_profile": "FPuizPqrhzYLbmJm88u7aqfj",
- "payout_profile": "PO7oz3zVcGFrxPWZoRAy9oXd",
- "risk_profile": "RP37kQLfxBQiXLEMnb4YCPPg",
- "tags": { },
- "_links": {
- "self": {
}, - "application": {
}, - "risk_profile": {
}, - "fee_profile": {
}
}
}, - {
- "id": "MPfRU8XJ8sDZryZhoYCyjtyB",
- "created_at": "2024-11-14T22:25:06.76Z",
- "updated_at": "2024-11-14T22:25:39.56Z",
- "application": "APc9vhYcPsRuTSpKD9KpMtPe",
- "card_present_fee_profile": null,
- "fee_profile": null,
- "payout_profile": "POcWbEcDftaX474HhUgDS4pC",
- "risk_profile": "RP8z1UutdHx921DEcfnLRNs6",
- "tags": { },
- "_links": {
- "self": {
}, - "application": {
}, - "risk_profile": {
}
}
}
]
}, - "_links": {
}, - "page": {
- "limit": 100,
- "next_cursor": "MPfRU8XJ8sDZryZhoYCyjtyB"
}
}
Retrieve the details of a previously created Merchant Profile
.
Single merchant profile object
Authentication information is missing or invalid
Forbidden
Object does not exist
Not Acceptable
curl "https://finix.sandbox-payments-api.com/merchant_profiles/MPfRU8XJ8sDZryZhoYCyjtyB" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda
{- "id": "MPfRU8XJ8sDZryZhoYCyjtyB",
- "created_at": "2024-11-14T22:25:06.76Z",
- "updated_at": "2024-11-14T22:25:39.56Z",
- "application": "APc9vhYcPsRuTSpKD9KpMtPe",
- "card_present_fee_profile": null,
- "fee_profile": null,
- "payout_profile": "POcWbEcDftaX474HhUgDS4pC",
- "risk_profile": "RP8z1UutdHx921DEcfnLRNs6",
- "tags": { },
- "_links": {
- "self": {
}, - "application": {
}, - "risk_profile": {
}
}
}
Update a Merchant Profile
.
Single merchant profile object
Authentication information is missing or invalid
Forbidden
Not Acceptable
curl "https://finix.sandbox-payments-api.com/merchant_profiles/MPfRU8XJ8sDZryZhoYCyjtyB" \ -H "Content-Type: application/json" \ -H "Finix-Version: 2022-02-01" \ -u USfdccsr1Z5iVbXDyYt7hjZZ:313636f3-fac2-45a7-bff7-a334b93e7bda \ -X PUT \ -d ' { "fee_profile": "FP9F2KEnY4wt1XjFvhLBJVjb" }'
{- "id": "MPfRU8XJ8sDZryZhoYCyjtyB",
- "created_at": "2024-11-14T22:25:06.76Z",
- "updated_at": "2024-11-14T22:25:39.56Z",
- "application": "APc9vhYcPsRuTSpKD9KpMtPe",
- "card_present_fee_profile": null,
- "fee_profile": null,
- "payout_profile": "POcWbEcDftaX474HhUgDS4pC",
- "risk_profile": "RP8z1UutdHx921DEcfnLRNs6",
- "tags": { },
- "_links": {
- "self": {
}, - "application": {
}, - "risk_profile": {
}
}
}