Created
January 26, 2022 15:16
-
-
Save ericallam/da4de3a24f01e3853c6e453264ecc7dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"method": "POST", | |
"uri": "https://api.airtable.com/...", | |
"headers": { | |
"content-type": "application/json" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "object", | |
"properties": { | |
"method": { "type": "string" }, | |
"uri": { "type": "string", "format": "uri" }, | |
"headers": { | |
"type": "object", | |
"properties": { | |
"content-type": { "type": "string", "format": "mime-type" } | |
} | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment