You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug right now where metadata fields on POST requests aren't getting transformed into optional parameters on the request within the collection. Right now we have a workaround documented in the README.md
The text was updated successfully, but these errors were encountered:
W/in the schema for the request we have the property with as 'anyOf' like this:
"metadata": {
"anyOf": [
{
"additionalProperties": {
"type": "string"
},
"type": "object"
},
{
"enum": [
""
],
"type": "string"
}
],
"description": "Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`."
},
There is a bug right now where metadata fields on POST requests aren't getting transformed into optional parameters on the request within the collection. Right now we have a workaround documented in the README.md
The text was updated successfully, but these errors were encountered: