-
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: create status page for onclick deferred
- Loading branch information
1 parent
96d685f
commit 83fb54f
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="Oneclick Mall Diferido" :navigation="$navigation"> | ||
|
||
<h1 id="state">Oneclick 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, necesitarás el "buyOrder" de la transacción de interés. Utiliza este identificador | ||
para efectuar una llamada a Oneclick.MallTransaction. | ||
</p> | ||
|
||
<x-snippet> $resp = $mallTransaction->status($buyOrder);</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> |