POST
/
beneficiaries
/
organizations
/
sessions
curl --request POST \
  --url https://api.paysway.dev/beneficiaries/organizations/sessions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "requestId": "<string>",
  "externalUserId": "<string>",
  "returnUrl": "<string>",
  "options": {
    "allowedRecipientTypes": [
      "INDIVIDUAL"
    ],
    "allowedCountries": [
      "<string>"
    ]
  }
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "url": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json

Response

201 - application/json

Management session created successfully

The response is of type object.