You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
459 B
21 lines
459 B
import { API_ROOT } from 'config'
|
|
import { callApi } from 'helpers'
|
|
import type { SubscriptionResponse } from 'requests/getSubscriptions'
|
|
|
|
type Props = {
|
|
item: SubscriptionResponse,
|
|
product_name: string,
|
|
}
|
|
|
|
export const getBrazilPaymentUrl = async ({ item, product_name }: Props) => {
|
|
const config = {
|
|
body: {
|
|
item: { ...item, product_name },
|
|
},
|
|
}
|
|
|
|
return callApi({
|
|
config,
|
|
url: `${API_ROOT}/account/payment/pagbrasil`,
|
|
})
|
|
}
|
|
|