> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rhinestone.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Post offrampnoahsessions



## OpenAPI

````yaml https://raw.githubusercontent.com/rhinestonewtf/openapi/refs/heads/main/deposit-service.json post /offramp/noah/sessions
openapi: 3.1.0
info:
  title: Deposit Service API
  version: 1.0.0
  description: >-
    Cross-chain deposit processing service with automatic token bridging and gas
    sponsorship
servers:
  - url: https://v1.orchestrator.rhinestone.dev/deposit-processor
security: []
paths:
  /offramp/noah/sessions:
    post:
      tags:
        - offramp
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OfframpSessionRequest'
      responses:
        '200':
          description: Interaction session, not a payment
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RampSession'
        '400':
          description: Invalid customer intent
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '401':
          description: Invalid or expired browser bearer
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '403':
          description: Customer scope mismatch
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '404':
          description: Resource not found in customer scope
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
        '503':
          description: Offramp is not configured
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                required:
                  - error
      security:
        - complianceSessionBearer: []
components:
  schemas:
    OfframpSessionRequest:
      type: object
      properties:
        country:
          type: string
          pattern: ^[A-Z]{2}$
        currency:
          type: string
          enum:
            - EUR
            - USD
          description: Supported ISO 4217 fiat currency
        paymentMethod:
          type: string
          enum:
            - bank_transfer
        optionId:
          type: string
          format: uuid
          description: Opaque Rhinestone selection scoped to customer and intent
        purpose:
          type: string
          enum:
            - beneficiary_collection
      required:
        - country
        - currency
        - paymentMethod
        - purpose
      additionalProperties: false
    RampSession:
      type: object
      properties:
        id:
          type: string
          format: uuid
        status:
          type: string
          enum:
            - pending
            - completed
            - expired
            - failed
          description: Interaction status only; completion never proves settlement
        expiresAt:
          type: string
          format: date-time
        nextAction:
          $ref: '#/components/schemas/HostedNextAction'
      required:
        - id
        - status
        - expiresAt
      additionalProperties: false
    HostedNextAction:
      type: object
      properties:
        type:
          type: string
          enum:
            - hosted
        url:
          type: string
          format: uri
        presentation:
          type: string
          enum:
            - iframe
      required:
        - type
        - url
        - presentation
      additionalProperties: false
  securitySchemes:
    complianceSessionBearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Required 15-minute customer-scoped browser session from POST
        /compliance/sessions. Application keys are not accepted.

````