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
      • Create Payment Instruction Request
      • Create Fx Instruction Request
      • Create Fx Payment Instruction Request
      • Create Unfunded Payment Instruction Request
      • Create Unfunded Fx Payment Instruction Request
    • Schemas
      • CreateFXInstructionRequest
      • CreateFxPaymentInstructionRequest
      • CreateInstructionRequestResponse
      • CreatePaymentInstructionRequest
      • CreateResellerFxPaymentInstructionRequest
      • CreateResellerPaymentInstructionRequest
      • GetInstructionRequestResponse
  • Instructions
    • v2025-12-01
      • Get Instruction By Reference
        GET
    • 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

Get Instruction By Reference

Testing Env
https://api.uat.sokin.com
Testing Env
https://api.uat.sokin.com
GET
/instructions/{instruction_reference}

Request

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

Header Params

Responses

🟢200OK
application/json
Successful Response
Body

🟠422Unprocessable Entity
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.uat.sokin.com/instructions/' \
--header 'x-api-version: 2025-12-01' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "external_reference": "I-Payment-a95469e5-869c-450b-a2c6-6ba8fae4a004",
    "version": 2,
    "created_at": "2025-12-02T01:31:45.187Z",
    "status": "Created",
    "instruction_type": "Payment",
    "corporate_currency_account": "CA-GBP-d30ebb2c-5f63-4d97-abd5-3ae238867c45-1",
    "quote_id": null,
    "amount": "329.99",
    "beneficiary_reference": "fafa4ff7-66b0-4d67-bb0d-fa9b98a3da76",
    "sender_reference": "Invoice 001",
    "payment_purpose": "Commercial",
    "source_currency": "GBP",
    "destination_currency": "GBP",
    "sokin_fx_fee": "0",
    "sokin_transaction_fee": "5",
    "reseller_transaction_fee": "0",
    "corporate_reference": "corp_18902284",
    "payment_reference": "01KLL52-K8889U"
}
Modified at 2025-12-02 14:05:10
Previous
GetInstructionRequestResponse
Next
GetInstructionResponse
Built with