paystack-integration

Paystack Integration API — manage integration-level settings like payment session timeouts. Use this skill whenever configuring Paystack integration settings, adjusting payment session timeout durations, or building admin panels that control payment session behavior. Also use when you see references to /integration/payment_session_timeout endpoint.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "paystack-integration" with this command: npx skills add rexedge/paystack/rexedge-paystack-paystack-integration

Paystack Integration

The Integration API lets you manage settings on your Paystack integration.

Depends on: paystack-setup for the paystackRequest helper.

Endpoints

MethodEndpointDescription
GET/integration/payment_session_timeoutGet current timeout
PUT/integration/payment_session_timeoutUpdate timeout

Fetch Payment Session Timeout

const timeout = await paystackRequest<{
  payment_session_timeout: number;
}>("/integration/payment_session_timeout");
// timeout.data.payment_session_timeout → 30 (seconds)

Update Payment Session Timeout

Set how long (in seconds) before a payment session expires. Set to 0 to disable.

await paystackRequest("/integration/payment_session_timeout", {
  method: "PUT",
  body: JSON.stringify({ timeout: 30 }),
});

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

paystack-charges

No summary provided by upstream source.

Repository SourceNeeds Review
General

paystack-webhooks

No summary provided by upstream source.

Repository SourceNeeds Review
General

paystack-transfers

No summary provided by upstream source.

Repository SourceNeeds Review