Skip to content

Commit

Permalink
fix(integration): teamtailor integration sync template (NangoHQ#1816)
Browse files Browse the repository at this point in the history
## Describe your changes
Reduce the page size for the example sync template.
  • Loading branch information
hassan254-prog authored Mar 7, 2024
1 parent 9552591 commit 8308b10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration-templates/teamtailor/teamtailor-candidates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default async function fetchData(nango: NangoSync): Promise<void> {
link_path_in_response_body: 'links.next',
limit_name_in_request: 'page[size]',
response_path: 'data',
limit: 100
limit: 30
}
};
for await (const candidate of nango.paginate({ ...config, endpoint })) {
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/providers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1847,7 +1847,7 @@ teamtailor:
- ats
auth_mode: API_KEY
proxy:
base_url: https://{connectionConfig.extension}.teamtailor.com
base_url: https://${connectionConfig.extension}.teamtailor.com
retry:
after: 'X-Rate-Limit-Reset'
headers:
Expand Down

0 comments on commit 8308b10

Please sign in to comment.