List Offerings
List all the offerings that are linked to your account.
created_after
The Unix timestamp of the offering created before the first offering you want to retrieve.
created_before
The Unix timestamp of the offering created after the first offering you want to retrieve.
limit
The maximum number of objects to return. Range: 1-100.
50
starting_after
The maximum number of objects to return. Range: 1-100. The Unix timestamp of the offering created before the first offering you want to retrieve.
An array of objects where each object includes details on the offering.
/v1/partner/onboarding/pricing/offering
List Offerings with Limit of 2
curl -X get https://api.rapyd.net/v1/partner/onboarding/pricing/offering?limit=2 -H 'access_key: your-access-key-here' -H 'Content-Type: application/json' -H 'idempotency: your-idempotency-parameter-here' -H 'salt: your-random-string-here' -H 'signature: your-calculated-signature-here' -H 'timestamp: your-unix-timestamp-here'
{ "status": { "error_code": "", "status": "SUCCESS", "message": "Success", "response_code": "", "operation_id": "ed534df1-2324-4069-b460-6a9c7e0f2b7e" }, "data": [ { "id": "offering_7a4e05312b88f2c311cb7e7f5e152571", "name": "offering_payment2", "created_by": "John Doe", "created_at": 1749715162.639021, "updated_at": 1749715162.639021 }, { "id": "offering_23ba9a5cedf5bf5d8703082861aac8f5", "name": "offering_payment2_1", "created_by": "Jane Doe", "created_at": 1749715222.219366, "updated_at": 1749715222.219366 } ] }