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
However, when I try to create it with the following terraform, I get an error:
resource "airbyte_source_notion""notion" {
configuration = {
credentials = {
access_token = {
token = data.google_secret_manager_secret_version.notion_api_key.secret_data
}
}
start_date = "2024-01-01T00:00:00.000Z"
}
name = "${local.shared}-notion-source"
workspace_id = local.workspace_id
}
the error:
{"status":422,"type":"https://reference.airbyte.com/reference/errors#unprocessable-entity","title":"unprocessable-entity","detail":"The│ body of the request was not│ understood","documentationUrl":null,"data":{"message":"json schema│ validation failed when comparing the data to the json schema. \nErrors:│ $.start_date: does not match the regex pattern│ ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}.[0-9]{3}Z$ "}}
As you can see my start date matches the regex, so why does't it accept it?
Contribute
Yes, I want to contribute
The text was updated successfully, but these errors were encountered:
marcosmarxm
changed the title
Notion start date format problem
[source-notion] start_date format problem
Oct 23, 2024
The regex and the value you're using are correct. I tried running the call directly from the API and I was able to create a Notion source without problem. If you remove the start_date param are you able to create the connector?
Connector Name
source-notion
Connector Version
3.0.6
What step the error happened?
Configuring a new connector
Relevant information
The docs say the start date should include seconds https://docs.airbyte.com/integrations/sources/notion
Relevant log output
Contribute
The text was updated successfully, but these errors were encountered: