Get a withdrawal [DEPRECATED: Use transaction routes]

GET /api/v1/plans/{plan_uuid}/sub-accounts/{subAccount_uuid}/withdrawals/{uuid}

Path parameters

Responses

  • 200 application/json
    Hide response attributes Show response attributes object
GET /api/v1/plans/{plan_uuid}/sub-accounts/{subAccount_uuid}/withdrawals/{uuid}
curl \
 --request GET 'https://api.plannrcrm.com/api/v1/plans/plan_uuid/sub-accounts/subAccount_uuid/withdrawals/uuid' \
 --header "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
 --header "Content-Type: application/json" \
 --header "Accept: application/json"
Response examples (200)
{
  "uuid": "d89ac41d-fa01-472c-99a6-bc6d84dc627c",
  "value": {
    "amount": {
      "example": "4000",
      "description": "Money amount at their lowest denominator (for example: pennies)"
    },
    "currency": {
      "example": "GBP",
      "description": "Currency of the money"
    },
    "formatted": {
      "example": "£40.00",
      "description": "Money amount formatted with currency"
    }
  },
  "created_at": "2025-04-02T13:27:57+01:00",
  "updated_at": "2025-04-02T13:27:57+01:00",
  "withdrawn_at": "2025-04-02T13:27:57+01:00"
}