-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add status view for webpay mall deferred
- Loading branch information
1 parent
9877517
commit 0f507dd
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@php | ||
$navigation = ['state' => 'Consultar estado']; | ||
@endphp | ||
|
||
<x-layout active-link="Webpay Mall Diferido" :navigation="$navigation"> | ||
|
||
<h1 id="state">Webpay Mall Diferido- Consultar estado de transacción</h1> | ||
<p class="mb-32">Puedes solicitar el estado de una transacción hasta 7 días después de su realización. No hay límite | ||
de solicitudes de este tipo durante ese período. Sin embargo, una vez pasados los 7 días, ya no podrás revisar | ||
su estado. | ||
</p> | ||
|
||
<h2>Paso 1 - Petición:</h2> | ||
<p class="mb-32"> | ||
Para realizar la consulta, necesitas el token de la transacción de la cual deseas obtener el estado. Utiliza | ||
este token para realizar una llamada a WebpayPlus.Transaction. | ||
</p> | ||
|
||
<x-snippet> $resp = $mallTransaction->status($token);</x-snippet> | ||
|
||
|
||
<h2>Paso 2: Respuesta</h2> | ||
<p class="mb-32"> | ||
Transbank responderá con la siguiente información. Asegúrate de guardar esta respuesta, y la única validación | ||
necesaria es que el campo "response_code" sea igual a cero. | ||
</p> | ||
|
||
<x-snippet :content="$resp" /> | ||
|
||
</x-layout> |