# sib_payments.createpaymentrequest: Sendinblue Package for Payments operations that could not be mapped to a table. sib_payments.createpaymentrequest: Sendinblue Package for Payments operations that could not be mapped to a table. Create a new payment request for a Brevo contact. The request requires a reference (displayed on the payment page), a contact ID, and a cart with currency and amount in cents. You can optionally configure a custom success redirect URL and enable email notifications with reminders. Returns the payment request ID and its public payment URL. A `403` error is returned if Brevo Payments is not activated or the account is not validated.Parameters of Procedure The following parameters can be used to control the behaviour of the procedure `sib_payments.createpaymentrequest`. A value must be provided at all times for required parameters, but optional parameters in general do not need to have a value and the execution will default to a pre-defined behaviour. Values can be specified by position and by name. In both cases, all parameters not specified will be evaluated using their default values. Value specification by position is done by listing all values from the first to the last needed value. For example: a `begin package.procedure(value1, value2, value3); end` on a procedure with four parameters will use the default value for the fourth parameter and the specified values for the first three. Value specification by name is done by listing all values that require a value. For example with `begin package.procedure(name1 => value1, name3 => value3); end` on the same procedure will use the default values for the second and fourth parameters and the specified values for the first and third. | Name | Data Type | Required | Default Value | Documentation | |---|:---:|:---:|:---:|---| | `currency` | `string` | ☐ | | Currency code for the payment amount. | | `specificAmount` | `int64` | ☐ | | Payment amount, in cents. e.g. if you want to request €12.00, then the amount in cents is 1200. | | `configuration` | `string` | ☐ | | | | `contactId` | `int64` | ☑ | | Brevo ID of the contact requested to pay. | | `description` | `string` | ☐ | | Description of payment request. | | `channel` | `string` | ☐ | | Channel used to send the notifications. | | `text` | `string` | ☐ | | Use this field if you want to give more context to your contact about the payment request. | | `reference` | `string` | ☑ | | Reference of the payment request, it will appear on the payment page. |