Problems creating field

I have a problem creating new fields in databases. I’ve tried from python and postman and get this error:

{
“error”: “ERROR_NO_PERMISSION_TO_TABLE”,
“detail”: “The token does not have permissions to the table.”
}

what am I missing? Its nothing wrong with the token or permissions. It works creating rows and accessing other data. I’ve tried with a new key and other databases with same error.

Im trying to create fields with this link: https://api.baserow.io/api/database/fields/table/<table_id>/

using just a test-body:

{
“name”: “test”,
“type”: “text”
}

Hi,

I tested this and got the same issue. Despite the fact that the documentation mentions that both a JWT or Database token works, it only seems to work with a JWT token.

You can run the token_auth endpoint and add it to the header in the following format:
Auhtorization: JWT [add your token]

Regards
Frederik