[
{
"title":"Testing",
"link":"https://docs.solidgate.com/payments/testing/",
"text":"Simulate payments to test your integration before launching in production.",
"imgSrc":"https://solidgate.com/wp-content/uploads/2022/06/icon-customizable.svg"
}
,
{
"title":"Create your payment form",
"link":"https://docs.solidgate.com/payments/integrate/payment-form/create-your-payment-form/",
"text":"Understand how to integrate the payment form into your product.",
"imgSrc":"https://solidgate.com/wp-content/uploads/2022/06/icon-payments.svg"
}
,
{
"title":"Subscriptions",
"link":"https://docs.solidgate.com/subscriptions/",
"text":"Create and maintain a stable and healthy business subscription model.",
"imgSrc":"https://solidgate.com/wp-content/uploads/2022/06/icon-global.svg"
}
]
Form events are essential checkpoints for monitoring user interactions in payments
By using the Solidgate Payment Form, you gain the capability to establish comprehensive user action tracking through the events it generates.
These events provide valuable touchpoints for monitoring and analyzing user interactions. They handle the tracking of successful payments, resolution of form initialization issues, and analysis of user interactions with form controls, offering comprehensive insights into the payment workflow.
1
2
3
4
<Payment{...restParams}onEventName={callback}/>
1
2
3
4
5
6
constform=PaymentFormSdk.init(data)form.on('event_type',(e)=>{constbody=e.data// The body of any available event as it described below.
// The code will be executed when the event is received.
})
This event indicates that the Solidgate SDK displayed the Solidgate Payment Form,
Guide
Enable Google Pay button to give your customers more payment options.
Google Pay
,
Guide
Optimize your payment form with Apple Pay integration, providing a secure and efficient checkout for Apple device users.
Apple Pay
or an
Guide
Activate and customize the PayPal button on your payment form to ensure a smooth customer experience.
PayPal
button.
1
2
3
4
interfaceMountedMessage{type:'mounted',entity:'applebtn'|'googlebtn'|'paypal'|'form'|'resign'// one of listed values
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
importReact,{FC,useCallback}from'react'importReactDOMfrom'react-dom';importPayment,{InitConfig,SdkMessage,MessageType}from"@solidgate/react-sdk"exportconstMyPayment: FC<{merchantData: InitConfig['merchantData']styles?: InitConfig['styles']formParams?: InitConfig['formParams']width?: string}>=(props)=>{consthandleMounted=useCallback((event: SdkMessage[MessageType.Mounted])=>{// here logic
},[])return(<Payment{...props}onMounted={handleMounted}/>)}
<template><Payment:merchant-data="merchantData"@mounted="mounted"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functionmounted(event:SdkMessage[MessageType.Mounted]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(mounted)="onMounted($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onMounted(event: SdkMessage[MessageType.Mounted]):void{// here your logic
}}
Submit
This event indicates that the user has successfully submitted the payment. It is triggered when valid data is entered within the form and the payment process is initiated.
The event could be triggered for one of the variations: the Solidgate Payment Form,
Guide
Enable Google Pay button to give your customers more payment options.
Google Pay
,
Guide
Optimize your payment form with Apple Pay integration, providing a secure and efficient checkout for Apple device users.
Apple Pay
or an
Guide
Activate and customize the PayPal button on your payment form to ensure a smooth customer experience.
PayPal
button.
1
2
3
4
interfaceSubmitMessage{type:'submit',entity:'applebtn'|'googlebtn'|'paypal'|'form'|'resign'// one of listed values, indicates how payment was processed
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
importReact,{FC,useCallback}from'react'importReactDOMfrom'react-dom';importPayment,{InitConfig,SdkMessage,MessageType}from"@solidgate/react-sdk"exportconstMyPayment: FC<{merchantData: InitConfig['merchantData']styles?: InitConfig['styles']formParams?: InitConfig['formParams']width?: string}>=(props)=>{consthandleSubmit=useCallback((event: SdkMessage[MessageType.Submit])=>{// here logic
},[])return(<Payment{...props}onSubmit={handleSubmit}/>)}
<template><Payment:merchant-data="merchantData"@submit="submit"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functionsubmit(event:SdkMessage[MessageType.Submit]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(submit)="onSubmit($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onSubmit(event: SdkMessage[MessageType.Submit]):void{// here your logic
}}
Success
This event indicates that the payment has been successfully processed.
1
2
3
4
5
6
7
8
9
10
11
interfaceSuccessMessage{type:'success',entity:'applebtn'|'googlebtn'|'paypal'|'form'|'resign'// one of listed values, indicates how payment was processed
order:{// an optional order object
status: string// an optional order status field
currency: string// an optional order currency field
amount: number// an optional order amount field
subscription_id: string// an optional subscription id field
order_id: string// an optional order id field
}}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
importReact,{FC,useCallback}from'react'importReactDOMfrom'react-dom';importPayment,{InitConfig,SdkMessage,MessageType}from"@solidgate/react-sdk"exportconstMyPayment: FC<{merchantData: InitConfig['merchantData']styles?: InitConfig['styles']formParams?: InitConfig['formParams']width?: string}>=(props)=>{consthandleSuccess=useCallback((event: SdkMessage[MessageType.Success])=>{// here logic
},[])return(<Payment{...props}onSuccess={handleSuccess}/>)}
<template><Payment:merchant-data="merchantData"@success="success"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functionsuccess(event:SdkMessage[MessageType.Success]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(success)="onSuccess($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onSuccess(event: SdkMessage[MessageType.Success]):void{// here your logic
}}
Fail
This event indicates that the payment had been declined.
1
2
3
4
5
6
7
8
9
10
11
12
13
interfaceFailMessage{type:'fail'entity:'applebtn'|'googlebtn'|'paypal'|'form'|'resign'// one of listed values, indicates how payment was processed
code: string// an optional error code from https://docs.solidgate.com/payments/payments-insights/error-codes/
message: string// an optional error message field
order:{// an optional order object
status: string// an optional order status field
currency: string// an optional order currency field
amount: number// an optional order amount field
subscription_id: string// an optional subscription id field
order_id: string// an optional order id field
}}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
importReact,{FC,useCallback}from'react'importReactDOMfrom'react-dom';importPayment,{InitConfig,SdkMessage,MessageType}from"@solidgate/react-sdk"exportconstMyPayment: FC<{merchantData: InitConfig['merchantData']styles?: InitConfig['styles']formParams?: InitConfig['formParams']width?: string}>=(props)=>{consthandleFail=useCallback((event: SdkMessage[MessageType.Fail])=>{// here logic
},[])return(<Payment{...props}onFail={handleFail}/>)}
<template><Payment:merchant-data="merchantData"@fail="fail"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functionfail(event:SdkMessage[MessageType.Fail]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(fail)="onFail($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onFail(event: SdkMessage[MessageType.Fail]):void{// here your logic
}}
Verify
This event informs you that the payment is undergoing processing through the 3D flow.
1
2
3
interfaceVerifyMessage{type:'verify'}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
importReact,{FC,useCallback}from'react'importReactDOMfrom'react-dom';importPayment,{InitConfig,SdkMessage,MessageType}from"@solidgate/react-sdk"exportconstMyPayment: FC<{merchantData: InitConfig['merchantData']styles?: InitConfig['styles']formParams?: InitConfig['formParams']width?: string}>=(props)=>{consthandleVerify=useCallback((event: SdkMessage[MessageType.Verify])=>{// here logic
},[])return(<Payment{...props}onVerify={handleVerify}/>)}
<template><Payment:merchant-data="merchantData"@verify="verify"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functionverify(event:SdkMessage[MessageType.Verify]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(verify)="onVerify($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onVerify(event: SdkMessage[MessageType.Verify]):void{// here your logic
}}
Form redirect
This event notifies you that the iframe is performing a redirect, either to a status page or to a 3D verification page.
1
2
3
interfaceFormRedirectMessage{type:'formRedirect'}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
importReact,{FC,useCallback}from'react'importReactDOMfrom'react-dom';importPayment,{InitConfig,SdkMessage,MessageType}from"@solidgate/react-sdk"exportconstMyPayment: FC<{merchantData: InitConfig['merchantData']styles?: InitConfig['styles']formParams?: InitConfig['formParams']width?: string}>=(props)=>{consthandleRedirect=useCallback((event: SdkMessage[MessageType.Redirect])=>{// here logic
},[])return(<Payment{...props}onRedirect={handleRedirect}/>)}
<template><Payment:merchant-data="merchantData"@redirect="redirect"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functionredirect(event:SdkMessage[MessageType.Redirect]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(redirect)="onRedirect($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onRedirect(event: SdkMessage[MessageType.Redirect]):void{// here your logic
}}
Interaction
This event information on the current state of the Solidgate Payment Form and the user’s interaction with the controls:
interfaceInteractionMessage{type:'interaction'target:{// Indicates source of interaction
type:'button'|'input'// one of the listed
name:'submit'|'applePay'|'googlePay'|'paypal'|'cardNumber'|'cardCvv'|'cardExpiry'|'cardHolder'// It could be one of the listed; furthermore, Solidgate might extend the list.
interaction:'click'|'change'|'focus'|'blur'|'enterKeyDown'// one of the listed
}cardForm:{// Indicates current card form state
fields:{cardNumber:{isValid: booleanisTouched: boolean}cardCvv:{isValid: booleanisTouched: boolean}cardExpiry:{isValid: booleanisTouched: boolean}// The rest of the fields are optional, including, but not limited to: the `cardHolder` field
}isValid: booleanisTouched: boolean}}
interfaceInteractionMessage{type:'interaction'target:{// Indicates source of interaction
type:'button'|'input'// one of the listed
name:'submit'|'resignCvv'// It could be one of the listed; furthermore, Solidgate might extend the list.
interaction:'click'|'change'|'focus'|'blur'|'enterKeyDown'// one of the listed
}resignForm:{// Indicates current resign form state
fields:{cardNumber:{isValid: booleanisTouched: boolean}cardCvv:{isValid: booleanisTouched: boolean}cardExpiry:{isValid: booleanisTouched: boolean}// The rest of the fields are optional, including, but not limited to: the `cardHolder` field
}isValid: booleanisTouched: boolean}}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
importReact,{FC,useCallback}from'react'importReactDOMfrom'react-dom';importPayment,{InitConfig,SdkMessage,MessageType}from"@solidgate/react-sdk"exportconstMyPayment: FC<{merchantData: InitConfig['merchantData']styles?: InitConfig['styles']formParams?: InitConfig['formParams']width?: string}>=(props)=>{consthandleInteraction=useCallback((event: SdkMessage[MessageType.Interaction])=>{// here logic
},[])return(<Payment{...props}onInteraction={handleInteraction}/>)}
<template><Payment:merchant-data="merchantData"@interaction="interaction"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functioninteraction(event:SdkMessage[MessageType.Interaction]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(interaction)="onInteraction($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onInteraction(event: SdkMessage[MessageType.Interaction]):void{// here your logic
}}
Resize
This event is triggered when the Solidgate Payment Form is resized.
For example, it may resize after displaying a validation message.
<template><Payment:merchant-data="merchantData"@resize="resize"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functionresize(event:SdkMessage[MessageType.Resize]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(resize)="onResize($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onResize(event: SdkMessage[MessageType.Resize]):void{// here your logic
}}
Custom styles appended
This event indicates that your styles have been applied to the Solidgate Payment Form.
This event is helpful for cases when you want to draw your preloader over the Solidgate Payment Form (at this point, you may remove it).
<template><Payment:merchant-data="merchantData"@custom-styles-appended="customStylesAppended"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functioncustomStylesAppended(event:SdkMessage[MessageType.CustomStylesAppended]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(customStylesAppended)="onCustomStylesAppended($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onCustomStylesAppended(event: SdkMessage[MessageType.CustomStylesAppended]):void{// here your logic
}}
Error
This event indicates that something went wrong during form initialization.
<template><Payment:merchant-data="merchantData"@error="error"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functionerror(event:SdkMessage[MessageType.Error]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(error)="onError($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onError(event: SdkMessage[MessageType.Error]):void{// here your logic
}}
The following Error classes are provided:
ConnectionError - happens when the user experiences problems with their internet connection.
InitPaymentError - happens when an error with payment intent occurs during initialization.
The message will contain a strict object with code and an explanation of the particular error.
Additionally, it will include a details field, allowing you to create different handlers for different errors.
The following error codes are supported (details.code):
Guide
Cardholder authentication was not successful.
1.01
- Invalid credentials or signature generated.
Guide
“Invalid data” code message is used for validation errors, with the reason for the validation triggering specified in the body (object error) of the response.
2.01
- Invalid data in payment intent.
It could be a non-existing product ID or other properties, which will be described in a message.
Provides detailed description in details.message by pair key from payment intent with corresponding error message.
Guide
An unrecognised decline code was received during the transaction.
6.01
- Something went wrong on our back-end side, please contact support.
GatewayError - occurs when Solidgate cannot parse the response from its back end. Please contact support in case of such errors.
Card
This event is triggered when the customer enters their card number and provides information about the card brand when the card number is successfully validated.
1
2
3
4
5
6
7
8
interfaceCardMessage{type:'card'card:{brand: string// one of the card brands in upper case like 'VISA', 'MASTERCARD' or 'unknown'
bin:'111222'// string with the card bin (first 6 symbols)
cardType: string// one of the card types in upper case like 'CREDIT', 'DEBIT', 'PREPAID' or 'unknown'
}}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
importReact,{FC,useCallback}from'react'importReactDOMfrom'react-dom';importPayment,{InitConfig,SdkMessage,MessageType}from"@solidgate/react-sdk"exportconstMyPayment: FC<{merchantData: InitConfig['merchantData']styles?: InitConfig['styles']formParams?: InitConfig['formParams']width?: string}>=(props)=>{consthandleCard=useCallback((event: SdkMessage[MessageType.Card])=>{// here logic
},[])return(<Payment{...props}onCard={handleCard}/>)}
<template><Payment:merchant-data="merchantData"@card="card"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functioncard(event:SdkMessage[MessageType.Card]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(card)="onCard($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onCard(event: SdkMessage[MessageType.Card]):void{// here your logic
}}
Order status
This event indicates that the order status was changed while processing. However, the event may not show all changes before the final
Guide
Orders can also go through various other states, such as 3ds_verify, approved, declined, refunded, and so on.
order status
: approved or declined.
<template><Payment:merchant-data="merchantData"@order-status="orderStatus"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functionorderStatus(event:SdkMessage[MessageType.OrderStatus]):void{// here your logic
}</script>
import{Component}from'@angular/core';import{InitConfig,SdkMessage,MessageType}from"@solidgate/angular-sdk";@Component({selector:'app-root',template:`
<ngx-solid-payment
[merchantData]="merchantData"
(orderStatus)="onOrderStatus($event)"
></ngx-solid-payment>
`})exportclassAppComponent{merchantData: InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}onOrderStatus(event: SdkMessage[MessageType.OrderStatus]):void{// here your logic
}}
Payment details
This event informs of updates or changes to payment details, including price,
Guide
Streamline tax management for your international business operations with Solidgate.
taxes
, and other relevant information, enabling comprehensive tracking of user actions through the events generated.
This is important for providing end customers with transparent pricing information.
<template><Payment:merchant-data="merchantData"@payment-details="paymentDetails"/></template><scriptlang="ts"setup>import{defineAsyncComponent}from'vue'import{InitConfig,SdkMessage,MessageType}from'@solidgate/vue-sdk'constPayment=defineAsyncComponent(()=>import('@solidgate/vue-sdk'))constmerchantData:InitConfig['merchantData']={merchant:'<<--YOUR MERCHANT ID-->>',signature:'<<--YOUR SIGNATURE OF THE REQUEST-->>',paymentIntent:'<<--YOUR PAYMENT INTENT-->>'}functionpaymentDetails(event:SdkMessage[MessageType.PaymentDetails]):void{// Validate event structure and handle payment details here
}</script>