GET
/
legal-forms
curl --request GET \
  --url https://api.live.paisr.tech/{version}/legal-forms \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "legal_forms": [
      {
        "description": "<string>",
        "slug": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successfully retrieved the list of supported legal forms.
success
boolean
Example:

true

data
object