Sokin Embeded API
  1. v2025-12-01
Sokin Embeded API
  • Getting Started
    • Sokin Definitions
    • Guides
      • Authentication
      • Receiving Payments
      • FX Payments
      • Payments
      • Unfunded Payments
      • Unfunded FX Payments
  • Authentication
    • Get Token
      POST
    • Get Token on behalf of corporate
      POST
    • Schemas
      • TokenResponse
  • Corporate Currency Accounts
    • v2025-12-01
      • Get Corporate Currency Accounts
      • Get Corporate Currency Account By Reference
    • Schemas
      • GetCCAByReferenceResponse
      • GetCCAsResponse
      • GetCCAsResponseItem
      • GetCCAByReferenceResponsePayInDetail
      • PaginationInfo
  • Beneficiaries
    • v2025-12-01
      • Get Beneficiary Fields
      • Create External Beneficiary
      • Get Beneficiary List
      • Get Beneficiary Details
      • Delete Beneficiary
    • Schemas
      • BeneficiaryDetailsResponse
      • CreateExternalBeneficiaryRequest
      • CreateExternalBeneficiaryResponse
      • GetBeneficiaryFieldsResponse
      • BeneficiaryListResponse
      • BeneficiaryListResponse
  • Instruction Requests
    • v2025-12-01
      • Get Instruction Request By Reference
        GET
      • Create Payment Instruction Request
        POST
      • Create Fx Instruction Request
        POST
      • Create Fx Payment Instruction Request
        POST
      • Create Unfunded Payment Instruction Request
        POST
      • Create Unfunded Fx Payment Instruction Request
        POST
    • Schemas
      • CreateFXInstructionRequest
      • CreateFxPaymentInstructionRequest
      • CreateInstructionRequestResponse
      • CreatePaymentInstructionRequest
      • CreateResellerFxPaymentInstructionRequest
      • CreateResellerPaymentInstructionRequest
      • GetInstructionRequestResponse
  • Instructions
    • v2025-12-01
      • Get Instruction By Reference
    • Schemas
      • GetInstructionResponse
  • Foreign Exchange
    • v2025-12-01
      • Get Fx Rate
    • Schemas
      • FxRateRequest
  • Webhooks
    • Webhooks
    • Schemas
      • InstructionCreated
      • InstructionReqeustRejected
      • InstructionProcessedWebhook
      • InstructionRejectedWebhook
      • OnboardingRequestApproved
      • OnboardingRequestRejected
      • CorporateActivated
      • CorporateDeactivated
      • CorporateCurrencyAccountFundingReceived
  1. v2025-12-01

Create Unfunded Fx Payment Instruction Request

Testing Env
https://api.uat.sokin.com
Testing Env
https://api.uat.sokin.com
POST
/instruction-requests/unfunded-fx-payment

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Header Params

Body Params application/jsonRequired

Examples

Responses

🟢202Accepted
application/json
Successful Response
Body

🟠422Unprocessable Entity
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.uat.sokin.com/instruction-requests/unfunded-fx-payment' \
--header 'x-api-version: 2025-12-01' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "corporate_currency_account": "CCA-Corp-18970222-HKD-1",
    "idempotency_key": "ab0c9113-bce5-48e5-b3ff-2b82e5d507b9",
    "reseller_fee": "0.00",
    "beneficiary_reference": "931efad0-9937-45bd-b40f-85594feb9f2f",
    "sender_reference": "Payment for fees",
    "purpose_of_payment": "Commercial",
    "quote_id": "ccd55522-7a4e-4d29-859b-66b7b5fddd48"
}'
Response Response Example
202 - Example 1
{
    "external_reference": "IR-unfundedfxpayment-78813ec4-587b-4c70-939d-14dcc7f088ac"
}
Modified at 2025-12-05 12:14:06
Previous
Create Unfunded Payment Instruction Request
Next
CreateFXInstructionRequest
Built with