I am trying to add star Infinity and use API call to create attribute (its much similar tool like airtable)
I am following their api documentation but it returns 404 error
I tried with bearer token and also by creating app
I am trying to add star Infinity and use API call to create attribute (its much similar tool like airtable)
I am following their api documentation but it returns 404 error
I tried with bearer token and also by creating app
You are including { }
around your auth key, which is incorrect.
Delete the curly brackets.
It should look like this:
Bearer TOKEN_GOES_HERE
For more information,
You can complete this brand new course/tutorial in the Make Academy on how to use external APIs — API calls with HTTP modules
samliew – request private consultation
Join the Make Fans Discord server to chat with other makers!
The next issue, that the next error message has pointed out:
You inserted an Absolute (full) URL into the URL field.
If you read the description below the URL field, it says
Enter a path relative … for example …
samliew – request private consultation
Join the Make Fans Discord server to chat with other makers!
Thank you, I think the previous issue solved but now it gives [422]: The name field is required. (and 1 more error)
I am using the same body details as provided in API documentation example
Why are you putting forward slashes before each double quote?
\"
Remove those slashes.
"
samliew – request private consultation
Join the unofficial Make Discord server to chat with us!
I know I’m being picky, but avoid posting even small parts of your tokens online.
It’s good practice to always check screenshots for tokens to prevent security issues, as the community is publicly accessible to anyone.
And don’t forget to change your token later.
Also, since you’re using the app’s universal module, the connection already has the authorization headers. You shouldn’t manually set the authorization header since it may conflict with the connection settings.