EaserixDocs
DevelopersAPI referenceLinksBio

Create a bio page

Claims a handle (3–30 lowercase letters/numbers/-/_, reserved names rejected). The public page renders at esrx.ly/@handle once published.

View as Markdown
POST
/v1/bio
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/bio" \  -H "Content-Type: application/json" \  -d '{    "handle": "string"  }'
{  "page": {    "id": "string",    "handle": "string",    "publicUrl": "string",    "title": "string",    "bio": "string",    "published": true,    "views": 0,    "items": [      {        "id": "string",        "label": "string",        "url": "string"      }    ],    "created": "2019-08-24T14:15:22Z",    "updated": "2019-08-24T14:15:22Z"  }}