I am trying to create a table in an existing base using below endpoint but getting a not found error -
Unable to create table in exisiting base
'type': 'NOT_FOUND'
===============================================
table_name = "Members"
description = "Members"
fields = [
{
"name": "UserName",
"type": "singleLineText"
},
{
"name": "Name",
"type": "singleLineText"
}
]
================================
data = {
"name": table_name,
"description": description,
"fields": fields
}
headers = {
"Authorization": f"Bearer {api_key}",
"Content-Type": "application/json"
}
response = requests.post(url, headers=headers, data=json.dumps(data))
Login to the community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
