Sokin Embeded API
  1. Authentication
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
    • 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. Authentication

Get Token on behalf of corporate

Developing
Testing Env
https://uat-sokin.uk.auth0.com
Testing Env
https://uat-sokin.uk.auth0.com
POST
/oauth/token

Request

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://uat-sokin.uk.auth0.com/oauth/token' \
--header 'Content-Type: application/json' \
--data-raw '{
    "client_id": "string",
    "client_secret": "string",
    "audience": "string",
    "grant_type": "client_credentials",
    "on_behalf_of": "string"
}'
Response Response Example
{
    "access_token": "string",
    "expires_in": 0,
    "token_type": "string"
}
Modified at 2025-12-04 16:41:25
Previous
Get Token
Next
TokenResponse
Built with