Plugins certificados para las plataformas más usadas
APIs y SDKs para integraciones a medida
1// Creá un checkout con Mobbex2constmobbex=require('mobbex');34mobbex.configurations.configure({apiKey,accessToken});56constcheckout=awaitmobbex.checkout.create({7total:12500,8currency:'ARS',9reference:'order_7821',10return_url:'https://tu-tienda.com/ok'11});
1// Creá un checkout con Mobbex2$response=$mobbex->post('https://api.mobbex.com/p/checkout',[3'total'=>12500,4'currency'=>'ARS',5'reference'=>'order_7821',6'return_url'=>'https://tu-tienda.com/ok',7'customer'=>[8'email'=>'cliente@example.com',9'name'=>'María Fernández'10],11]);
1# Creá un checkout con Mobbex2importrequests34response=requests.post(5'https://api.mobbex.com/p/checkout',6headers={'x-api-key':API_KEY,'x-access-token':TOKEN},7json={8'total':12500,9'currency':'ARS',10'reference':'order_7821',11'return_url':'https://tu-tienda.com/ok'12}13)
1// Creá un checkout con Mobbex2body,_:=json.Marshal(map[string]interface{}{3"total":12500,4"currency":"ARS",5"reference":"order_7821",6"return_url":"https://tu-tienda.com/ok",7})89req,_:=http.NewRequest("POST","https://api.mobbex.com/p/checkout",bytes.NewBuffer(body))10req.Header.Set("x-api-key",apiKey)11req.Header.Set("x-access-token",token)
1# Inicializá el checkout de Mobbex2curl-XPOSThttps://api.mobbex.com/p/checkout\3-H'x-api-key: TU_API_KEY'\4-H'x-access-token: TU_ACCESS_TOKEN'\5-H'Content-Type: application/json'\6-d'{7 "total": 12500,8 "currency": "ARS",9 "reference": "order_7821",10 "return_url": "https://tu-tienda.com/ok"11 }'
CÓMO DECIDIR
Plugin o SDK: ¿cuál te conviene?
Los dos caminos terminan en la misma plataforma de cobros. La diferencia está en cuánta fricción de código querés asumir.
Instalado
PLUGIN
Usá un plugin
Instalalo desde tu plataforma, cargá credenciales y listo.
+20 plataformas soportadas
Setup en minutos
Mantenido por Mobbex
constorder=awaitmobbex.create({
total:8500,
})
200 OK{ "id": "ckt_42", "url": "..." }
SDK / API
Integrá por API
Importá el SDK o llamá directo a los endpoints REST.
SDKs Node.js, PHP, .NET
REST API + Webhooks
Sandbox ilimitado
Documentación técnicaSDKs oficialesWebhooks
para implementar Mobbex de extremo a extremo