UNPKG

@monei-js/node-sdk

Version:

Node.js SDK for MONEI Digital Payment Gateway

61 lines (60 loc) 3.19 kB
/** * MONEI API v1 * The MONEI API is organized around REST principles. Our API is designed to be intuitive and developer-friendly. ### Base URL All API requests should be made to: ``` https://api.monei.com/v1 ``` ### Environment MONEI provides two environments: - **Test Environment**: For development and testing without processing real payments - **Live Environment**: For processing real transactions in production ### Client Libraries We provide official SDKs to simplify integration: - [PHP SDK](https://github.com/MONEI/monei-php-sdk) - [Python SDK](https://github.com/MONEI/monei-python-sdk) - [Node.js SDK](https://github.com/MONEI/monei-node-sdk) - [Postman Collection](https://postman.monei.com/) Our SDKs handle authentication, error handling, and request formatting automatically. You can download the OpenAPI specification from the https://js.monei.com/api/v1/openapi.json and generate your own client library using the [OpenAPI Generator](https://openapi-generator.tech/). ### Important Requirements - All API requests must be made over HTTPS - If you are not using our official SDKs, you **must provide a valid `User-Agent` header** with each request - Requests without proper authentication will return a `401 Unauthorized` error ### Error Handling The API returns consistent error codes and messages to help you troubleshoot issues. Each response includes a `statusCode` attribute indicating the outcome of your request. ### Rate Limits The API implements rate limiting to ensure stability. If you exceed the limits, requests will return a `429 Too Many Requests` status code. * * The version of the OpenAPI document: 1.8.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * An Apple Pay certificate for iOS app integration. * @export * @interface ApplePayCertificate */ export interface ApplePayCertificate { /** * Unique identifier of the certificate. * @type {string} * @memberof ApplePayCertificate */ id: string; /** * The account ID this certificate belongs to. * @type {string} * @memberof ApplePayCertificate */ accountId: string; /** * The Certificate Signing Request in base64 format. Only present before activation. Use this to create a certificate in Apple Developer Portal. * @type {string} * @memberof ApplePayCertificate */ csr?: string; /** * The certificate body in base64 format. Only present after activation. * @type {string} * @memberof ApplePayCertificate */ cert?: string; /** * Whether the certificate is active for payment processing. * @type {boolean} * @memberof ApplePayCertificate */ active: boolean; /** * The certificate expiration date in ISO 8601 format. Only present after activation. * @type {string} * @memberof ApplePayCertificate */ expireAt?: string; /** * The certificate creation date in ISO 8601 format. * @type {string} * @memberof ApplePayCertificate */ createdAt: string; }