feat(core): accept profile_id in merchant_account, connectors and customers core functions (#5505)

This commit is contained in:
Hrithikesh
2024-08-05 17:08:29 +05:30
committed by GitHub
parent 53b5551df7
commit a3e01bb4ae
11 changed files with 29 additions and 13 deletions

View File

@ -85,7 +85,7 @@ pub async fn customer_retrieve(
&req,
payload,
|state, auth, req, _| {
customers::retrieve_customer(state, auth.merchant_account, auth.key_store, req)
customers::retrieve_customer(state, auth.merchant_account, None, auth.key_store, req)
},
&auth::HeaderAuth(auth::ApiKeyAuth),
api_locking::LockAction::NotApplicable,