diff --git a/README.md b/README.md index d12e8a4..bb0f644 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,64 @@ stub is a defect even when a human following it lands somewhere fine. --- +## 🧭 Column alignment + +Rot was not this dataset's worst defect. `utils/verify_and_clean_csv.py` used to +**drop** a URL it judged broken rather than blanking it: + +```python +for url in urls: + if is_broken_url(url): + print(f"URL for {api_name} is invalid: {url}") + else: + cleaned_row.append(url) # broken URLs simply vanish +``` + +Dropping shortens the row, so every later value slides one column left and gets +filed under the wrong heading. `Microsoft Graph People API` ended up serving its +privacy statement as its documentation URL. Those rows were not stale — they were +**mislabelled**, which is worse: a consumer gets a confident wrong answer with +nothing to indicate a problem. + +It compounded, too, because `is_broken_url` returned `True` on *any* request +exception with a five-second timeout. A slow host, a TLS hiccup or a 403 from a +bot-detecting CDN permanently deleted a good URL — and shifted everything after it. + +Both bugs are fixed: broken URLs are blanked in place, rows are padded to the full +width, and only a confirmed `404`/`410` counts as broken. + +### Repairing what was already damaged + +```bash +npm run realign # dry run — report what would move +npm run realign:apply # write the repaired CSV +npm run verify-alignment # prove no shifted rows remain +``` + +Dropping preserves order, so the surviving URLs are still in their original +relative sequence, just compressed leftward. Repair is therefore an +**order-preserving assignment** of the observed URLs back onto the column slots, +solved exactly with dynamic programming and scored on what each URL looks like. +A URL that contradicts every column still free is left blank and recorded in +`datasets/realignment.json` rather than filed somewhere wrong — the entire point +being that a mislabelled URL is worse than a missing one. + +The first pass moved **1,089 URLs across 369 rows**. + +### On trusting the verification + +`verify-alignment` runs a **negative control before it reports anything**: it +deliberately re-breaks a copy of the data the way the old cleaner did and requires +the detector to catch it. A detector that always returns zero also reports zero, +so a clean result only means something once the control has fired. + +``` +negative control (data deliberately re-shifted): 147 rows detected +api-docs-urls.csv: 0 rows detected +``` + +--- + ## 🔌 MCP server The index is most useful to a coding agent, so it is exposed over the @@ -339,10 +397,9 @@ This repository is licensed under the [MIT License](LICENSE). ### 📌 Known Issues: - Limited API support. - Some features may not work as expected. -- **Most rows are missing columns.** Fields are omitted rather than blanked, so the - remaining values shift left and land under the wrong heading. `npm run check-links` - reports the scale of this under `alignment` in `datasets/link-health.json`; repairing - it is the highest-value contribution available right now. +- ~~Most rows are missing columns, so values shift left and land under the wrong + heading.~~ **Fixed** — the cause was `utils/verify_and_clean_csv.py` dropping + broken URLs instead of blanking them; see [Column alignment](#-column-alignment). Check the [Open Issues](https://github.com/in-c0/updapi/issues) for more details. diff --git a/api-docs-urls.csv b/api-docs-urls.csv index c5880b4..0fac692 100644 --- a/api-docs-urls.csv +++ b/api-docs-urls.csv @@ -1,563 +1,563 @@ API_Name,Official_Documentation_URL,Privacy Policy,Terms of Service,Rate Limiting Policy,Release Notes,Security Policy,Developer Community/Forum OpenAI API,https://platform.openai.com/,https://openai.com/policies/privacy-policy/,https://openai.com/policies/terms-of-use/,https://developers.openai.com/api/docs/guides/rate-limits,https://developers.openai.com/api/docs/gpts/release-notes,https://openai.com/security-and-privacy/,https://community.openai.com/ AWS Elastic Beanstalk API,https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/AWSHowTo.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/general/latest/gr/aws_service_limits.html,https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/Welcome.html#release-notes,https://aws.amazon.com/security/,https://repost.aws/ -Google My Business API,https://developers.google.com/my-business?hl=hi,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-my-business-api,, -Microsoft Graph People API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=IpL2mZjCZlMR4t9f9iIyMIOMYkuHHD63glFTl_lmLbt5Yu4kJB6N1H9OE-G_B9x7q_sHU1gN5YOFXibmUROk-rUvhmVosfSMfANDvo1YScQhWoCZjcPSRiwgfg4Z_qy0-nvIBE_31X7cITR8B6bPpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPeople,,, -Slack Interactivity API,https://docs.slack.dev/interactivity/,https://docs.slack.dev/interactivity/handling-user-interaction/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox File Request API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Sync API,https://www.twilio.com/docs/sync,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Google My Business API,https://developers.google.com/my-business?hl=hi,https://policies.google.com/privacy,https://developers.google.com/terms,,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-my-business-api +Microsoft Graph People API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=IpL2mZjCZlMR4t9f9iIyMIOMYkuHHD63glFTl_lmLbt5Yu4kJB6N1H9OE-G_B9x7q_sHU1gN5YOFXibmUROk-rUvhmVosfSMfANDvo1YScQhWoCZjcPSRiwgfg4Z_qy0-nvIBE_31X7cITR8B6bPpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPeople +Slack Interactivity API,https://docs.slack.dev/interactivity/,https://docs.slack.dev/interactivity/handling-user-interaction/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox File Request API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Sync API,https://www.twilio.com/docs/sync,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Engagements API,https://developers.hubspot.com/docs/api-reference/latest/overview,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Support API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Support API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Balance API,https://docs.stripe.com/api/balance,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -YouTube Thumbnails API,https://developers.google.com/youtube/v3/docs/thumbnails,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +YouTube Thumbnails API,https://developers.google.com/youtube/v3/docs/thumbnails?hl=ar,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api Amazon Polly API,https://docs.aws.amazon.com/polly/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/polly/latest/dg/limits.html,https://docs.aws.amazon.com/polly/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ -Google Places API,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api,,, -Microsoft Azure Storage API,https://learn.microsoft.com/en-us/azure/storage/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/azure/storage/common/scalability-targets-standard-account,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=U_P5gT2XW39BQ6O8XZzh7kJsBEbfzCmJZfbwi_CoWS0Eo5sTduR4DvTqviM7Lw3up5kCZ2-v4-lacz7IpnHXJJq-37C7Rv_jfetZYADA-7jjYY9vxUvCjn40y_qnW1hbx2rx32K3-FLnf_E-Y7belEzS-RzpzaC-Hau--s3PDiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureStorage,, -Slack App Directory API,https://api.slack.com/apps,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox API Explorer,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Verify API,https://www.twilio.com/docs/verify,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Google Places API,,https://policies.google.com/privacy,https://developers.google.com/terms,,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api +Microsoft Azure Storage API,https://learn.microsoft.com/en-us/azure/storage/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/azure/storage/common/scalability-targets-standard-account,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=U_P5gT2XW39BQ6O8XZzh7kJsBEbfzCmJZfbwi_CoWS0Eo5sTduR4DvTqviM7Lw3up5kCZ2-v4-lacz7IpnHXJJq-37C7Rv_jfetZYADA-7jjYY9vxUvCjn40y_qnW1hbx2rx32K3-FLnf_E-Y7belEzS-RzpzaC-Hau--s3PDiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureStorage +Slack App Directory API,https://api.slack.com/apps,,,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox API Explorer,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Verify API,https://www.twilio.com/docs/verify,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Workflow API,https://developers.hubspot.com/docs/api-reference/legacy/automation/workflows/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Guide API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Guide API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Connect API,https://docs.stripe.com/connect,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Comments API,https://developers.google.com/youtube/v3/docs/comments?hl=pt-br,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api AWS IoT Greengrass API,https://docs.aws.amazon.com/greengrass/v2/developerguide/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/general/latest/gr/iot-core.html,https://docs.aws.amazon.com/greengrass/v2/developerguide/,https://aws.amazon.com/security/,https://repost.aws/ -Google Ads API,https://developers.google.com/google-ads/api?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/google-ads/api/docs/release-notes?hl=fr,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-ads-api, -Microsoft Graph Notifications API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=qJAMWB0_U9_HCZHHMmsduGW-UiwrLfnRK8P7m62pQwsLt-rkBQ0KhXUjlcnC6m0USqTeYUODb0wIQqxXZeck9wZH8fhF9UOWMeJe8xIRRpc3ip-o73oIGU1CLYzEu5SsRfXmrQk75omASpfQpbgyQLIp2wabj8AtPDIa4RBKt-Q&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FNotifications,,, -Slack Usergroups API,https://docs.slack.dev/reference/methods/usergroups.create/,https://docs.slack.dev/reference/methods/usergroups.create/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox API v1,https://www.dropbox.com/developers/documentation/http/overview,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en, -Twilio Messaging API,https://www.twilio.com/docs/messaging,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Google Ads API,https://developers.google.com/google-ads/api?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,,https://developers.google.com/google-ads/api/docs/release-notes?hl=fr,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-ads-api +Microsoft Graph Notifications API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=qJAMWB0_U9_HCZHHMmsduGW-UiwrLfnRK8P7m62pQwsLt-rkBQ0KhXUjlcnC6m0USqTeYUODb0wIQqxXZeck9wZH8fhF9UOWMeJe8xIRRpc3ip-o73oIGU1CLYzEu5SsRfXmrQk75omASpfQpbgyQLIp2wabj8AtPDIa4RBKt-Q&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FNotifications +Slack Usergroups API,https://docs.slack.dev/reference/methods/usergroups.create/,https://docs.slack.dev/reference/methods/usergroups.create/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox API v1,https://www.dropbox.com/developers/documentation/http/overview,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Messaging API,https://www.twilio.com/docs/messaging,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Emails API,https://developers.hubspot.com/docs/api/marketing/emails,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk SLA API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk SLA API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Payouts API,https://docs.stripe.com/api/payouts,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -YouTube Captions API,https://developers.google.com/youtube/v3/docs/captions,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -WhatsApp Business API,https://developers.facebook.com/docs/whatsapp,https://www.whatsapp.com/legal/business-terms,https://developers.facebook.com/docs/whatsapp/changelog,https://www.whatsapp.com/security,https://developers.facebook.com/community,, -Uber API,https://www.uber.com/global/zh/privacy-notice-riders-order-recipients/,https://www.uber.com/au/en/legal/general-terms-of-use/,,,,, -Dropbox Business API,https://www.dropbox.com/developers/documentation/http/overview,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en, -Heroku Platform API,https://devcenter.heroku.com/articles/platform-api-reference,https://www.salesforce.com/company/legal/privacy/?bc=HL,https://devcenter.heroku.com/articles/platform-api-reference#rate-limits,https://devcenter.heroku.com/changelog,https://www.heroku.com/policy/security,, -Adobe Analytics API,https://adobedocs.github.io/analytics-2.0-apis/,https://adobedocs.github.io/analytics-2.0-apis/#rate-limiting,,,,, +YouTube Captions API,https://developers.google.com/youtube/v3/docs/captions?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +WhatsApp Business API,https://developers.facebook.com/docs/whatsapp,,https://www.whatsapp.com/legal/business-terms,,https://developers.facebook.com/docs/whatsapp/changelog,https://www.whatsapp.com/security,https://developers.facebook.com/community +Uber API,,https://www.uber.com/global/zh/privacy-notice-riders-order-recipients/,https://www.uber.com/au/en/legal/general-terms-of-use/,,,, +Dropbox Business API,https://www.dropbox.com/developers/documentation/http/overview,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Heroku Platform API,https://devcenter.heroku.com/articles/platform-api-reference,https://www.salesforce.com/company/legal/privacy/?bc=HL,,https://devcenter.heroku.com/articles/platform-api-reference#rate-limits,https://devcenter.heroku.com/changelog,https://www.heroku.com/policy/security, +Adobe Analytics API,https://adobedocs.github.io/analytics-2.0-apis/,,,https://adobedocs.github.io/analytics-2.0-apis/#rate-limiting,,, QuickBooks Online API,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/overview,https://www.intuit.com/privacy/,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/terms-of-service,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/rate-limits,https://developer.intuit.com/app/developer/qbo/docs/api/accounting/release-notes,, LinkedIn Marketing API,https://learn.microsoft.com/en-us/linkedin/marketing/?view=li-lms-2026-08,https://www.linkedin.com/legal/privacy-policy,https://www.linkedin.com/legal/user-agreement,https://learn.microsoft.com/en-us/linkedin/shared/api-guide/concepts/rate-limits,https://www.linkedin.com/help/linkedin/answer/a403269/,, -Google Drive API,https://developers.google.com/workspace/drive?hl=th,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/drive/api/guides/handle-errors?hl=he,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-drive-api, +Google Drive API,https://developers.google.com/workspace/drive?hl=th,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/drive/api/guides/handle-errors?hl=he,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-drive-api SendGrid API,https://www.twilio.com/docs/sendgrid,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/docs/sendgrid/for-developers,, -Box Content API,https://developer.box.com/,https://www.box.com/legal/privacypolicy,https://www.box.com/legal/termsofservice,https://developer.box.com/changelog/,https://www.box.com/security-compliance,https://community.box.com/, +Box Content API,https://developer.box.com/,https://www.box.com/legal/privacypolicy,https://www.box.com/legal/termsofservice,,https://developer.box.com/changelog/,https://www.box.com/security-compliance,https://community.box.com/ Yelp Fusion API,https://www.yelp.com/developers,,,,,, Eventbrite API,https://www.eventbrite.com/platform/docs,https://www.eventbrite.com/help/en-us/articles/460838/eventbrite-privacy-policy/,https://www.eventbrite.com/help/en-us/articles/251210/eventbrite-terms-of-service/,https://www.eventbrite.com/platform/docs/rate-limits,https://www.eventbrite.com/platform/docs/changelog,https://www.eventbrite.com.au/security/, -Box API,https://developer.box.com,https://www.box.com/legal/privacypolicy,https://www.box.com/legal/termsofservice,https://developer.box.com/changelog/,https://www.box.com/security-compliance,https://community.box.com/, -Firebase API,https://firebase.google.com/docs,https://policies.google.com/privacy,https://firebase.google.com/terms,https://firebase.google.com/support?hl=ko,https://firebase.google.com/support/privacy,https://firebase.google.com/community, +Box API,https://developer.box.com,https://www.box.com/legal/privacypolicy,https://www.box.com/legal/termsofservice,,https://developer.box.com/changelog/,https://www.box.com/security-compliance,https://community.box.com/ +Firebase API,https://firebase.google.com/docs?hl=ja,https://policies.google.com/privacy,https://firebase.google.com/terms,https://firebase.google.com/support?hl=ko,,,https://firebase.google.com/community Pinterest Ads API,https://developers.pinterest.com/docs/overview/welcome/,https://policy.pinterest.com/en/privacy-policy,https://developers.pinterest.com/docs/overview/welcome/,https://developers.pinterest.com/docs/overview/welcome/,https://developers.pinterest.com/,, Zillow API,https://www.zillow.com/howto/api/Overview.htm,https://www.zillow.com/z/privacy.htm,https://www.zillow.com/howto/api/APIOverview.htm#Terms,https://www.zillow.com/howto/api/APIOverview.htm#Usage,https://www.zillow.com/howto/api/Changelog.htm,https://www.zillow.com/security.htm,https://www.zillow.com/howto/api/DiscussionForum.htm OpenAI API,https://developers.openai.com/api/docs,https://openai.com/policies/privacy-policy/,https://openai.com/policies/terms-of-use/,https://developers.openai.com/api/docs/guides/rate-limits,https://platform.openai.com/docs/release-notes,https://openai.com/security-and-privacy/,https://community.openai.com/ AWS CodeDeploy API,https://docs.aws.amazon.com/codedeploy/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/codedeploy/latest/userguide/limits.html,https://docs.aws.amazon.com/codedeploy/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ -Google Calendar API,https://developers.google.com/workspace/calendar,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/calendar/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/calendar-api, -Microsoft Graph OneNote API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote,, -Slack Files API,https://docs.slack.dev/reference/methods/files.list/,https://docs.slack.dev/reference/methods/files.list/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox API v2,https://www.dropbox.com/developers/documentation/http/documentation,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en, -Twilio Media Streams API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, +Google Calendar API,https://developers.google.com/workspace/calendar,https://policies.google.com/privacy,https://developers.google.com/terms,,https://developers.google.com/workspace/calendar/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/calendar-api +Microsoft Graph OneNote API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote +Slack Files API,https://docs.slack.dev/reference/methods/files.list/,https://docs.slack.dev/reference/methods/files.list/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox API v2,https://www.dropbox.com/developers/documentation/http/documentation,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Media Streams API,,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Companies API,https://developers.hubspot.com/docs/api/companies,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Apps API,https://developer.zendesk.com/documentation/apps/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,, +Zendesk Apps API,https://developer.zendesk.com/documentation/apps/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Terminal API,https://docs.stripe.com/api/terminal/connection_tokens,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ AWS Lambda API,https://docs.aws.amazon.com/lambda/latest/dg/welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/lambda/latest/dg/gettingstarted-limits.html,https://docs.aws.amazon.com/lambda/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ Google Cloud Storage API,https://docs.cloud.google.com/storage/docs?hl=id,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/storage/quotas,https://docs.cloud.google.com/storage/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-storage-api -Microsoft Planner API,https://learn.microsoft.com/en-us/graph/api/resources/planner-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/Planner,, -Dropbox Transfer API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Programmable Video API,https://www.twilio.com/docs/video,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Microsoft Planner API,https://learn.microsoft.com/en-us/graph/api/resources/planner-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/Planner +Dropbox Transfer API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Programmable Video API,https://www.twilio.com/docs/video,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Marketing API,https://developers.hubspot.com/docs/api/marketing,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Search API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Search API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Coupons API,https://docs.stripe.com/api/coupons,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Video Categories API,https://developers.google.com/youtube/v3/docs/videoCategories?hl=fa,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Twitter API v2,https://docs.x.com/overview,https://x.com/en/privacy,https://docs.x.com/developer-terms,https://docs.x.com/overview,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://devcommunity.x.com/, -Bing Search API,https://learn.microsoft.com/en-us/previous-versions/bing/search-apis/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://learn.microsoft.com/en-us/answers/tags/,,, -Google Books API,https://developers.google.com/books?hl=th,https://policies.google.com/privacy,https://developers.google.com/books/terms?hl=fa,https://cloud.google.com/security,https://groups.google.com/g/google-books-api,, -PayPal Payouts API,https://developer.paypal.com/payouts/overview,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/,, -Shopify Bulk Operations API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, -Facebook Marketing API,https://developers.facebook.com/docs/marketing-apis,https://www.facebook.com/privacy/explanation,https://developers.facebook.com/terms/,https://developers.facebook.com/docs/marketing-api/changelog,https://www.facebook.com/help/238318146535333,https://developers.facebook.com/community/, -Slack SCIM API,https://api.slack.com/scim,https://api.slack.com/scim#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Google Cloud Translation API,https://docs.cloud.google.com/translate/docs,https://policies.google.com/privacy,https://cloud.google.com/terms,https://docs.cloud.google.com/translate/quotas,https://cloud.google.com/translate/release-notes,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-translate-api, -Microsoft Teams Calling API,https://learn.microsoft.com/en-us/microsoftteams/platform/,https://www.microsoft.com/en-us/privacy/privacystatement,https://techcommunity.microsoft.com/category/MicrosoftTeams,,,, +Twitter API v2,https://docs.x.com/overview,https://x.com/en/privacy,https://docs.x.com/developer-terms,https://docs.x.com/overview,,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://devcommunity.x.com/ +Bing Search API,https://learn.microsoft.com/en-us/previous-versions/bing/search-apis/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://learn.microsoft.com/en-us/answers/tags/ +Google Books API,https://developers.google.com/books?hl=th,https://policies.google.com/privacy,https://developers.google.com/books/terms?hl=fa,,,https://cloud.google.com/security,https://groups.google.com/g/google-books-api +PayPal Payouts API,https://developer.paypal.com/payouts/overview,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,,,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/ +Shopify Bulk Operations API,,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ +Facebook Marketing API,https://developers.facebook.com/docs/marketing-apis,https://www.facebook.com/privacy/explanation,https://developers.facebook.com/terms/,,https://developers.facebook.com/docs/marketing-api/changelog,https://www.facebook.com/help/238318146535333,https://developers.facebook.com/community/ +Slack SCIM API,https://api.slack.com/scim,,,https://api.slack.com/scim#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Google Cloud Translation API,https://docs.cloud.google.com/translate/docs,https://policies.google.com/privacy,https://cloud.google.com/terms,https://docs.cloud.google.com/translate/quotas,https://cloud.google.com/translate/release-notes,,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-translate-api +Microsoft Teams Calling API,https://learn.microsoft.com/en-us/microsoftteams/platform/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,,https://techcommunity.microsoft.com/category/MicrosoftTeams AWS Rekognition API,https://docs.aws.amazon.com/rekognition/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/rekognition/latest/dg/limits.html,https://docs.aws.amazon.com/rekognition/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ -Google Cloud Datastore API,https://docs.cloud.google.com/datastore/docs?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/datastore/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-datastore-api, -Microsoft Azure Cognitive Services API,https://learn.microsoft.com/en-us/azure/foundry/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, -Slack Shortcuts API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, -Dropbox Team API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Fax API,https://help.twilio.com/hc/en-us/articles/1260800821230-Programmable-Fax-Migration-Guide-for-Documo-mFax,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Google Cloud Datastore API,https://docs.cloud.google.com/datastore/docs?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,,https://cloud.google.com/datastore/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-datastore-api +Microsoft Azure Cognitive Services API,https://learn.microsoft.com/en-us/azure/foundry/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices +Slack Shortcuts API,,,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Team API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Fax API,https://help.twilio.com/hc/en-us/articles/1260800821230-Programmable-Fax-Migration-Guide-for-Documo-mFax,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Social Media API,https://developers.hubspot.com/docs/api/marketing/social,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Messaging API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Messaging API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Invoicing API,https://docs.stripe.com/api/invoices,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Embeds API,https://developers.google.com/youtube/iframe_api_reference,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/iframe_api_reference?hl=pl,https://developers.google.com/youtube/iframe_api_reference?hl=id,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Google Maps Geocoding API,https://developers.google.com/maps/documentation/geocoding/guides-v3/start?hl=ru,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/geocoding/usage-and-billing?hl=zh-cn,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-geocoding-api, -Microsoft Graph Tasks API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/Planner,,, -Slack Channels API,https://docs.slack.dev/reference/methods/conversations.create/,https://docs.slack.dev/reference/methods/conversations.create/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox File Requests API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Google Maps Geocoding API,https://developers.google.com/maps/documentation/geocoding/guides-v3/start?hl=ru,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/geocoding/usage-and-billing?hl=zh-cn,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-geocoding-api +Microsoft Graph Tasks API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/Planner +Slack Channels API,https://docs.slack.dev/reference/methods/conversations.create/,https://docs.slack.dev/reference/methods/conversations.create/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox File Requests API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en HubSpot Line Items API,https://developers.hubspot.com/docs/api-reference/legacy/crm/objects/line-items/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ Stripe Disputes API,https://docs.stripe.com/api/disputes,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -YouTube Live Broadcasts API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, -AWS CloudFront API,https://docs.aws.amazon.com/cloudfront/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://repost.aws/,, -Microsoft Power Automate API,https://learn.microsoft.com/en-us/power-automate/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/dynamics365/release-plans/,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/PowerAutomate,, -Slack Admin API,https://api.slack.com/admin,https://api.slack.com/admin#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Twilio TaskRouter API,https://www.twilio.com/docs/taskrouter,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +YouTube Live Broadcasts API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +AWS CloudFront API,https://docs.aws.amazon.com/cloudfront/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,,,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Power Automate API,https://learn.microsoft.com/en-us/power-automate/,https://www.microsoft.com/en-us/privacy/privacystatement,,,https://learn.microsoft.com/en-us/dynamics365/release-plans/,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/PowerAutomate +Slack Admin API,https://api.slack.com/admin,,,https://api.slack.com/admin#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Twilio TaskRouter API,https://www.twilio.com/docs/taskrouter,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Blogging API,https://developers.hubspot.com/docs/api/marketing/blogs,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Sunshine Conversations API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Stripe Issuing API,https://docs.stripe.com/issuing,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, -YouTube Data API,https://developers.google.com/youtube/v3,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Zendesk Sunshine Conversations API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Stripe Issuing API,https://docs.stripe.com/issuing,https://stripe.com/au/privacy,https://stripe.com/au/legal,,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Data API,https://developers.google.com/youtube/v3?hl=pt-br,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api AWS EKS API,https://docs.aws.amazon.com/eks/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/eks/latest/userguide/service-quotas.html,https://docs.aws.amazon.com/eks/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ -Google BigQuery API,https://docs.cloud.google.com/bigquery/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/bigquery/quotas,https://cloud.google.com/bigquery/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/bigquery-api -Microsoft Graph Planner API,https://learn.microsoft.com/en-us/graph/api/resources/planner?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/Planner,, -Slack Reactions API,https://docs.slack.dev/reference/methods/reactions.add/,https://docs.slack.dev/reference/methods/reactions.add/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox User API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio IP Messaging API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, +Google BigQuery API,https://docs.cloud.google.com/bigquery/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/bigquery/quotas?hl=ja,https://cloud.google.com/bigquery/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/bigquery-api +Microsoft Graph Planner API,https://learn.microsoft.com/en-us/graph/api/resources/planner?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/Planner +Slack Reactions API,https://docs.slack.dev/reference/methods/reactions.add/,https://docs.slack.dev/reference/methods/reactions.add/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox User API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio IP Messaging API,,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Analytics API,https://developers.hubspot.com/docs/api/analytics,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Tags API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Tags API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ YouTube Watermarks API,https://developers.google.com/youtube/v3/docs/watermarks?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api AWS CloudTrail API,https://docs.aws.amazon.com/awscloudtrail/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/awscloudtrail/latest/userguide/,https://docs.aws.amazon.com/awscloudtrail/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ -Google Cloud Functions API,https://docs.cloud.google.com/functions/docs/apis,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/functions/quotas,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-functions, -Microsoft Graph Intune API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=UiKu_ljy0i3OqrHKFrfmcwghmFSgiIcg0-cJ5euPao5usGtTD1xrwT1k-2F7vXrjy9bciyI0wQuSLjz8wKPveqjrySvXJw82lz-_FBmIq51c0Mp8ilqAYMk2tJor5dEFBoMCyWtotPxJtHC2U2bnDA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FIntune,,, -Slack Conversations API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, -Dropbox Security API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Google Cloud Functions API,https://docs.cloud.google.com/functions/docs/apis,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/functions/quotas,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-functions +Microsoft Graph Intune API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=UiKu_ljy0i3OqrHKFrfmcwghmFSgiIcg0-cJ5euPao5usGtTD1xrwT1k-2F7vXrjy9bciyI0wQuSLjz8wKPveqjrySvXJw82lz-_FBmIq51c0Mp8ilqAYMk2tJor5dEFBoMCyWtotPxJtHC2U2bnDA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FIntune +Slack Conversations API,,,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Security API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en Stripe Balance Transactions API,https://docs.stripe.com/api/balance_transactions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Video Abuses API,https://developers.google.com/youtube/v3/docs/videoAbuseReportReasons?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api AWS Polly API,https://docs.aws.amazon.com/polly/latest/dg/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/polly/latest/dg/limits.html,https://docs.aws.amazon.com/polly/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ Google Cloud Natural Language API,https://docs.cloud.google.com/natural-language/docs?hl=it,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/natural-language/quotas,https://cloud.google.com/natural-language/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-natural-language-api -Microsoft Graph Security API,https://learn.microsoft.com/en-us/graph/api/resources/security-api-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=aahvtMvAuL3g-R_HaqvWqLALKG73wrFS46yGRkye2nB2Yhzgq_dCkKPYSoSUsqosFXPRuKQxmnz6e27BaSgRRn0X829HGCfb1wEMKNB09dFRjzjyCXR7ytq3qgilEvZ2RloShjKsVPtF14wABX6cWwSy-76MwUet9FLgBxkAIXU&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSecurityAPI,, -Slack Emoji API,https://docs.slack.dev/reference/methods/emoji.list/,https://docs.slack.dev/reference/methods/emoji.list/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Notifications API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Flex API,https://www.twilio.com/docs/flex,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, -Zendesk Macros API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -YouTube Partner API,https://developers.google.com/youtube/partner/,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,, +Microsoft Graph Security API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=aahvtMvAuL3g-R_HaqvWqLALKG73wrFS46yGRkye2nB2Yhzgq_dCkKPYSoSUsqosFXPRuKQxmnz6e27BaSgRRn0X829HGCfb1wEMKNB09dFRjzjyCXR7ytq3qgilEvZ2RloShjKsVPtF14wABX6cWwSy-76MwUet9FLgBxkAIXU&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSecurityAPI +Slack Emoji API,https://docs.slack.dev/reference/methods/emoji.list/,https://docs.slack.dev/reference/methods/emoji.list/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Notifications API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Flex API,https://www.twilio.com/docs/flex,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Zendesk Macros API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +YouTube Partner API,https://developers.google.com/youtube/partner?hl=bn,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,,,https://groups.google.com/g/youtube-api AWS Secrets Manager API,https://docs.aws.amazon.com/secretsmanager/latest/apireference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/secretsmanager/latest/userguide/reference_limits.html,https://docs.aws.amazon.com/secretsmanager/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ Google Translate API,https://docs.cloud.google.com/translate/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/translate/quotas,https://cloud.google.com/translate/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-translate-api -Microsoft Graph API for Teams,https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/MicrosoftTeams,, -Slack Bots API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, -Dropbox Content Management API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Programmable Voice API,https://www.twilio.com/docs/voice,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Microsoft Graph API for Teams,https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/MicrosoftTeams +Slack Bots API,,,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Content Management API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Programmable Voice API,https://www.twilio.com/docs/voice,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Campaigns API,https://developers.hubspot.com/docs/api-reference/legacy/marketing/campaigns/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Ticket Forms API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Stripe Billing API,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, -YouTube Video Abilities API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, -Microsoft Graph Files API,https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=agCR0A5inu0R0s4N1n5Fw1AmtkVxvuKR2EK-4XY0QAARMXkrqvLEid6blj-tLBRqhycsG_bwoB-dy_cq6zkXO_lxO7Ve3W-gatHTsJYRTfWb5RH3hpZp02P3jI6aIO4SR736R78poOzp_jZwiJgUQA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FFiles,, -Slack Events API,https://docs.slack.dev/reference/events/,https://docs.slack.dev/reference/events/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Zendesk Ticket Forms API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Stripe Billing API,,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Video Abilities API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Microsoft Graph Files API,https://learn.microsoft.com/en-us/graph/api/resources/driveitem?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=agCR0A5inu0R0s4N1n5Fw1AmtkVxvuKR2EK-4XY0QAARMXkrqvLEid6blj-tLBRqhycsG_bwoB-dy_cq6zkXO_lxO7Ve3W-gatHTsJYRTfWb5RH3hpZp02P3jI6aIO4SR736R78poOzp_jZwiJgUQA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FFiles +Slack Events API,https://docs.slack.dev/reference/events/,https://docs.slack.dev/reference/events/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ HubSpot Quotes API,https://developers.hubspot.com/docs/api-reference/legacy/crm/objects/quotes/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Help Center API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Help Center API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Radar API,https://docs.stripe.com/api/radar/early_fraud_warnings,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Watermark API,https://developers.google.com/youtube/v3/docs/watermarks?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api AWS Security Hub API,https://docs.aws.amazon.com/securityhub/latest/userguide/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/securityhub/latest/userguide/,https://docs.aws.amazon.com/securityhub/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Graph Insights API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=mBhn9aXjLnvMtVbNoGU3rPQtPubFgSY3AeIRoSepa13AJKoU4E9lYO8EpYLCYIAu5TgiLH-aNlurCOzYY1MWkNOOBxp_a8HOND08AQpnTdkMlspVZhTM3b_qEylOiy2SbZ9l1uxaXy9ZPLr_7G4OJdcz6jFqLJNiS8nlCKBMsng&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FInsights,,, -Slack Dialogs API,https://docs.slack.dev/legacy/legacy-dialogs/,https://docs.slack.dev/legacy/legacy-dialogs/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Team Auditing API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Microsoft Graph Insights API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=mBhn9aXjLnvMtVbNoGU3rPQtPubFgSY3AeIRoSepa13AJKoU4E9lYO8EpYLCYIAu5TgiLH-aNlurCOzYY1MWkNOOBxp_a8HOND08AQpnTdkMlspVZhTM3b_qEylOiy2SbZ9l1uxaXy9ZPLr_7G4OJdcz6jFqLJNiS8nlCKBMsng&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FInsights +Slack Dialogs API,https://docs.slack.dev/legacy/legacy-dialogs/,https://docs.slack.dev/legacy/legacy-dialogs/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Team Auditing API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en HubSpot Sales API,https://developers.hubspot.com/docs/api/crm/sales,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Side Conversations API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Side Conversations API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Events API,https://docs.stripe.com/api/events,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -YouTube Resumable Uploads API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,, -Microsoft Azure Face API,https://learn.microsoft.com/en-us/azure/ai-services/face/overview-identity,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, -Slack Workflow API,https://docs.slack.dev/workflows/,https://docs.slack.dev/workflows/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Core API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Video API,https://www.twilio.com/docs/video,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, -Zendesk Voice API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Stripe PaymentLinks API,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, +YouTube Resumable Uploads API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,,https://groups.google.com/g/youtube-api +Microsoft Azure Face API,https://learn.microsoft.com/en-us/azure/ai-services/face/overview-identity,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices +Slack Workflow API,https://docs.slack.dev/workflows/,https://docs.slack.dev/workflows/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Core API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Video API,https://www.twilio.com/docs/video,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Zendesk Voice API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Stripe PaymentLinks API,,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Playlists API,https://developers.google.com/youtube/v3/docs/playlists?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Dropbox API,https://www.dropbox.com/developers/documentation,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropbox.com/developers/documentation/http/documentation#rate-limiting,https://www.dropbox.com/features/security,https://community.dropbox.com/en, +Dropbox API,https://www.dropbox.com/developers/documentation,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropbox.com/developers/documentation/http/documentation#rate-limiting,,https://www.dropbox.com/features/security,https://community.dropbox.com/en LinkedIn API,https://learn.microsoft.com/en-us/linkedin/,https://www.linkedin.com/legal/privacy-policy,https://www.linkedin.com/legal/user-agreement,https://learn.microsoft.com/en-us/linkedin/shared/api-guide/concepts/rate-limits,https://www.linkedin.com/help/linkedin/answer/a403269/,, -PayPal API,https://developer.paypal.com/api/rest,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://developer.paypal.com/api/rest,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/, -Amazon Advertising API,https://advertising.amazon.com/API,https://advertising.amazon.com/terms,https://advertising.amazon.com/API/docs/en-us/get-started/usage-guidelines,https://advertising.amazon.com/API/docs/en-us/changelog,https://advertising.amazon.com/security,, -Google Analytics API,https://developers.google.com/analytics,https://policies.google.com/privacy,https://developers.google.com/analytics/terms/provisioning/en?hl=hi,https://developers.google.com/analytics/legacy/universal-analytics?hl=bn,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/analytics-api, +PayPal API,https://developer.paypal.com/api/rest,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://developer.paypal.com/api/rest,,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/ +Amazon Advertising API,https://advertising.amazon.com/API,,https://advertising.amazon.com/terms,https://advertising.amazon.com/API/docs/en-us/get-started/usage-guidelines,https://advertising.amazon.com/API/docs/en-us/changelog,https://advertising.amazon.com/security, +Google Analytics API,https://developers.google.com/analytics,https://policies.google.com/privacy,https://developers.google.com/analytics/terms/provisioning/en?hl=hi,https://developers.google.com/analytics/legacy/universal-analytics?hl=bn,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/analytics-api IBM Watson API,https://cloud.ibm.com/docs,https://www.ibm.com/us-en/privacy,https://www.ibm.com/legal,https://cloud.ibm.com/docs#usage,https://cloud.ibm.com/docs/release-notes,https://www.ibm.com/solutions/security,https://www.ibm.com/community/ -Zendesk API,https://developer.zendesk.com/documentation/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,, +Zendesk API,https://developer.zendesk.com/documentation/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Shopify API,https://shopify.dev/docs,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/docs/api/usage/limits,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ -Microsoft Graph API,https://learn.microsoft.com/en-us/graph/,https://www.microsoft.com/en-us/privacy/privacystatement,https://www.microsoft.com/en-us/servicesagreement,https://learn.microsoft.com/en-us/graph/throttling,https://login.microsoftonline.com/common/oauth2/authorize?client_id=80ccca67-54bd-44ab-8625-4b79c4dc7775&response_type=code%20id_token&scope=openid%20profile&state=OpenIdConnect.AuthenticationProperties%3DRdojUK_Q-5Nqymz2hLITLMRtwjeueyLhqJRymwIC3HbyhbrLhEV-dXYg08M6WB_Ubug7_xmV5Gdc5qxCMHMrUNsbpKlsjERYikN5CcU8QMwFYFZRzVO5Xlnwq16FltUQEVK2TUYdyTUVt506z68q_Q&response_mode=form_post&nonce=639234153079480059.MDdkYzk1MmQtNjBhNS00NDk0LTg2NjItMTZkMjQ4MzBkOGZiOTdhOTBlZWUtNjI2Mi00ZWY1LTk5OTctMmJhYTVmYWY1NzI2&client-request-id=4b59ab3b-a161-49af-87a1-bd3e50eed501&redirect_uri=https%3A%2F%2Fsecurity.microsoft.com%2F&x-client-SKU=ID_NET472&x-client-ver=8.16.0.0,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=IOvKJsjQCtJfIN4Wu4-ctI2dUUlttuh6FKaI0sLgYvUi403STK24K5mOB4PmRMA__AiGuKa8XUUCctgc6WBkFpfsGl1uyOpnLJAAg0xIXTuXfzaHTLovJfm9C89IQFOGbEOrQZdDwlHg8Ijz3e0K5KuAiPbHN77sew0uNEXmLUg&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FMicrosoftGraph, -Pinterest API,https://developers.pinterest.com/docs/api/v5/introduction/,https://policy.pinterest.com/en/privacy-policy,https://policy.pinterest.com/en/terms-of-service,https://developers.pinterest.com/docs/api/v5/introduction/,https://developers.pinterest.com/docs/changelog/changelog/,https://community.pinterest.biz/, +Microsoft Graph API,https://learn.microsoft.com/en-us/graph/,https://www.microsoft.com/en-us/privacy/privacystatement,https://www.microsoft.com/en-us/servicesagreement,https://learn.microsoft.com/en-us/graph/throttling,,https://login.microsoftonline.com/common/oauth2/authorize?client_id=80ccca67-54bd-44ab-8625-4b79c4dc7775&response_type=code%20id_token&scope=openid%20profile&state=OpenIdConnect.AuthenticationProperties%3DRdojUK_Q-5Nqymz2hLITLMRtwjeueyLhqJRymwIC3HbyhbrLhEV-dXYg08M6WB_Ubug7_xmV5Gdc5qxCMHMrUNsbpKlsjERYikN5CcU8QMwFYFZRzVO5Xlnwq16FltUQEVK2TUYdyTUVt506z68q_Q&response_mode=form_post&nonce=639234153079480059.MDdkYzk1MmQtNjBhNS00NDk0LTg2NjItMTZkMjQ4MzBkOGZiOTdhOTBlZWUtNjI2Mi00ZWY1LTk5OTctMmJhYTVmYWY1NzI2&client-request-id=4b59ab3b-a161-49af-87a1-bd3e50eed501&redirect_uri=https%3A%2F%2Fsecurity.microsoft.com%2F&x-client-SKU=ID_NET472&x-client-ver=8.16.0.0,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=IOvKJsjQCtJfIN4Wu4-ctI2dUUlttuh6FKaI0sLgYvUi403STK24K5mOB4PmRMA__AiGuKa8XUUCctgc6WBkFpfsGl1uyOpnLJAAg0xIXTuXfzaHTLovJfm9C89IQFOGbEOrQZdDwlHg8Ijz3e0K5KuAiPbHN77sew0uNEXmLUg&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FMicrosoftGraph +Pinterest API,https://developers.pinterest.com/docs/api/v5/introduction/,https://policy.pinterest.com/en/privacy-policy,https://policy.pinterest.com/en/terms-of-service,https://developers.pinterest.com/docs/api/v5/introduction/,https://developers.pinterest.com/docs/changelog/changelog/,,https://community.pinterest.biz/ HubSpot API,https://developers.hubspot.com/docs,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -ZoomInfo API,https://developer.zoominfo.com/,https://www.zoominfo.com/legal/privacy-policy,https://www.zoominfo.com/legal/terms-of-use,https://www.zoominfo.com/security,,, -Wix API,https://www.wix.com/about/privacy,https://www.wix.com/about/terms-of-use,,,,, +ZoomInfo API,https://developer.zoominfo.com/,https://www.zoominfo.com/legal/privacy-policy,https://www.zoominfo.com/legal/terms-of-use,,,https://www.zoominfo.com/security, +Wix API,,https://www.wix.com/about/privacy,https://www.wix.com/about/terms-of-use,,,, Trello API,https://developer.atlassian.com/cloud/trello,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/atlassian-customer-agreement,https://developer.atlassian.com/cloud/trello/guides/rest-api/rate-limits,https://developer.atlassian.com/cloud/trello/changelog,https://trello.com/security,https://community.atlassian.com/forums/Trello/ct-p/trello Plaid API,https://plaid.com/docs,https://plaid.com/legal/#enduser-privacy-policy,https://plaid.com/legal/#enduser-privacy-policy,https://plaid.com/docs/errors/rate-limit-exceeded/,https://plaid.com/docs/changelog/,https://plaid.com/trust-safety/, -Asana API,https://developers.asana.com/docs/overview,https://asana.com/terms#privacy-policy,https://asana.com/terms,https://developers.asana.com/docs/rate-limits,https://asana.com/security,https://forum.asana.com/, -Intercom API,https://developers.intercom.com/,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,https://www.intercom.com/security,https://community.intercom.com/,, +Asana API,https://developers.asana.com/docs/overview,https://asana.com/terms#privacy-policy,https://asana.com/terms,https://developers.asana.com/docs/rate-limits,,https://asana.com/security,https://forum.asana.com/ +Intercom API,https://developers.intercom.com/,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,,,https://www.intercom.com/security,https://community.intercom.com/ Shopify Admin API,https://shopify.dev/docs/api/admin-graphql/latest,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/docs/api/admin-graphql/latest,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ -Payoneer API,https://developer.payoneer.com/,https://developer.payoneer.com/rate-limits,https://developer.payoneer.com/changelog,,,, +Payoneer API,https://developer.payoneer.com/,,,https://developer.payoneer.com/rate-limits,https://developer.payoneer.com/changelog,, Telegram Bot API,https://core.telegram.org/bots/api,https://telegram.org/privacy,https://core.telegram.org/terms,https://core.telegram.org/bots/faq#what-are-the-rate-limits,https://core.telegram.org/bots/api-changelog,https://core.telegram.org/security,https://core.telegram.org/ AWS CodeCommit API,https://docs.aws.amazon.com/codecommit/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html,https://docs.aws.amazon.com/codecommit/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ -Google Maps API,https://developers.google.com/maps/documentation,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api,, -Microsoft Graph Notebooks API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=S4vQUkfylIeaDKBGxjXAjo8CZy9PNdfaitGk768iFFjIDa0MXfQZ18W1jQUorQbBPGrc2iP_gQz1L0JHunKYGKWKJGsTmH-7L1_AhNo-ClnmVQ_rI7FHyblBRN7ZUWrKFoVEWKhaLkv_eStltpLv6uGaxrG1j-tiC8jYZb_aLbg&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNoteAPI,, -Slack API Logs API,https://docs.slack.dev/reference/methods/admin.analytics.getFile/,https://docs.slack.dev/reference/methods/admin.analytics.getFile/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Events API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Voice API,https://www.twilio.com/docs/voice,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Google Maps API,https://developers.google.com/maps/documentation,https://policies.google.com/privacy,https://developers.google.com/terms,,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api +Microsoft Graph Notebooks API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=S4vQUkfylIeaDKBGxjXAjo8CZy9PNdfaitGk768iFFjIDa0MXfQZ18W1jQUorQbBPGrc2iP_gQz1L0JHunKYGKWKJGsTmH-7L1_AhNo-ClnmVQ_rI7FHyblBRN7ZUWrKFoVEWKhaLkv_eStltpLv6uGaxrG1j-tiC8jYZb_aLbg&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNoteAPI +Slack API Logs API,https://docs.slack.dev/reference/methods/admin.analytics.getFile/,https://docs.slack.dev/reference/methods/admin.analytics.getFile/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Events API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Voice API,https://www.twilio.com/docs/voice,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Deals API,https://developers.hubspot.com/docs/api/deals,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Organizations API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Organizations API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Subscriptions API,https://docs.stripe.com/api/subscriptions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Subscriptions API,https://developers.google.com/youtube/v3/docs/subscriptions?hl=zh-cn,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api AWS Kinesis API,https://docs.aws.amazon.com/kinesis/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/streams/latest/dev/service-sizes-and-limits.html,https://docs.aws.amazon.com/streams/latest/dev/,https://aws.amazon.com/security/,https://repost.aws/ -Slack Web API,https://docs.slack.dev/apis/web-api/,https://docs.slack.dev/apis/web-api/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Slack Web API,https://docs.slack.dev/apis/web-api/,https://docs.slack.dev/apis/web-api/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ HubSpot Pipelines API,https://developers.hubspot.com/docs/api/pipelines,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ Stripe Subscription API,https://docs.stripe.com/api/subscriptions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Video API,https://developers.google.com/youtube/v3/docs/videos?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Google Maps Elevation API,https://developers.google.com/maps/documentation/elevation/overview?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/elevation/usage-and-billing?hl=bn,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-elevation-api, -Microsoft Graph Reports API,https://learn.microsoft.com/en-us/graph/api/resources/report?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=-DIeHo-K7qlOwwB2aV6WmKHFuRya1EsMaBGIfddPYpKOuFVoHKGPtMzqwGKlWPuaSk2rG0pQ9zbKLJiOVkf1JdczbK7RvI-ABPaT9pypvb9Fv7CGVRpaMZEesHHMr33e7bP3faIA7zD40dRckAyyMw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FReports,, -Slack Audit API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, -Dropbox Sharing API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Messaging Insights API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, -Zendesk Schedules API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -YouTube Analytics Reporting API,https://developers.google.com/youtube/reporting?hl=th,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-reporting,, +Google Maps Elevation API,https://developers.google.com/maps/documentation/elevation/overview?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/elevation/usage-and-billing?hl=bn,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-elevation-api +Microsoft Graph Reports API,https://learn.microsoft.com/en-us/graph/api/resources/report?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=-DIeHo-K7qlOwwB2aV6WmKHFuRya1EsMaBGIfddPYpKOuFVoHKGPtMzqwGKlWPuaSk2rG0pQ9zbKLJiOVkf1JdczbK7RvI-ABPaT9pypvb9Fv7CGVRpaMZEesHHMr33e7bP3faIA7zD40dRckAyyMw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FReports +Slack Audit API,,,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Sharing API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Messaging Insights API,,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Zendesk Schedules API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +YouTube Analytics Reporting API,https://developers.google.com/youtube/reporting?hl=th,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,,,https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-reporting Facebook API,https://developers.facebook.com/docs/,https://www.facebook.com/privacy/explanation,https://www.facebook.com/legal/terms,https://developers.facebook.com/docs/graph-api/overview/rate-limiting,https://developers.facebook.com/docs/graph-api/changelog,https://www.facebook.com/help/238318146535333,https://developers.facebook.com/community/ -Twitter API,https://docs.x.com/overview,https://x.com/en/privacy,https://x.com/en/tos,https://docs.x.com/overview,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://devcommunity.x.com/, +Twitter API,https://docs.x.com/overview,https://x.com/en/privacy,https://x.com/en/tos,https://docs.x.com/overview,,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://devcommunity.x.com/ YouTube API,https://developers.google.com/youtube?hl=id,https://policies.google.com/privacy,https://www.youtube.com/t/terms,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://www.youtube.com/howyoutubeworks/our-policies/,https://groups.google.com/g/youtube-api -Instagram Graph API,https://developers.facebook.com/docs/instagram-api,https://privacycenter.instagram.com/policy,https://developers.facebook.com/terms/,https://developers.facebook.com/docs/instagram-api/changelog,https://help.instagram.com/519522125107875,https://developers.facebook.com/community/, +Instagram Graph API,https://developers.facebook.com/docs/instagram-api,https://privacycenter.instagram.com/policy,https://developers.facebook.com/terms/,,https://developers.facebook.com/docs/instagram-api/changelog,https://help.instagram.com/519522125107875,https://developers.facebook.com/community/ Reddit API,https://www.reddit.com/dev/api,https://www.reddit.com/policies/privacy-policy,https://redditinc.com/policies/user-agreement,https://www.reddit.com/dev/api#limits,https://redditinc.com/news,https://www.reddit.com/r/redditdev/, -Slack API,https://docs.slack.dev/,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Slack API,https://docs.slack.dev/,,,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ GitHub API,https://docs.github.com/en/rest,https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement,https://docs.github.com/en/site-policy/github-terms/github-terms-of-service,https://docs.github.com/en/rest/using-the-rest-api/getting-started-with-the-rest-api,https://github.blog/changelog/,https://github.com/security,https://github.com/orgs/community/discussions/ AWS CodePipeline API,https://docs.aws.amazon.com/codepipeline/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/codepipeline/latest/APIReference/,https://docs.aws.amazon.com/codepipeline/latest/APIReference/Welcome.html#release-notes,https://aws.amazon.com/security/,https://repost.aws/ -Google Sheets API,https://developers.google.com/workspace/sheets?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/sheets/api/limits?hl=vi,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-sheets-api, -Microsoft Azure Event Hubs API,https://learn.microsoft.com/en-us/azure/event-hubs/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-quotas,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=OfT4aohP62ba_zd6MVDVAjHfFF1wGzp0MXR8G3H1H2H-mO2L78JTbQ-Gxb0C_zMph0TUXaXIMQuL0as-BH2X-nHEzKX_lJyhFZkATSUgu4a_IQ8ftNTp-E_79GUot0YDZIXUpG-vSvDaU8XX5fFevUnxWpD7v8k7EsD-iDPcLSw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FEventHubs,, -Dropbox Badge API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Google Sheets API,https://developers.google.com/workspace/sheets?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/sheets/api/limits?hl=vi,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-sheets-api +Microsoft Azure Event Hubs API,https://learn.microsoft.com/en-us/azure/event-hubs/,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-quotas,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=OfT4aohP62ba_zd6MVDVAjHfFF1wGzp0MXR8G3H1H2H-mO2L78JTbQ-Gxb0C_zMph0TUXaXIMQuL0as-BH2X-nHEzKX_lJyhFZkATSUgu4a_IQ8ftNTp-E_79GUot0YDZIXUpG-vSvDaU8XX5fFevUnxWpD7v8k7EsD-iDPcLSw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FEventHubs +Dropbox Badge API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en Stripe PaymentIntents API,https://docs.stripe.com/api/payment_intents,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ Google Cloud Vision API,https://docs.cloud.google.com/vision/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/vision/quotas?hl=pt,https://cloud.google.com/vision/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-vision-api -Microsoft Graph Groups API,https://learn.microsoft.com/en-us/graph/api/resources/groups-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=lIXngyBXKsipYINl9GunF17fJWYqwKKLEg0lVdndqXSXBtUi_OWGZqv17kflV4RYoY0NeobOyjOh3aaatisipI298vjRef9TxPhryS3h_POdqsxiy2IQNkTFIAjiPqaRe3KEAPgnynhYCknk0CtRwQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FGroups,, -Slack File Sharing API,https://docs.slack.dev/reference/methods/files.upload/,https://docs.slack.dev/reference/methods/files.upload/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Folder API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Zendesk Request API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Microsoft Graph Groups API,https://learn.microsoft.com/en-us/graph/api/resources/groups-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=lIXngyBXKsipYINl9GunF17fJWYqwKKLEg0lVdndqXSXBtUi_OWGZqv17kflV4RYoY0NeobOyjOh3aaatisipI298vjRef9TxPhryS3h_POdqsxiy2IQNkTFIAjiPqaRe3KEAPgnynhYCknk0CtRwQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FGroups +Slack File Sharing API,https://docs.slack.dev/reference/methods/files.upload/,https://docs.slack.dev/reference/methods/files.upload/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Folder API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Zendesk Request API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Setup Intents API,https://docs.stripe.com/api/setup_intents,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -YouTube Live Events API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +YouTube Live Events API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api TikTok API,https://developers.tiktok.com/doc/,https://www.tiktok.com/legal/page/row/privacy-policy/en,https://www.tiktok.com/legal/page/row/terms-of-service/en,https://www.tiktok.com/safety/en/,,, -WhatsApp Cloud API,https://developers.facebook.com/docs/whatsapp/cloud-api,https://developers.facebook.com/docs/whatsapp/cloud-api/changelog,https://www.whatsapp.com/security,https://developers.facebook.com/community,,, +WhatsApp Cloud API,https://developers.facebook.com/docs/whatsapp/cloud-api,,,,https://developers.facebook.com/docs/whatsapp/cloud-api/changelog,https://www.whatsapp.com/security,https://developers.facebook.com/community Notion API,https://developers.notion.com/guides/get-started/overview,https://www.notion.so/Privacy-Policy-3468d120cf614d60844b00fcfb50529d,https://www.notion.so/Terms-of-Service-5d353cf927d1433a9cb2e6b8b69d78a2,https://developers.notion.com/reference/errors,https://developers.notion.com/changelog,https://www.notion.so/Security-65b0336c3b4e43b7b8ad2728052f647b, Calendly API,https://developer.calendly.com/,https://calendly.com/legal/privacy-notice,https://calendly.com/legal/customer-terms-conditions,https://developer.calendly.com/api-docs/rate-limits,https://developer.calendly.com/changelog,https://calendly.com/security,https://developer.calendly.com/community -Medium API,https://medium.engineering/?gi=3a0cda371a6b,https://policy.medium.com/medium-terms-of-service-9db0094a1e0f,https://policy.medium.com/medium-terms-of-service-9db0094a1e0f,https://security.medium.com/,,, +Medium API,https://medium.engineering/?gi=610082dfd8d2,,https://policy.medium.com/medium-terms-of-service-9db0094a1e0f,,,https://security.medium.com/, Airbnb API,https://developer.withairbnb.com/,https://www.airbnb.com/help/article/2855/privacy-policy,https://www.airbnb.com/help/article/2908,https://www.airbnb.com/login_with_redirect?redirect_url=%2Foauth2%2Fauth%3Fredirect_uri%3Dhttps%253A%252F%252Foauth.readme.io%252Fp%252Fairbnb-group%252Foauth%252Fcallback%26scope%3Dpartner_profile_read%252Cbasic_profile_read%252Cemail_read%26state%3D%252Fhomes%252Fdocs%252Frate-limits%26response_type%3Dcode%26client_id%3D7bgoybsfef2r71egvdcwt8fze,https://www.airbnb.com/login_with_redirect?redirect_url=%2Foauth2%2Fauth%3Fredirect_uri%3Dhttps%253A%252F%252Foauth.readme.io%252Fp%252Fairbnb-group%252Foauth%252Fcallback%26scope%3Dpartner_profile_read%252Cbasic_profile_read%252Cemail_read%26state%3D%252Fhomes%252Fdocs%252Fchangelog%26response_type%3Dcode%26client_id%3D7bgoybsfef2r71egvdcwt8fze,https://www.airbnb.com/e/security,https://community.withairbnb.com/t5/Community-Center/ct-p/community-center -Paypal Payouts API,https://developer.paypal.com/payouts/overview,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/home,https://developer.paypal.com/docs/api-basics/rate-limiting/,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://developer.paypal.com/community, -Etsy API,https://developers.etsy.com/documentation,https://www.etsy.com/legal/privacy,https://www.etsy.com/legal/terms-of-use,https://community.etsy.com/,,, -Twitter Ads API,https://docs.x.com/overview,https://x.com/en/privacy,https://x.com/en/tos,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://devcommunity.x.com/,, +Paypal Payouts API,https://developer.paypal.com/payouts/overview,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/home,https://developer.paypal.com/docs/api-basics/rate-limiting/,,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://developer.paypal.com/community +Etsy API,https://developers.etsy.com/documentation,https://www.etsy.com/legal/privacy,https://www.etsy.com/legal/terms-of-use,,,,https://community.etsy.com/ +Twitter Ads API,https://docs.x.com/overview,https://x.com/en/privacy,https://x.com/en/tos,,,https://help.twitter.com/en/rules-and-policies/report-security-vulnerability,https://devcommunity.x.com/ AWS S3 Glacier API,https://docs.aws.amazon.com/amazonglacier/latest/dev/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/amazonglacier/latest/dev/,https://docs.aws.amazon.com/amazonglacier/latest/dev/,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Graph Presence API,https://learn.microsoft.com/en-us/graph/api/resources/presence?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=SPH8ED7f1Q8BKkACfdxlzkUrQv63uctiMnocU9QlhPmTHkiWgCoDeGotaPVFc_pdVU8oKQYmf7Bo9eZFf_wyN31TXv3Kbl61H_2bxS5Cg9g7vh4ME-C_-qz8eTAQMUXRk55nz3orDoXF3cHf1DvJTgPJ4CSdghzKO91xPHaxOl4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPresence,, -Slack Reminders API,https://docs.slack.dev/reference/methods/reminders.add/,https://docs.slack.dev/reference/methods/reminders.add/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Content Explorer API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Voice Insights API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, +Microsoft Graph Presence API,https://learn.microsoft.com/en-us/graph/api/resources/presence?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=SPH8ED7f1Q8BKkACfdxlzkUrQv63uctiMnocU9QlhPmTHkiWgCoDeGotaPVFc_pdVU8oKQYmf7Bo9eZFf_wyN31TXv3Kbl61H_2bxS5Cg9g7vh4ME-C_-qz8eTAQMUXRk55nz3orDoXF3cHf1DvJTgPJ4CSdghzKO91xPHaxOl4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPresence +Slack Reminders API,https://docs.slack.dev/reference/methods/reminders.add/,https://docs.slack.dev/reference/methods/reminders.add/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Content Explorer API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Voice Insights API,,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Properties API,https://developers.hubspot.com/docs/api-reference/legacy/crm/properties/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Chat SDK API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Chat SDK API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Identity API,https://docs.stripe.com/api/identity/verification_sessions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -Twitch Helix API,https://dev.twitch.tv/docs/api,https://legal.twitch.com/legal/privacy-policy,https://legal.twitch.com/legal/terms-of-service,https://dev.twitch.tv/docs/change-log,https://www.twitch.tv/p/security,https://discuss.dev.twitch.com/, +Twitch Helix API,https://dev.twitch.tv/docs/api,https://legal.twitch.com/legal/privacy-policy,https://legal.twitch.com/legal/terms-of-service,,https://dev.twitch.tv/docs/change-log,https://www.twitch.tv/p/security,https://discuss.dev.twitch.com/ Amazon S3 API,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonS3/latest/userguide/optimizing-performance.html#optimizing-performance-rate-limit,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html#release_notes,https://aws.amazon.com/security/,https://repost.aws/ YouTube Analytics API,https://developers.google.com/youtube/analytics?hl=id,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/reporting?hl=pt-br,https://developers.google.com/youtube/reporting,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api Foursquare Places API,https://docs.foursquare.com/developer/docs/foursquare-sdks-overview,https://foursquare.com/legal/privacy-center/foursquare-privacy-policy-consumer-services/,https://foursquare.com/legal/terms,,,, -Netflix API,https://help.netflix.com/legal/privacy,https://help.netflix.com/legal/termsofuse,https://netflixtechblog.com/?gi=9cd173bbda48,,,, -Microsoft Graph Print API,https://learn.microsoft.com/en-us/graph/api/resources/print?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=ga8fXg-L519ZXCFJOcugjzhBzMxU3JztV3WbHVrGAHO9tfw5a_VGJGMYY3nmEEm_xavYhQs8Yhl8ctRQZmp2bHISVwwz7BVIt_TMbEGd3SB1csReETXO4uyQnxigdgbeeALvidXRxS3PvnpX5DQsHQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPrint,, -Slack Interactive Messages API,https://docs.slack.dev/interactivity/,https://docs.slack.dev/interactivity/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Twilio Notify API,https://www.twilio.com/docs/notify,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, -Zendesk Chat API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Netflix API,,https://help.netflix.com/legal/privacy,https://help.netflix.com/legal/termsofuse,https://netflixtechblog.com/?gi=0b3f2cdbfda2,,, +Microsoft Graph Print API,https://learn.microsoft.com/en-us/graph/api/resources/print?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=ga8fXg-L519ZXCFJOcugjzhBzMxU3JztV3WbHVrGAHO9tfw5a_VGJGMYY3nmEEm_xavYhQs8Yhl8ctRQZmp2bHISVwwz7BVIt_TMbEGd3SB1csReETXO4uyQnxigdgbeeALvidXRxS3PvnpX5DQsHQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPrint +Slack Interactive Messages API,https://docs.slack.dev/interactivity/,https://docs.slack.dev/interactivity/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Twilio Notify API,https://www.twilio.com/docs/notify,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Zendesk Chat API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Checkout API,https://docs.stripe.com/api/checkout/sessions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -YouTube Monetization API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,,, -Zoom API,https://developers.zoom.us/docs/,https://www.zoom.com/en/trust/privacy/privacy-statement/,https://www.zoom.com/en/trust/terms/,https://www.zoom.com/en/trust/security/,https://devforum.zoom.us/,, -Adobe Sign API,https://secure.na1.adobesign.com/public/docs/restapi/v6,https://community.adobe.com/adobe-acrobat-sign-28,,,,, -SendBird API,https://sendbird.com/docs,https://community.sendbird.com/,,,,, -Microsoft Teams API,https://learn.microsoft.com/en-us/microsoftteams/platform/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/MicrosoftTeams,,, -Klarna API,https://www.klarna.com/international/privacy-policy/,,,,,, -PayPal Checkout API,https://developer.paypal.com/checkout,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/,, +YouTube Monetization API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,,,https://groups.google.com/g/youtube-api +Zoom API,https://developers.zoom.us/docs/,https://www.zoom.com/en/trust/privacy/privacy-statement/,https://www.zoom.com/en/trust/terms/,,,https://www.zoom.com/en/trust/security/,https://devforum.zoom.us/ +Adobe Sign API,https://secure.na1.adobesign.com/public/docs/restapi/v6,,,,,,https://community.adobe.com/adobe-acrobat-sign-28 +SendBird API,https://sendbird.com/docs,,,,,,https://community.sendbird.com/ +Microsoft Teams API,https://learn.microsoft.com/en-us/microsoftteams/platform/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/MicrosoftTeams +Klarna API,,https://www.klarna.com/international/privacy-policy/,,,,, +PayPal Checkout API,https://developer.paypal.com/checkout,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,,,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/ AWS CloudFormation API,https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/cloudformation-limits.html,https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/,https://aws.amazon.com/security/,https://repost.aws/ -Google Photos API,https://developers.google.com/photos?hl=bn,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/photos-api,, -Microsoft Graph Device API,https://learn.microsoft.com/en-us/graph/api/resources/device?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=AFt1gJtvSXpFXIxovgJRdYIBsjRpQzi2WMWr9b5_3kWd7V9pWTG_V6WpqAamgAfS38TnkvBt2MWth0WS4j0TnwofzjedKwPh0P4FKBqCS0y7Cepb5n77ymz0TMU6nvEdkXOKr8WByLDI5Z3FnbBc8g&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDevices,, -Slack Apps API,https://api.slack.com/apps,https://api.slack.com/apps#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Sync API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Studio API,https://www.twilio.com/docs/studio,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Google Photos API,https://developers.google.com/photos?hl=bn,https://policies.google.com/privacy,https://developers.google.com/terms,,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/photos-api +Microsoft Graph Device API,https://learn.microsoft.com/en-us/graph/api/resources/device?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=AFt1gJtvSXpFXIxovgJRdYIBsjRpQzi2WMWr9b5_3kWd7V9pWTG_V6WpqAamgAfS38TnkvBt2MWth0WS4j0TnwofzjedKwPh0P4FKBqCS0y7Cepb5n77ymz0TMU6nvEdkXOKr8WByLDI5Z3FnbBc8g&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDevices +Slack Apps API,https://api.slack.com/apps,,,https://api.slack.com/apps#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Sync API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Studio API,https://www.twilio.com/docs/studio,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot CRM API,https://developers.hubspot.com/docs/api/crm,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ Stripe Products API,https://docs.stripe.com/api/products,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -YouTube API for Broadcasts,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +YouTube API for Broadcasts,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api Amazon Translate API,https://docs.aws.amazon.com/translate/latest/APIReference/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/translate/latest/dg/,https://docs.aws.amazon.com/translate/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ -Twilio API,https://www.twilio.com/docs/usage/api,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Twilio API,https://www.twilio.com/docs/usage/api,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, Stripe API,https://docs.stripe.com/api,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ AWS API Gateway,https://docs.aws.amazon.com/apigateway/latest/developerguide/welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/apigateway/latest/developerguide/limits.html,https://docs.aws.amazon.com/apigateway/latest/developerguide/,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Translator Text API,https://learn.microsoft.com/en-us/azure/ai-services/translator/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, +Microsoft Translator Text API,https://learn.microsoft.com/en-us/azure/ai-services/translator/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices Stripe Refunds API,https://docs.stripe.com/api/refunds,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ AWS Step Functions API,https://docs.aws.amazon.com/step-functions/latest/apireference/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/step-functions/latest/dg/service-quotas.html,https://docs.aws.amazon.com/step-functions/latest/dg/welcome.html,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Graph SharePoint API,https://learn.microsoft.com/en-us/graph/api/resources/sharepoint?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=1OIXvxtUgtctvRMt3UFYHpzXcscmEUGzGr6Op09CASKVMzKmM_moS6pPZ1EHIbKp2a_tZK538TV9rdugEA9Xh0uK3Kdsks2fFNjhYbZi-HyETDGtTb4Cm8ONDvACq4rfh7h7gcch9oQVRM5Qlnl1vp3nv9tHA7mf4gp45H2Vhos&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSharePoint,, -Dropbox Revisions API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Microsoft Graph SharePoint API,https://learn.microsoft.com/en-us/graph/api/resources/sharepoint?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=1OIXvxtUgtctvRMt3UFYHpzXcscmEUGzGr6Op09CASKVMzKmM_moS6pPZ1EHIbKp2a_tZK538TV9rdugEA9Xh0uK3Kdsks2fFNjhYbZi-HyETDGtTb4Cm8ONDvACq4rfh7h7gcch9oQVRM5Qlnl1vp3nv9tHA7mf4gp45H2Vhos&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSharePoint +Dropbox Revisions API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en HubSpot Forms API,https://developers.hubspot.com/docs/api/forms,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -YouTube Live Streaming API,https://developers.google.com/youtube/v3/live/getting-started?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/live/getting-started?hl=he,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-live, +YouTube Live Streaming API,https://developers.google.com/youtube/v3/live/getting-started?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/live/getting-started?hl=he,https://support.google.com/youtube/answer/2801895,,https://groups.google.com/g/youtube-live AWS EC2 API,https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-resource-limits.html,https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/,https://aws.amazon.com/security/,https://repost.aws/ -Google Tasks API,https://developers.google.com/workspace/tasks?hl=zh-cn,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/tasks/limits?hl=bn,https://cloud.google.com/security,https://groups.google.com/g/google-tasks-api, -Microsoft Graph Mail API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=W4uWdy1RJ19lG9lJRXaCdcEAk_cL87J9O4sIhl9HIGxAm1f-w-0XGUKj10ZbLc4jMWOKt7FHhi5liUOYBTIC-SbP2giPwXv7sF4oc_9zavhglu8A3n8LECT-G8r5QLoplpZuB3khomkZc8B9nHDHBiqbWDrchDVvrFYaO5kZG4k&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookDeveloper,,, -Slack Messaging API,https://docs.slack.dev/messaging/,https://docs.slack.dev/messaging/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Twilio Authy API,https://www.twilio.com/docs/authy,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Google Tasks API,https://developers.google.com/workspace/tasks?hl=zh-cn,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/tasks/limits?hl=bn,,https://cloud.google.com/security,https://groups.google.com/g/google-tasks-api +Microsoft Graph Mail API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=W4uWdy1RJ19lG9lJRXaCdcEAk_cL87J9O4sIhl9HIGxAm1f-w-0XGUKj10ZbLc4jMWOKt7FHhi5liUOYBTIC-SbP2giPwXv7sF4oc_9zavhglu8A3n8LECT-G8r5QLoplpZuB3khomkZc8B9nHDHBiqbWDrchDVvrFYaO5kZG4k&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookDeveloper +Slack Messaging API,https://docs.slack.dev/messaging/,https://docs.slack.dev/messaging/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Twilio Authy API,https://www.twilio.com/docs/authy,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Call API,https://developers.hubspot.com/docs/api/calls,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Tickets API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -YouTube Livestreams API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +Zendesk Tickets API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +YouTube Livestreams API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api Amazon Rekognition API,https://docs.aws.amazon.com/rekognition/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/rekognition/latest/dg/limits.html,https://docs.aws.amazon.com/rekognition/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ -Dropbox Search API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Programmable Chat API,https://www.twilio.com/docs/chat,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, -Zendesk Sunshine API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Dropbox Search API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Programmable Chat API,https://www.twilio.com/docs/chat,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Zendesk Sunshine API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ HubSpot CMS API,https://developers.hubspot.com/docs/api/cms,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Microsoft Translator API,https://learn.microsoft.com/en-us/azure/ai-services/translator/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, +Microsoft Translator API,https://learn.microsoft.com/en-us/azure/ai-services/translator/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices AWS Athena API,https://docs.aws.amazon.com/athena/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/athena/latest/ug/service-limits.html,https://docs.aws.amazon.com/athena/latest/ug/,https://aws.amazon.com/security/,https://repost.aws/ Google Maps Directions API,https://developers.google.com/maps/documentation/directions/start?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/directions/usage-and-billing?hl=fa,https://developers.google.com/maps/documentation/directions/releases,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api -Microsoft Dynamics 365 API,https://learn.microsoft.com/en-us/dynamics365/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://community.dynamics.com/,,, -Slack Permissions API,https://docs.slack.dev/reference/scopes/,https://docs.slack.dev/reference/scopes/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Activity API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Microsoft Dynamics 365 API,https://learn.microsoft.com/en-us/dynamics365/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://community.dynamics.com/ +Slack Permissions API,https://docs.slack.dev/reference/scopes/,https://docs.slack.dev/reference/scopes/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Activity API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en HubSpot Email API,https://developers.hubspot.com/docs/api/marketing/email,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Custom Objects API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Custom Objects API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Amazon SES API,https://docs.aws.amazon.com/ses/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/ses/latest/APIReference/API_Operations.html,https://docs.aws.amazon.com/ses/latest/APIReference/Welcome.html#release_notes,https://aws.amazon.com/security/,https://repost.aws/ -Google Maps Roads API,https://developers.google.com/maps/documentation/roads,https://policies.google.com/privacy,https://cloud.google.com/maps-platform/terms,https://developers.google.com/maps/documentation/roads/usage-and-billing?hl=zh-cn,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api, -Slack App API,https://api.slack.com/apps,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Google Maps Roads API,https://developers.google.com/maps/documentation/roads,https://policies.google.com/privacy,https://cloud.google.com/maps-platform/terms,https://developers.google.com/maps/documentation/roads/usage-and-billing?hl=zh-cn,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api +Slack App API,https://api.slack.com/apps,,,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ HubSpot Contacts API,https://developers.hubspot.com/docs/api-reference/legacy/crm/objects/contacts/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ Stripe Tax API,https://docs.stripe.com/tax,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -Zendesk Sell API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -YouTube Reporting API,https://developers.google.com/youtube/reporting,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,, +Zendesk Sell API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +YouTube Reporting API,https://developers.google.com/youtube/reporting,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,,,https://groups.google.com/g/youtube-api AWS Backup API,https://docs.aws.amazon.com/aws-backup/latest/devguide/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/aws-backup/latest/devguide/,https://docs.aws.amazon.com/aws-backup/latest/devguide/,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Graph Calendar API,https://learn.microsoft.com/en-us/graph/api/resources/calendar?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=FUiZ57pDenN2vqWpceO8S9uA-W4qBcgTDgV_qJBnM117LQyLQTN7mxuGBcwqhSl8ng1O7qZjsaOcwZAmGyO6VJXXsS1WdNHeLGSPu4NHJfVilXsSuNsz_-utVvStCouNc8JEEjtZQ8Bc3a2yn3deJ6bCZf7tM1FYSYQWcbuKZb8&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookCalendar,, -Twilio Conversations API,https://www.twilio.com/docs/conversations,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Microsoft Graph Calendar API,https://learn.microsoft.com/en-us/graph/api/resources/calendar?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=FUiZ57pDenN2vqWpceO8S9uA-W4qBcgTDgV_qJBnM117LQyLQTN7mxuGBcwqhSl8ng1O7qZjsaOcwZAmGyO6VJXXsS1WdNHeLGSPu4NHJfVilXsSuNsz_-utVvStCouNc8JEEjtZQ8Bc3a2yn3deJ6bCZf7tM1FYSYQWcbuKZb8&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookCalendar +Twilio Conversations API,https://www.twilio.com/docs/conversations,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Marketing Events API,https://developers.hubspot.com/docs/api/marketing/events,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ AWS SNS API,https://docs.aws.amazon.com/sns/latest/api/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/sns/latest/dg/,https://docs.aws.amazon.com/sns/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ -Google People API,https://developers.google.com/people,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-people-api,, -Microsoft Graph OneDrive API,https://learn.microsoft.com/en-us/graph/api/resources/onedrive?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=HfPeQh0_RYaCRf36VBH5tBxqe1MWs42oRuuytkTOTCPiqNYvSGBKJw5uQcXKpjuM19WPaVlSRQXOXmKOn14AOyXV39nye0Oa8ARujaW9OFUZnUwJ_Xp0fydrfuP0-cxe5TDT1Ajj4rVv6wbIjPO7N40A4nImXYvY58QsNY0OZpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneDriveDeveloper,, -Zendesk Apps Framework API,https://developer.zendesk.com/documentation/apps/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,, +Google People API,https://developers.google.com/people?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/terms,,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-people-api +Microsoft Graph OneDrive API,https://learn.microsoft.com/en-us/graph/api/resources/onedrive?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=HfPeQh0_RYaCRf36VBH5tBxqe1MWs42oRuuytkTOTCPiqNYvSGBKJw5uQcXKpjuM19WPaVlSRQXOXmKOn14AOyXV39nye0Oa8ARujaW9OFUZnUwJ_Xp0fydrfuP0-cxe5TDT1Ajj4rVv6wbIjPO7N40A4nImXYvY58QsNY0OZpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneDriveDeveloper +Zendesk Apps Framework API,https://developer.zendesk.com/documentation/apps/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Transfers API,https://docs.stripe.com/api/transfers,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Categories API,https://developers.google.com/youtube/v3/docs/videoCategories?hl=fa,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS AppStream API,https://docs.aws.amazon.com/appstream2/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://repost.aws/,, -Microsoft Graph DeviceManagement API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=V-1RQMF48do9f_ch08ENZvdewH9WA0hDLUiJOk-ewEm_nsdFZ0JkIumxqzXRX6J44VLhygxBvge0qHIKxvTSrNn7NnbhyEDfszPUL4x5Ca_a4JcNuuzvKYQ7GQapSy84l8psAJts5fuB8vHf1gPHAksZtLYc9afP0ObBKleWNBA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDeviceManagement,,, -Slack Directory API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, -Dropbox Shared Links API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +AWS AppStream API,https://docs.aws.amazon.com/appstream2/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,,,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Graph DeviceManagement API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=V-1RQMF48do9f_ch08ENZvdewH9WA0hDLUiJOk-ewEm_nsdFZ0JkIumxqzXRX6J44VLhygxBvge0qHIKxvTSrNn7NnbhyEDfszPUL4x5Ca_a4JcNuuzvKYQ7GQapSy84l8psAJts5fuB8vHf1gPHAksZtLYc9afP0ObBKleWNBA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDeviceManagement +Slack Directory API,,,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Shared Links API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en HubSpot Blogs API,https://developers.hubspot.com/docs/api/blogs,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -YouTube Embed API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,,, -Microsoft OneDrive API,https://learn.microsoft.com/en-us/graph/api/resources/onedrive?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=HfPeQh0_RYaCRf36VBH5tBxqe1MWs42oRuuytkTOTCPiqNYvSGBKJw5uQcXKpjuM19WPaVlSRQXOXmKOn14AOyXV39nye0Oa8ARujaW9OFUZnUwJ_Xp0fydrfuP0-cxe5TDT1Ajj4rVv6wbIjPO7N40A4nImXYvY58QsNY0OZpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneDriveDeveloper,, -Google Cloud Pub/Sub API,https://docs.cloud.google.com/pubsub/docs?hl=es-419,https://policies.google.com/privacy,https://cloud.google.com/terms,https://docs.cloud.google.com/pubsub/quotas,https://cloud.google.com/pubsub/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-pubsub-discuss -Amazon CloudWatch API,https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_limits.html,https://aws.amazon.com/security/,https://repost.aws/, -Spotify Web Playback API,https://developer.spotify.com/documentation/web-playback-sdk/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-playback-sdk/#rate-limits,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/, -Bitly Links API,https://bitly.com/pages/privacy,https://bitly.com/pages/terms-of-service,,,,, +YouTube Embed API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,,,https://groups.google.com/g/youtube-api +Microsoft OneDrive API,https://learn.microsoft.com/en-us/graph/api/resources/onedrive?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=HfPeQh0_RYaCRf36VBH5tBxqe1MWs42oRuuytkTOTCPiqNYvSGBKJw5uQcXKpjuM19WPaVlSRQXOXmKOn14AOyXV39nye0Oa8ARujaW9OFUZnUwJ_Xp0fydrfuP0-cxe5TDT1Ajj4rVv6wbIjPO7N40A4nImXYvY58QsNY0OZpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneDriveDeveloper +Google Cloud Pub/Sub API,https://docs.cloud.google.com/pubsub/docs?hl=es-419,https://policies.google.com/privacy,https://cloud.google.com/terms,https://docs.cloud.google.com/pubsub/quotas?hl=id,https://cloud.google.com/pubsub/release-notes,https://cloud.google.com/security,https://groups.google.com/g/cloud-pubsub-discuss +Amazon CloudWatch API,https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_limits.html,,https://aws.amazon.com/security/,https://repost.aws/ +Spotify Web Playback API,https://developer.spotify.com/documentation/web-playback-sdk/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-playback-sdk/#rate-limits,,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ +Bitly Links API,,https://bitly.com/pages/privacy,https://bitly.com/pages/terms-of-service,,,, AWS AppConfig API,https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/appconfig/latest/userguide/,https://docs.aws.amazon.com/appconfig/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ -Google Chat API,https://developers.google.com/workspace/chat?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/workspace/chat/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-chat-api, -Microsoft Graph Sites API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=47VNIbUQY_55YwUiqtznImZeU8FI86dAwwgyTtEy4m0viBWqNqfH4PSfeKSQBTz6G_tNFoVuLJ6OLOd3Un73-G9L9Dr6dA4u4E3rklt8a7v-CdVbP6kk7KYrnPaW2xnptlihp5DVK_yuwqnqDyCD5w&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSites,,, -Slack Users API,https://docs.slack.dev/reference/methods/users.info/,https://docs.slack.dev/reference/methods/users.info/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Google Chat API,https://developers.google.com/workspace/chat?hl=he,https://policies.google.com/privacy,https://developers.google.com/terms,,https://developers.google.com/workspace/chat/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-chat-api +Microsoft Graph Sites API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=47VNIbUQY_55YwUiqtznImZeU8FI86dAwwgyTtEy4m0viBWqNqfH4PSfeKSQBTz6G_tNFoVuLJ6OLOd3Un73-G9L9Dr6dA4u4E3rklt8a7v-CdVbP6kk7KYrnPaW2xnptlihp5DVK_yuwqnqDyCD5w&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSites +Slack Users API,https://docs.slack.dev/reference/methods/users.info/,https://docs.slack.dev/reference/methods/users.info/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ Stripe Checkout Sessions API,https://docs.stripe.com/api/checkout/sessions,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -YouTube Caption Tracks API,https://developers.google.com/youtube/v3/docs/captions,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +YouTube Caption Tracks API,https://developers.google.com/youtube/v3/docs/captions?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,,https://groups.google.com/g/youtube-api AWS RDS API,https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/,https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/,https://aws.amazon.com/security/,https://repost.aws/ -Google Firebase Authentication API,https://firebase.google.com/docs/auth?hl=vi,https://policies.google.com/privacy,https://firebase.google.com/terms,https://firebase.google.com/support?hl=ko,https://firebase.google.com/support/privacy,https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-auth-api, -Dropbox Paper API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Programmable SMS API,https://www.twilio.com/docs/messaging,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, -Zendesk User Events API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -YouTube Player API,https://developers.google.com/youtube/iframe_api_reference,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/iframe_api_reference?hl=ja,https://support.google.com/youtube/answer/2801895,https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-iframe-api, +Google Firebase Authentication API,https://firebase.google.com/docs/auth?hl=vi,https://policies.google.com/privacy,https://firebase.google.com/terms,https://firebase.google.com/support?hl=ko,,,https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-auth-api +Dropbox Paper API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Programmable SMS API,https://www.twilio.com/docs/messaging,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Zendesk User Events API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +YouTube Player API,https://developers.google.com/youtube/iframe_api_reference,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/iframe_api_reference?hl=ja,https://support.google.com/youtube/answer/2801895,,https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-iframe-api AWS Glue API,https://docs.aws.amazon.com/glue/latest/dg/aws-glue-api.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/glue/latest/dg/,https://docs.aws.amazon.com/glue/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Azure Computer Vision API,https://learn.microsoft.com/en-us/azure/ai-services/computer-vision/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, -Twilio Chat API,https://www.twilio.com/docs/chat,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, -Google Tag Manager API,https://developers.google.com/tag-platform/tag-manager?hl=fa,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/tagmanager-api,, -Facebook Messenger API,https://developers.facebook.com/docs/messenger-platform/,https://www.facebook.com/privacy/explanation,https://developers.facebook.com/terms/,https://developers.facebook.com/docs/messenger-platform/changelog,https://www.facebook.com/help/238318146535333,https://developers.facebook.com/community/, -Shopify Analytics API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, -Microsoft Power BI API,https://learn.microsoft.com/en-us/rest/api/power-bi/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/PowerBI,,, -GitLab CI/CD API,https://about.gitlab.com/privacy/,https://about.gitlab.com/terms/,https://about.gitlab.com/security/,https://forum.gitlab.com/,,, -Spotify Playlist API,https://developer.spotify.com/documentation/web-api/reference/#category-playlists,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/, -Microsoft Graph Education API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=7i82YI2UXZEHMmEDtf7kdkFX4J5t3rkO5FHcEYl0c80C18ToRhzlBFwJUdALJFUsDDodyrMIwIuC5GQ9_xg5tpOheRlKLXaZAqHCNnuOEFTaRQbX8b7pZbpnWfYk50K9mGzW2Gv5Lgwuobl0tXvNVOMET0HH--Zq1hCWy8hU8vs&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FEducation,,, +Microsoft Azure Computer Vision API,https://learn.microsoft.com/en-us/azure/ai-services/computer-vision/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices +Twilio Chat API,https://www.twilio.com/docs/chat,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Google Tag Manager API,https://developers.google.com/tag-platform/tag-manager?hl=fa,https://policies.google.com/privacy,https://developers.google.com/terms,,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/tagmanager-api +Facebook Messenger API,https://developers.facebook.com/docs/messenger-platform/,https://www.facebook.com/privacy/explanation,https://developers.facebook.com/terms/,,https://developers.facebook.com/docs/messenger-platform/changelog,https://www.facebook.com/help/238318146535333,https://developers.facebook.com/community/ +Shopify Analytics API,,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ +Microsoft Power BI API,https://learn.microsoft.com/en-us/rest/api/power-bi/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/PowerBI +GitLab CI/CD API,,https://about.gitlab.com/privacy/,https://about.gitlab.com/terms/,,,https://about.gitlab.com/security/,https://forum.gitlab.com/ +Spotify Playlist API,https://developer.spotify.com/documentation/web-api/reference/#category-playlists,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ +Microsoft Graph Education API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=7i82YI2UXZEHMmEDtf7kdkFX4J5t3rkO5FHcEYl0c80C18ToRhzlBFwJUdALJFUsDDodyrMIwIuC5GQ9_xg5tpOheRlKLXaZAqHCNnuOEFTaRQbX8b7pZbpnWfYk50K9mGzW2Gv5Lgwuobl0tXvNVOMET0HH--Zq1hCWy8hU8vs&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FEducation HubSpot Ecommerce API,https://developers.hubspot.com/docs/api/ecommerce,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ Stripe Payment Methods API,https://docs.stripe.com/api/payment_methods,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Subscription API,https://developers.google.com/youtube/v3/docs/subscriptions?hl=zh-cn,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api AWS IoT Core API,https://docs.aws.amazon.com/iot/latest/apireference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/iot/latest/developerguide/,https://docs.aws.amazon.com/iot/latest/developerguide/,https://aws.amazon.com/security/,https://repost.aws/ -Slack Bot Users API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, -Dropbox Contacts API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Zendesk Activity Stream API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -YouTube Channel Branding API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, -Shopify GraphQL API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, -Bitbucket API,https://developer.atlassian.com/cloud/bitbucket/?utm_source=%2Fbitbucket&utm_medium=302,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/atlassian-customer-agreement,https://jira.atlassian.com/projects/BCLOUD?status=new&status=open,https://www.atlassian.com/trust/data-protection,https://community.atlassian.com/forums/Bitbucket/ct-p/bitbucket, -PayPal Payments API,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://developer.paypal.com/docs/api-basics/rate-limiting/,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/,, +Slack Bot Users API,,,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Contacts API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Zendesk Activity Stream API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +YouTube Channel Branding API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Shopify GraphQL API,,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ +Bitbucket API,https://developer.atlassian.com/cloud/bitbucket/?utm_source=%2Fbitbucket&utm_medium=302,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/atlassian-customer-agreement,https://jira.atlassian.com/projects/BCLOUD?status=new&status=open,,https://www.atlassian.com/trust/data-protection,https://community.atlassian.com/forums/Bitbucket/ct-p/bitbucket +PayPal Payments API,,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://developer.paypal.com/docs/api-basics/rate-limiting/,,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/ Stripe Payment Intents API,https://docs.stripe.com/payments/payment-intents,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -Google Custom Search API,https://developers.google.com/custom-search/v1/introduction?hl=fr,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/custom-search/v1/overview?hl=fr,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/custom-search-api, -Dropbox Content API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -PayPal Subscriptions API,https://developer.paypal.com/subscriptions/about,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/,, -Spotify Ads API,https://developer.spotify.com/documentation/ads-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/,, +Google Custom Search API,https://developers.google.com/custom-search/v1/introduction?hl=fr,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/custom-search/v1/overview?hl=fr,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/custom-search-api +Dropbox Content API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +PayPal Subscriptions API,https://developer.paypal.com/subscriptions/about,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://www.paypal.com/us/legalhub/paypal/useragreement-full,,,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/ +Spotify Ads API,https://developer.spotify.com/documentation/ads-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,,,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ Reddit OAuth API,https://www.reddit.com/dev/api/oauth,https://www.reddit.com/policies/privacy-policy,https://redditinc.com/policies/user-agreement,https://www.reddit.com/dev/api/oauth#limits,https://redditinc.com/news,https://www.reddit.com/r/redditdev/, -Shopify Fulfillment API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, +Shopify Fulfillment API,,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ Instagram Basic Display API,https://developers.facebook.com/docs/instagram-basic-display-api,https://privacycenter.instagram.com/policy,https://developers.facebook.com/terms/,https://developers.facebook.com/docs/instagram-basic-display-api/overview/#rate-limits,https://developers.facebook.com/docs/instagram-basic-display-api/changelog,https://help.instagram.com/519522125107875,https://developers.facebook.com/community/ -Azure Form Recognizer API,https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/?view=doc-intel-4.0.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=GVRlRjf9i5pCIwPyWna8Ngjyavl0h999nXaLHjbOnI3j00lz9A67rHG0EArEjldfX_0O23ujSg4dKqnSDIdBmKfD30BiAoZOWASmN3QCuaXRz9kku5M0C98TA0Dqu0SgduhyFNT0sE1md8UAEysTVD_TWGwNMZHf2sIWzwjRyd4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FFormRecognizer,,, +Azure Form Recognizer API,https://learn.microsoft.com/en-us/azure/ai-services/document-intelligence/?view=doc-intel-4.0.0,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=GVRlRjf9i5pCIwPyWna8Ngjyavl0h999nXaLHjbOnI3j00lz9A67rHG0EArEjldfX_0O23ujSg4dKqnSDIdBmKfD30BiAoZOWASmN3QCuaXRz9kku5M0C98TA0Dqu0SgduhyFNT0sE1md8UAEysTVD_TWGwNMZHf2sIWzwjRyd4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FFormRecognizer Amazon Comprehend API,https://docs.aws.amazon.com/comprehend/latest/dg/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/comprehend/latest/dg/,https://docs.aws.amazon.com/comprehend/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ Dropbox Sign API,https://sign.dropbox.com/products/dropbox-sign-api,https://www.dropbox.com/privacy,https://sign.dropbox.com/about/terms,https://developers.hellosign.com/api/api-reference-welcome,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en -Slack Incoming Webhooks API,https://docs.slack.dev/messaging/sending-messages-using-incoming-webhooks/,https://docs.slack.dev/messaging/sending-messages-using-incoming-webhooks/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Google Cloud Identity API,https://docs.cloud.google.com/identity/docs?hl=pt-br,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-identity-api,, -Microsoft Teams Webhooks API,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook#rate-limits,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook#release-notes,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/MicrosoftTeams, -Slack Block Kit API,https://docs.slack.dev/block-kit/,https://docs.slack.dev/block-kit/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Slack Incoming Webhooks API,https://docs.slack.dev/messaging/sending-messages-using-incoming-webhooks/,https://docs.slack.dev/messaging/sending-messages-using-incoming-webhooks/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Google Cloud Identity API,https://docs.cloud.google.com/identity/docs?hl=pt-br,https://policies.google.com/privacy,https://developers.google.com/terms,,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-identity-api +Microsoft Teams Webhooks API,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook#rate-limits,https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook#release-notes,https://learn.microsoft.com/en-us/security,https://techcommunity.microsoft.com/category/MicrosoftTeams +Slack Block Kit API,https://docs.slack.dev/block-kit/,https://docs.slack.dev/block-kit/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ AWS Amplify API,https://docs.aws.amazon.com/amplify/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/amplify/latest/userguide/,https://docs.aws.amazon.com/amplify/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Graph Compliance API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=j09SoIc0r1G6N6P41OLqGj-aY4j1pLhqZ4UatlcElmXTzM28lE0EPX0wZtktGN5_DO41-raxFzh65VdBHskMZ5PFfZuthZ9qAqQTXHkFCdTcCEIDUzcBfliPi7kTyTBD-3pHZtODLlWQxXBHX_pQF9JazzyQ6MYR1o51vXB6sNM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FCompliance,,, -Slack Access Logs API,https://api.slack.com/admin/access-logs,https://api.slack.com/admin/access-logs#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Metadata API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Zendesk Triggers API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Spotify Web API,https://developer.spotify.com/documentation/web-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/,, -Uber Eats API,https://www.uber.com/global/zh/privacy-notice-riders-order-recipients/,https://www.uber.com/au/en/legal/general-terms-of-use/,,,,, -GitLab API,https://docs.gitlab.com/api/,https://about.gitlab.com/privacy/,https://about.gitlab.com/terms/,https://about.gitlab.com/security/,https://forum.gitlab.com/,, -Cloudinary API,https://cloudinary.com/documentation,https://cloudinary.com/privacy,https://cloudinary.com/developers/community,,,, -Bitly API,https://bitly.com/pages/privacy,https://bitly.com/pages/terms-of-service,,,,, -DocuSign API,https://developers.docusign.com/docs/esign-rest-api/,https://www.docusign.com/privacy,https://developers.docusign.com/changelog,https://www.docusign.com/trust/security,https://support.docusign.com/community,, -RingCentral API,https://developers.ringcentral.com/guide,https://www.ringcentral.com/legal/privacy-notice.html,https://developers.ringcentral.com/guide/rate-limits,https://developers.ringcentral.com/changelog,https://community.ringcentral.com/,, -Zoom Video API,https://developers.zoom.us/docs,https://www.zoom.com/en/trust/privacy/privacy-statement/,https://www.zoom.com/en/trust/terms/,https://www.zoom.com/en/trust/security/,https://devforum.zoom.us/,, +Microsoft Graph Compliance API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=j09SoIc0r1G6N6P41OLqGj-aY4j1pLhqZ4UatlcElmXTzM28lE0EPX0wZtktGN5_DO41-raxFzh65VdBHskMZ5PFfZuthZ9qAqQTXHkFCdTcCEIDUzcBfliPi7kTyTBD-3pHZtODLlWQxXBHX_pQF9JazzyQ6MYR1o51vXB6sNM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FCompliance +Slack Access Logs API,https://api.slack.com/admin/access-logs,,,https://api.slack.com/admin/access-logs#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Metadata API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Zendesk Triggers API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Spotify Web API,https://developer.spotify.com/documentation/web-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,,,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ +Uber Eats API,,https://www.uber.com/global/zh/privacy-notice-riders-order-recipients/,https://www.uber.com/au/en/legal/general-terms-of-use/,,,, +GitLab API,https://docs.gitlab.com/api/,https://about.gitlab.com/privacy/,https://about.gitlab.com/terms/,,,https://about.gitlab.com/security/,https://forum.gitlab.com/ +Cloudinary API,https://cloudinary.com/documentation,https://cloudinary.com/privacy,,,,,https://cloudinary.com/developers/community +Bitly API,,https://bitly.com/pages/privacy,https://bitly.com/pages/terms-of-service,,,, +DocuSign API,https://developers.docusign.com/docs/esign-rest-api/,https://www.docusign.com/privacy,,,https://developers.docusign.com/changelog,https://www.docusign.com/trust/security,https://support.docusign.com/community +RingCentral API,https://developers.ringcentral.com/guide,https://www.ringcentral.com/legal/privacy-notice.html,,https://developers.ringcentral.com/guide/rate-limits,https://developers.ringcentral.com/changelog,,https://community.ringcentral.com/ +Zoom Video API,https://developers.zoom.us/docs,https://www.zoom.com/en/trust/privacy/privacy-statement/,https://www.zoom.com/en/trust/terms/,,,https://www.zoom.com/en/trust/security/,https://devforum.zoom.us/ OpenWeatherMap One Call API,https://openweathermap.org/api/one-call-api,https://openweather.co.uk/privacy-policy,https://openweather.co.uk/api/files/file/Openweather_website_terms_and_conditions_of_use.pdf,https://openweathermap.org/api/one-call-api#limits,,, -Slack Workflow Builder API,https://docs.slack.dev/workflows/,https://docs.slack.dev/workflows/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Chooser API,https://www.dropbox.com/developers/chooser,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en, -Zendesk Mobile SDK API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Slack Message Events API,https://docs.slack.dev/apis/events-api/,https://docs.slack.dev/apis/events-api/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Collaboration API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Google Vision API,https://docs.cloud.google.com/vision/docs?hl=he,https://policies.google.com/privacy,https://cloud.google.com/terms,https://docs.cloud.google.com/vision/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-vision-api-discuss, +Slack Workflow Builder API,https://docs.slack.dev/workflows/,https://docs.slack.dev/workflows/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Chooser API,https://www.dropbox.com/developers/chooser,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Zendesk Mobile SDK API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Slack Message Events API,https://docs.slack.dev/apis/events-api/,https://docs.slack.dev/apis/events-api/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Collaboration API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Google Vision API,https://docs.cloud.google.com/vision/docs?hl=he,https://policies.google.com/privacy,https://cloud.google.com/terms,,https://docs.cloud.google.com/vision/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-vision-api-discuss Firebase Authentication API,https://firebase.google.com/docs/auth?hl=vi,https://policies.google.com/privacy,https://firebase.google.com/terms,https://firebase.google.com/docs/auth/limits,https://firebase.google.com/support?hl=ko,https://firebase.google.com/support/privacy,https://groups.google.com/g/firebase-talk -Intercom Conversations API,https://developers.intercom.com/docs/references/introduction,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,https://www.intercom.com/security,https://community.intercom.com/,, -Shopify Storefront API,https://shopify.dev/docs/api/storefront/latest,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/, +Intercom Conversations API,https://developers.intercom.com/docs/references/introduction,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,,,https://www.intercom.com/security,https://community.intercom.com/ +Shopify Storefront API,https://shopify.dev/docs/api/storefront/latest,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ Bitbucket Pipelines API,https://developer.atlassian.com/cloud/bitbucket/?utm_source=%2Fbitbucket%2Fapi%2F2%2Freference%2Fpipelines&utm_medium=302,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/atlassian-customer-agreement,https://developer.atlassian.com/cloud/bitbucket/?utm_source=%2Fbitbucket%2Fapi%2F2%2Freference%2Frate-limits&utm_medium=302,https://developer.atlassian.com/cloud/bitbucket/changelog,https://www.atlassian.com/trust/data-protection,https://community.atlassian.com/forums/Bitbucket/ct-p/bitbucket -Okta API,https://developer.okta.com/,https://www.okta.com/legal/privacy-policy/,https://www.okta.com/legal/,https://developer.okta.com/docs/release-notes/,https://trust.okta.com/,https://support.okta.com/help/s/community?language=en_US, -MongoDB Atlas API,https://www.mongodb.com/docs/atlas/api/,https://www.mongodb.com/legal/privacy/privacy-policy,https://www.mongodb.com/docs/atlas/release-notes/,https://www.mongodb.com/community/forums/,,, +Okta API,https://developer.okta.com/,https://www.okta.com/legal/privacy-policy/,https://www.okta.com/legal/,,https://developer.okta.com/docs/release-notes/,https://trust.okta.com/,https://support.okta.com/help/s/community?language=en_US +MongoDB Atlas API,https://www.mongodb.com/docs/atlas/api/,https://www.mongodb.com/legal/privacy/privacy-policy,,,https://www.mongodb.com/docs/atlas/release-notes/,,https://www.mongodb.com/community/forums/ Amazon Lex API,https://docs.aws.amazon.com/lex/latest/dg/API_Reference.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/lex/latest/dg/limits.html,https://docs.aws.amazon.com/lex/latest/dg/release-notes.html,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Outlook API,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=W4uWdy1RJ19lG9lJRXaCdcEAk_cL87J9O4sIhl9HIGxAm1f-w-0XGUKj10ZbLc4jMWOKt7FHhi5liUOYBTIC-SbP2giPwXv7sF4oc_9zavhglu8A3n8LECT-G8r5QLoplpZuB3khomkZc8B9nHDHBiqbWDrchDVvrFYaO5kZG4k&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookDeveloper,,, -Zendesk Explore API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Twilio Proxy API,https://www.twilio.com/docs/proxy,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Microsoft Outlook API,,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=W4uWdy1RJ19lG9lJRXaCdcEAk_cL87J9O4sIhl9HIGxAm1f-w-0XGUKj10ZbLc4jMWOKt7FHhi5liUOYBTIC-SbP2giPwXv7sF4oc_9zavhglu8A3n8LECT-G8r5QLoplpZuB3khomkZc8B9nHDHBiqbWDrchDVvrFYaO5kZG4k&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookDeveloper +Zendesk Explore API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Twilio Proxy API,https://www.twilio.com/docs/proxy,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, AWS Elastic Load Balancing API,https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/,https://docs.aws.amazon.com/elasticloadbalancing/latest/APIReference/,https://aws.amazon.com/security/,https://repost.aws/ -Google Cloud Spanner API,https://docs.cloud.google.com/spanner/docs?hl=id,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/spanner/quotas,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-spanner-api, -Microsoft Graph Bookings API,https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=n6Eng-_d_GM2InaREQ0Zkn_7wNq6l8IBGIzmHYB23RAeRFvBOobd5xvGhnDTBGqmUxKg0KQIcDAimTYMoUvMBJ3zPzGlT4eh6jCXfMORn_dyBYF3bRTRzWF8HaE8yD9RIXA0BSV8aW78UMvFnibYOlMwBSibvOM2bIk-yZlnfaM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FBookingsAPI,, -Dropbox App Folder API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Google Cloud Spanner API,https://docs.cloud.google.com/spanner/docs?hl=id,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/spanner/quotas,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-spanner-api +Microsoft Graph Bookings API,https://learn.microsoft.com/en-us/graph/api/overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=n6Eng-_d_GM2InaREQ0Zkn_7wNq6l8IBGIzmHYB23RAeRFvBOobd5xvGhnDTBGqmUxKg0KQIcDAimTYMoUvMBJ3zPzGlT4eh6jCXfMORn_dyBYF3bRTRzWF8HaE8yD9RIXA0BSV8aW78UMvFnibYOlMwBSibvOM2bIk-yZlnfaM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FBookingsAPI +Dropbox App Folder API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en HubSpot Feedback Surveys API,https://developers.hubspot.com/docs/api/feedback-surveys,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Chat Conversations API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Chat Conversations API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Invoices API,https://docs.stripe.com/api/invoices,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Channel Sections API,https://developers.google.com/youtube/v3/docs/channelSections?hl=id,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api AWS ECS API,https://docs.aws.amazon.com/AmazonECS/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonECS/latest/developerguide/service-quotas.html,https://docs.aws.amazon.com/AmazonECS/latest/developerguide/,https://aws.amazon.com/security/,https://repost.aws/ -Slack API Permissions API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +Slack API Permissions API,,,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ Twilio Lookup API,https://www.twilio.com/docs/lookup,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/docs/lookup#rate-limits,https://www.twilio.com/en-us/changelog,, Stripe Charges API,https://docs.stripe.com/api/charges,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Livestreaming API,https://developers.google.com/youtube/v3/live/getting-started?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS App Runner API,https://docs.aws.amazon.com/apprunner/latest/api/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://repost.aws/,, -Google Cloud Speech-to-Text API,https://docs.cloud.google.com/speech-to-text/docs?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/speech-to-text/docs/v1/quotas,https://cloud.google.com/speech-to-text/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-speech-to-text -Microsoft Graph Device Management API,https://learn.microsoft.com/en-us/graph/api/resources/device?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=DTid1B__UHheVVpJgLvs2rIAaSFGwwhihmSKHXZJvFbPYS_79TAxN2g0vvlP9HNajOEjjCBugo2kcOLt3gr8QLyWVQmVy5ZEcFu8ERVaXq_u0MDBFE_u5fDLXIU_Jgr_2ok5sGfsorKDofMrk5c4PiJU1nGhDVs8N-Iwa_YJFIw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDeviceManagement,, -Zendesk NPS API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Salesforce API,https://developer.salesforce.com/docs,https://www.salesforce.com/company/legal/privacy/?bc=HL,https://www.salesforce.com/company/legal/?bc=HL,https://security.salesforce.com/,https://trailhead.salesforce.com/trailblazer-community/feed,, +AWS App Runner API,https://docs.aws.amazon.com/apprunner/latest/api/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,,,https://aws.amazon.com/security/,https://repost.aws/ +Google Cloud Speech-to-Text API,https://docs.cloud.google.com/speech-to-text/docs?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/speech-to-text/docs/v1/quotas?hl=pt-br,https://cloud.google.com/speech-to-text/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-speech-to-text +Microsoft Graph Device Management API,https://learn.microsoft.com/en-us/graph/api/resources/device?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=DTid1B__UHheVVpJgLvs2rIAaSFGwwhihmSKHXZJvFbPYS_79TAxN2g0vvlP9HNajOEjjCBugo2kcOLt3gr8QLyWVQmVy5ZEcFu8ERVaXq_u0MDBFE_u5fDLXIU_Jgr_2ok5sGfsorKDofMrk5c4PiJU1nGhDVs8N-Iwa_YJFIw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDeviceManagement +Zendesk NPS API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Salesforce API,https://developer.salesforce.com/docs,https://www.salesforce.com/company/legal/privacy/?bc=HL,https://www.salesforce.com/company/legal/?bc=HL,,,https://security.salesforce.com/,https://trailhead.salesforce.com/trailblazer-community/feed Discord API,https://docs.discord.com/developers/intro,https://discord.com/privacy,https://discord.com/terms,https://docs.discord.com/developers/topics/rate-limits,https://docs.discord.com/developers/change-log,https://discord.com/security,https://discord.com/developers/community -Microsoft Azure API,https://learn.microsoft.com/en-us/azure/developer/,https://www.microsoft.com/en-us/privacy/privacystatement,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=rPYOxdILNGwP_nvfLLJS1XSyL-rMuyEVDVMnB2w9wnhcRG5YETcu1KRWybnfgImAfrtKY3YnmQWWzyw_LXqRi5xIgmqDgCWfBQI3b0upF4QqzHOFzGJ5u8GMCelLqw03N4FTZ5q97ghEM7sDKyakdedOheyMW6pcIlx2zaTHpEo&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureDeveloper,,,, -Microsoft Graph Drive API,https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=WhIYCTe2qUkMqn3vheoxSPlcbtV-PawqSoTMWP-XlLcl6ummOWVxvA2dBCImRgDn30AKhCIJwgUlfXRBUT9qqHy7GkDMmY63XEvKRDgu4HPm2u7hutQ84DiKURgXXmsU0mltyJTzzjtWDvuLRAIGdQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDrive,, -Slack Search API,https://docs.slack.dev/reference/methods/search.all/,https://docs.slack.dev/reference/methods/search.all/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Thumbnails API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Microsoft Azure API,https://learn.microsoft.com/en-us/azure/developer/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=rPYOxdILNGwP_nvfLLJS1XSyL-rMuyEVDVMnB2w9wnhcRG5YETcu1KRWybnfgImAfrtKY3YnmQWWzyw_LXqRi5xIgmqDgCWfBQI3b0upF4QqzHOFzGJ5u8GMCelLqw03N4FTZ5q97ghEM7sDKyakdedOheyMW6pcIlx2zaTHpEo&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureDeveloper +Microsoft Graph Drive API,https://learn.microsoft.com/en-us/graph/api/resources/drive?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=WhIYCTe2qUkMqn3vheoxSPlcbtV-PawqSoTMWP-XlLcl6ummOWVxvA2dBCImRgDn30AKhCIJwgUlfXRBUT9qqHy7GkDMmY63XEvKRDgu4HPm2u7hutQ84DiKURgXXmsU0mltyJTzzjtWDvuLRAIGdQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDrive +Slack Search API,https://docs.slack.dev/reference/methods/search.all/,https://docs.slack.dev/reference/methods/search.all/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Thumbnails API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en HubSpot CRM Timeline API,https://developers.hubspot.com/docs/api/crm-timeline,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Activities API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Stripe Payment Links API,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, -YouTube Super Chat API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, -Slack Workflows API,https://docs.slack.dev/workflows/,https://docs.slack.dev/workflows/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Twilio Autopilot API,https://www.twilio.com/docs,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, +Zendesk Activities API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Stripe Payment Links API,,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +YouTube Super Chat API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Slack Workflows API,https://docs.slack.dev/workflows/,https://docs.slack.dev/workflows/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Twilio Autopilot API,https://www.twilio.com/docs,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Calendar API,https://developers.hubspot.com/docs/api/calendar,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ AWS Simple Queue Service (SQS) API,https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/,https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-release-notes.html,https://aws.amazon.com/security/,https://repost.aws/ Google Cloud Monitoring API,https://docs.cloud.google.com/monitoring/api/v3?hl=de,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/monitoring/quotas?hl=es-419,https://docs.cloud.google.com/monitoring/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-monitoring-api -Slack Admin Audit API,https://api.slack.com/admin/audit-logs,https://api.slack.com/admin/audit-logs#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +Slack Admin Audit API,https://api.slack.com/admin/audit-logs,,,https://api.slack.com/admin/audit-logs#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ HubSpot Tickets API,https://developers.hubspot.com/docs/api/tickets,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Ticketing API,https://developer.zendesk.com/documentation/ticketing/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,, -Google Cloud AutoML API,https://docs.cloud.google.com/gemini-enterprise-agent-platform,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/automl-api,, -Zendesk Suspended Tickets API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk Ticketing API,https://developer.zendesk.com/documentation/ticketing/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Google Cloud AutoML API,https://docs.cloud.google.com/gemini-enterprise-agent-platform,https://policies.google.com/privacy,https://developers.google.com/terms,,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/automl-api +Zendesk Suspended Tickets API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ YouTube Search API,https://developers.google.com/youtube/v3/docs/search?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api AWS Config API,https://docs.aws.amazon.com/config/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/config/latest/APIReference/,https://docs.aws.amazon.com/config/latest/developerguide/,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Graph Directory API,https://learn.microsoft.com/en-us/graph/api/resources/directory?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=eRLbTLwJ3I77DFvxxyZA4GB5IxfXUfpvzAdK3DRNvyNnvOOneKwvf3RDkRm4_DmlxujoVWUlV9oKdJgNlMJ4PyvRLQQ2nES6Xi1wfON_z-d2_sFfiSKzSfKqfa-apSW7zfLUeI2QOKqlDemEuN9MxOe9DszxdbKw74BpMe4wd5s&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDirectory,, -Slack Admin Analytics API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, -Dropbox Spaces API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio Wireless API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, +Microsoft Graph Directory API,https://learn.microsoft.com/en-us/graph/api/resources/directory?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=eRLbTLwJ3I77DFvxxyZA4GB5IxfXUfpvzAdK3DRNvyNnvOOneKwvf3RDkRm4_DmlxujoVWUlV9oKdJgNlMJ4PyvRLQQ2nES6Xi1wfON_z-d2_sFfiSKzSfKqfa-apSW7zfLUeI2QOKqlDemEuN9MxOe9DszxdbKw74BpMe4wd5s&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDirectory +Slack Admin Analytics API,,,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Spaces API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio Wireless API,,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, HubSpot Owners API,https://developers.hubspot.com/docs/api-reference/legacy/crm/owners/guide,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Web Widget API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Microsoft Graph Notes API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote,, -Slack API Testing API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, +Zendesk Web Widget API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Microsoft Graph Notes API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote +Slack API Testing API,,,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ HubSpot Workflows API,https://developers.hubspot.com/docs/api/workflows,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Email API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Google Cloud Run API,https://docs.cloud.google.com/run/docs,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/run/quotas,https://docs.cloud.google.com/run/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-run-api +Zendesk Email API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Google Cloud Run API,https://docs.cloud.google.com/run/docs?hl=fr,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/run/quotas?hl=de,https://docs.cloud.google.com/run/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-run-api AWS Translate API,https://docs.aws.amazon.com/translate/latest/dg/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/translate/latest/dg/,https://docs.aws.amazon.com/translate/latest/dg/,https://aws.amazon.com/security/,https://repost.aws/ -Google Firebase Cloud Messaging API,https://firebase.google.com/docs/cloud-messaging?hl=pt-br,https://policies.google.com/privacy,https://firebase.google.com/terms/,https://firebase.google.com/support?hl=ko,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-cloud-messaging, +Google Firebase Cloud Messaging API,https://firebase.google.com/docs/cloud-messaging?hl=pt-br,https://policies.google.com/privacy,https://firebase.google.com/terms/,https://firebase.google.com/support?hl=ko,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-cloud-messaging HubSpot Task Queues API,https://developers.hubspot.com/docs/api/tasks/queues,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Stripe Bank Accounts API,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, +Stripe Bank Accounts API,,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Comment Threads API,https://developers.google.com/youtube/v3/docs/commentThreads?hl=ja,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api AWS DynamoDB API,https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ServiceQuotas.html,https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ServiceQuotas.html#release-notes,https://aws.amazon.com/security/,https://repost.aws/ -Slack Pins API,https://docs.slack.dev/reference/methods/pins.add/,https://docs.slack.dev/reference/methods/pins.add/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Zendesk Reporting API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Google Firebase Realtime Database API,https://firebase.google.com/docs/database?hl=he,https://policies.google.com/privacy,https://firebase.google.com/terms/,https://firebase.google.com/support?hl=ko,https://firebase.google.com/support/privacy,https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-realtime-database, -Slack Messages API,https://docs.slack.dev/messaging/,https://docs.slack.dev/messaging/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Zendesk App Framework API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Slack Pins API,https://docs.slack.dev/reference/methods/pins.add/,https://docs.slack.dev/reference/methods/pins.add/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Zendesk Reporting API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Google Firebase Realtime Database API,https://firebase.google.com/docs/database?hl=he,https://policies.google.com/privacy,https://firebase.google.com/terms/,https://firebase.google.com/support?hl=ko,,,https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-realtime-database +Slack Messages API,https://docs.slack.dev/messaging/,https://docs.slack.dev/messaging/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Zendesk App Framework API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Discounts API,https://docs.stripe.com/api/discounts,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ YouTube Playlist Items API,https://developers.google.com/youtube/v3/docs/playlistItems?hl=fr,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -AWS IAM Identity Center API,https://docs.aws.amazon.com/singlesignon/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://aws.amazon.com/security/,https://repost.aws/,, -Microsoft Graph Messages API,https://learn.microsoft.com/en-us/graph/api/resources/message?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=Cs5q0H2HwBYrOQJy4A-6pVScGk-6VS0GZgfUcMo9GsLiwgbQs5Eto_tqJCZa57QNuovIQzWZuWSL61TYED5GnUdpCd2wOiRy6bkzujXPFXyns9Ox1tkVfSWa5Fp-EiVDCxEbjvor9z00HCdfYYqI3sJQR_B09m7TbfuE8lQ4Vnc&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FMessages,, -Dropbox Authentication API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Twilio API for WhatsApp,https://www.twilio.com/docs/whatsapp,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, -Zendesk Permissions API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Google Cloud Bigtable API,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/bigtable/quotas,https://docs.cloud.google.com/bigtable/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-bigtable-api, -Twilio Call Feedback API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, -Zendesk Integration API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +AWS IAM Identity Center API,https://docs.aws.amazon.com/singlesignon/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,,,https://aws.amazon.com/security/,https://repost.aws/ +Microsoft Graph Messages API,https://learn.microsoft.com/en-us/graph/api/resources/message?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=Cs5q0H2HwBYrOQJy4A-6pVScGk-6VS0GZgfUcMo9GsLiwgbQs5Eto_tqJCZa57QNuovIQzWZuWSL61TYED5GnUdpCd2wOiRy6bkzujXPFXyns9Ox1tkVfSWa5Fp-EiVDCxEbjvor9z00HCdfYYqI3sJQR_B09m7TbfuE8lQ4Vnc&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FMessages +Dropbox Authentication API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Twilio API for WhatsApp,https://www.twilio.com/docs/whatsapp,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Zendesk Permissions API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Google Cloud Bigtable API,,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/bigtable/quotas,https://docs.cloud.google.com/bigtable/docs/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-bigtable-api +Twilio Call Feedback API,,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Zendesk Integration API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ YouTube Playlist API,https://developers.google.com/youtube/v3/docs/playlists?hl=es-419,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Figma API,https://developers.figma.com/docs/rest-api/,https://www.figma.com/legal/privacy/,https://www.figma.com/developers/api-rate-limits,https://www.figma.com/developers/changelog,https://www.figma.com/security,https://forum.figma.com, -Cloudflare API,https://developers.cloudflare.com,https://www.cloudflare.com/privacypolicy,https://www.cloudflare.com/terms,https://www.cloudflare.com/cybersecurity/,https://community.cloudflare.com,, -eBay API,https://developer.ebay.com/docs,https://developer.ebay.com/api-docs/static/rate-limits.html,https://developer.ebay.com/api-docs/static/release-notes.html,https://community.ebay.com,,, +Figma API,https://developers.figma.com/docs/rest-api/,https://www.figma.com/legal/privacy/,,https://www.figma.com/developers/api-rate-limits,https://www.figma.com/developers/changelog,https://www.figma.com/security,https://forum.figma.com +Cloudflare API,https://developers.cloudflare.com,https://www.cloudflare.com/privacypolicy,https://www.cloudflare.com/terms,,,https://www.cloudflare.com/cybersecurity/,https://community.cloudflare.com +eBay API,https://developer.ebay.com/docs,,,https://developer.ebay.com/api-docs/static/rate-limits.html,https://developer.ebay.com/api-docs/static/release-notes.html,,https://community.ebay.com Mailchimp API,https://mailchimp.com/developer,https://www.intuit.com/privacy/statement/,https://mailchimp.com/legal/terms,https://mailchimp.com/developer/,https://mailchimp.com/developer/release-notes,https://mailchimp.com/about/security,https://mailchimp.com/developer/ Twitch API,https://dev.twitch.tv/docs,https://legal.twitch.com/legal/privacy-policy,https://legal.twitch.com/legal/terms-of-service,https://dev.twitch.tv/docs/api/guide/#rate-limits,https://dev.twitch.tv/docs/change-log,https://www.twitch.tv/p/security,https://discuss.dev.twitch.com/ -Google AdSense API,https://developers.google.com/adsense/management/,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-adsense-api,, +Google AdSense API,https://developers.google.com/adsense/management/,https://policies.google.com/privacy,https://developers.google.com/terms,,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-adsense-api AWS Simple Notification Service (SNS) API,https://docs.aws.amazon.com/sns/latest/api/,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/sns/latest/dg/,https://docs.aws.amazon.com/sns/latest/dg/sns-release-notes.html,https://aws.amazon.com/security/,https://repost.aws/ -Slack Audit Logs API,https://api.slack.com/admin/audit-logs,https://api.slack.com/admin/audit-logs#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Zendesk Ticket Fields API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Slack Audit Logs API,https://api.slack.com/admin/audit-logs,,,https://api.slack.com/admin/audit-logs#rate-limits,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Zendesk Ticket Fields API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Google Analytics Reporting API,https://developers.google.com/analytics/legacy/universal-analytics?hl=fa,https://policies.google.com/privacy,https://developers.google.com/analytics/terms/provisioning/en?hl=hi,https://developers.google.com/analytics/legacy/universal-analytics?hl=bn,https://developers.google.com/analytics/legacy/universal-analytics?hl=zh-cn,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/analytics-api -YouTube Data API v3,https://developers.google.com/youtube/v3,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://cloud.google.com/security,https://groups.google.com/g/youtube-api +YouTube Data API v3,https://developers.google.com/youtube/v3?hl=pt-br,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://cloud.google.com/security,https://groups.google.com/g/youtube-api SendGrid Email API,https://www.twilio.com/docs/sendgrid,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/docs/sendgrid/for-developers,, -Azure Blob Storage API,https://learn.microsoft.com/en-us/azure/storage/blobs/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=U_P5gT2XW39BQ6O8XZzh7kJsBEbfzCmJZfbwi_CoWS0Eo5sTduR4DvTqviM7Lw3up5kCZ2-v4-lacz7IpnHXJJq-37C7Rv_jfetZYADA-7jjYY9vxUvCjn40y_qnW1hbx2rx32K3-FLnf_E-Y7belEzS-RzpzaC-Hau--s3PDiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureStorage,,, -Intercom Lead API,https://developers.intercom.com/docs/references/introduction,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,https://www.intercom.com/security,https://community.intercom.com/,, -Shopify Inventory API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, +Azure Blob Storage API,https://learn.microsoft.com/en-us/azure/storage/blobs/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=U_P5gT2XW39BQ6O8XZzh7kJsBEbfzCmJZfbwi_CoWS0Eo5sTduR4DvTqviM7Lw3up5kCZ2-v4-lacz7IpnHXJJq-37C7Rv_jfetZYADA-7jjYY9vxUvCjn40y_qnW1hbx2rx32K3-FLnf_E-Y7belEzS-RzpzaC-Hau--s3PDiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureStorage +Intercom Lead API,https://developers.intercom.com/docs/references/introduction,https://www.intercom.com/legal/privacy,https://www.intercom.com/legal/terms-and-policies,,,https://www.intercom.com/security,https://community.intercom.com/ +Shopify Inventory API,,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ Trello Cards API,https://developer.atlassian.com/cloud/trello/rest/api-group-cards/,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/atlassian-customer-agreement,https://developer.atlassian.com/cloud/trello/guides/rest-api/rate-limits,https://developer.atlassian.com/cloud/trello/changelog,https://trello.com/security,https://community.atlassian.com/forums/Trello/ct-p/trello AWS Elastic Transcoder API,https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/what-is.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/limits.html,https://docs.aws.amazon.com/elastictranscoder/latest/developerguide/whats-new.html,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Dynamics API,https://learn.microsoft.com/en-us/dynamics365/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://community.dynamics.com/,,, -Slack RTM API,https://docs.slack.dev/legacy/legacy-rtm-api/,https://docs.slack.dev/legacy/legacy-rtm-api/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Slack Analytics API,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,,, -Dropbox Discovery API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Microsoft Dynamics API,https://learn.microsoft.com/en-us/dynamics365/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://community.dynamics.com/ +Slack RTM API,https://docs.slack.dev/legacy/legacy-rtm-api/,https://docs.slack.dev/legacy/legacy-rtm-api/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Slack Analytics API,,,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Discovery API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en HubSpot E-commerce API,https://developers.hubspot.com/docs/api/ecommerce,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk SLA Breaches API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Zendesk SLA Breaches API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Tax Rates API,https://docs.stripe.com/api/tax_rates,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -YouTube Notifications API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api, +YouTube Notifications API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api AWS Identity and Access Management (IAM) API,https://docs.aws.amazon.com/IAM/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_iam-quotas.html,https://docs.aws.amazon.com/IAM/latest/UserGuide/,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Graph User API,https://learn.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=90qNwhmKFR98VL6RWt6ZI2eVEt655YJECxnKUl3avLhtoHHpaspMcCbozrUIvkJ6qLulvvhDlVtjue5mp7As-byJ9ZK1MEB_ySJnO8BYilslPA4zvFJKA1FosFOSzcKcCcrSQ8D-hhYHQ2ifSBMFuw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FUser,, -Slack OAuth API,https://docs.slack.dev/authentication/,https://docs.slack.dev/authentication/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Dropbox Audit Logs API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Zendesk Customer Satisfaction API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Twilio Call Insights API,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,,, -Dropbox Admin API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Zendesk Webhooks API,https://developer.zendesk.com/documentation/webhooks/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,, -Microsoft OneNote API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote,, -Zendesk Users API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Microsoft Azure Speech Service API,https://learn.microsoft.com/en-us/azure/ai-services/speech-service/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices,,, -Zendesk Talk API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Microsoft Graph User API,https://learn.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=90qNwhmKFR98VL6RWt6ZI2eVEt655YJECxnKUl3avLhtoHHpaspMcCbozrUIvkJ6qLulvvhDlVtjue5mp7As-byJ9ZK1MEB_ySJnO8BYilslPA4zvFJKA1FosFOSzcKcCcrSQ8D-hhYHQ2ifSBMFuw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FUser +Slack OAuth API,https://docs.slack.dev/authentication/,https://docs.slack.dev/authentication/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Dropbox Audit Logs API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Zendesk Customer Satisfaction API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Twilio Call Insights API,,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Dropbox Admin API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Zendesk Webhooks API,https://developer.zendesk.com/documentation/webhooks/,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Microsoft OneNote API,https://learn.microsoft.com/en-us/graph/api/resources/onenote?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote +Zendesk Users API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Microsoft Azure Speech Service API,https://learn.microsoft.com/en-us/azure/ai-services/speech-service/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices +Zendesk Talk API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ YouTube Channel API,https://developers.google.com/youtube/v3/docs/channels?hl=fr,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api PayPal Orders API,https://developer.paypal.com/api/orders/v2,https://www.paypal.com/us/legalhub/paypal/privacy-full,https://developer.paypal.com/docs/api/terms-of-service,https://developer.paypal.com/docs/api/limits,https://developer.paypal.com/docs/api/changelog,https://www.paypal.com/us/security/learn-about-paypal-secure-technology,https://www.paypal-community.com/ AWS S3 API,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonS3/latest/userguide/optimizing-performance.html#optimizing-performance-rate-limit,https://docs.aws.amazon.com/AmazonS3/latest/API/Welcome.html#release_notes,https://aws.amazon.com/security/,https://repost.aws/ -Twilio SMS API,https://www.twilio.com/docs/messaging,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, -Dropbox Files API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, +Twilio SMS API,https://www.twilio.com/docs/messaging,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Dropbox Files API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en OpenAI DALL-E API,https://developers.openai.com/api/docs/guides/images-vision,https://openai.com/policies/privacy-policy/,https://openai.com/policies/terms-of-use/,https://platform.openai.com/docs/guides/images/rate-limits,https://platform.openai.com/docs/release-notes,https://openai.com/security-and-privacy/,https://community.openai.com/ -Azure Machine Learning API,https://learn.microsoft.com/en-us/azure/machine-learning/?view=azureml-api-2,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=zROw5wHr3lmISbg6g36HwY-keOIjuN3WcImyANj04T07XoKgNJoWmbythyoTptCaooz5Z-Ccr_R8ww6yUtPbwomO4WUeH6NF4X5lnaEWUxenrR7uBiAPKwTIRNqUkoV1EZ_O52JmKFgUC-FmnGR21IHT8q-xMyXthFwXY9z3nS4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureMachineLearning,,, +Azure Machine Learning API,https://learn.microsoft.com/en-us/azure/machine-learning/?view=azureml-api-2,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=zROw5wHr3lmISbg6g36HwY-keOIjuN3WcImyANj04T07XoKgNJoWmbythyoTptCaooz5Z-Ccr_R8ww6yUtPbwomO4WUeH6NF4X5lnaEWUxenrR7uBiAPKwTIRNqUkoV1EZ_O52JmKFgUC-FmnGR21IHT8q-xMyXthFwXY9z3nS4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureMachineLearning Adobe Creative Cloud API,https://developer.adobe.com/creative-cloud/,,,,,, GitHub Actions API,https://docs.github.com/en/rest/actions,https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement,https://docs.github.com/en/site-policy/github-terms/github-terms-of-service,https://docs.github.com/en/rest/using-the-rest-api/getting-started-with-the-rest-api,https://github.blog/changelog/,https://github.com/security,https://github.com/orgs/community/discussions/ -Shopify Discounts API,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/,, -Figma File API,https://developers.figma.com/docs/rest-api/,https://www.figma.com/legal/privacy/,https://www.figma.com/developers/api/rate-limits,https://www.figma.com/developers/changelog,https://www.figma.com/security,https://forum.figma.com/, -MongoDB Realm API,https://www.mongodb.com/legal/privacy/privacy-policy,https://www.mongodb.com/company/contact/mongodb-vulnerability-disclosure-policy,https://www.mongodb.com/community,,,, +Shopify Discounts API,,https://www.shopify.com/legal/privacy,https://www.shopify.com/legal/terms,,https://shopify.dev/changelog,https://www.shopify.com/security,https://community.shopify.com/ +Figma File API,https://developers.figma.com/docs/rest-api/,https://www.figma.com/legal/privacy/,,https://www.figma.com/developers/api/rate-limits,https://www.figma.com/developers/changelog,https://www.figma.com/security,https://forum.figma.com/ +MongoDB Realm API,,https://www.mongodb.com/legal/privacy/privacy-policy,,,,https://www.mongodb.com/company/contact/mongodb-vulnerability-disclosure-policy,https://www.mongodb.com/community OpenAI GPT API,https://developers.openai.com/api/docs,https://openai.com/policies/privacy-policy/,https://openai.com/policies/terms-of-use/,https://developers.openai.com/api/docs/guides/rate-limits,https://platform.openai.com/docs/release-notes,https://openai.com/security-and-privacy/,https://community.openai.com/ -Dropbox File Metadata API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Microsoft Azure Key Vault API,https://learn.microsoft.com/en-us/azure/key-vault/,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=ZiUGw1Odf4aFfXyPOPzZCHl1O8_PBRUyFBRAqMVHRFuNNMhDSb59uUSNRhOKw7kgMI3W5lMX7v4m0r3CjvVbA2Wvq8m3cGza8MZqZYrCFxeNx0E1qGgs4fcAXyhqD1Fp8PHGh63FsGfhd4NJeKqdHdPnvleqmVVOIyF0ZxrfJUI&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureKeyVault,,, -Slack API (General),https://docs.slack.dev/,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Google Cloud BigQuery API,https://docs.cloud.google.com/bigquery/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/bigquery/quotas,https://cloud.google.com/bigquery/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-bigquery -YouTube Content ID API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-partner-api,,, -Dropbox Data Loss Prevention API,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en,, -Zendesk Metrics API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -YouTube Content Owners API,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,,, +Dropbox File Metadata API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Microsoft Azure Key Vault API,https://learn.microsoft.com/en-us/azure/key-vault/,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=ZiUGw1Odf4aFfXyPOPzZCHl1O8_PBRUyFBRAqMVHRFuNNMhDSb59uUSNRhOKw7kgMI3W5lMX7v4m0r3CjvVbA2Wvq8m3cGza8MZqZYrCFxeNx0E1qGgs4fcAXyhqD1Fp8PHGh63FsGfhd4NJeKqdHdPnvleqmVVOIyF0ZxrfJUI&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureKeyVault +Slack API (General),https://docs.slack.dev/,,,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Google Cloud BigQuery API,https://docs.cloud.google.com/bigquery/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://docs.cloud.google.com/bigquery/quotas?hl=ja,https://cloud.google.com/bigquery/release-notes,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-bigquery +YouTube Content ID API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,,,https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-partner-api +Dropbox Data Loss Prevention API,,https://www.dropbox.com/privacy,https://www.dropbox.com/terms,,https://www.dropboxforum.com/t5/Announcements/bg-p/101003000,https://www.dropbox.com/features/security,https://community.dropbox.com/en +Zendesk Metrics API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +YouTube Content Owners API,,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,,,https://groups.google.com/g/youtube-api AWS App Mesh API,https://docs.aws.amazon.com/app-mesh/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/app-mesh/latest/userguide/,https://docs.aws.amazon.com/app-mesh/latest/userguide/,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Graph Teamwork API,https://learn.microsoft.com/en-us/graph/api/resources/teamwork?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=d3aTO6UGEiexyOD3fkeKfNxcOYXuff0Xb-wVIub1jQuwXs902HC2VyM-933PJaiDIkY6XBxNPt3-_h2WiO6l_dgqqxCF7D_HNOnnT-YYJhleMAgLFnggUSw_YiizF3Gokh9qkbGhuDVcgeOvMlTOYTHP7hGxa0R1iH4Ql7ZysFk&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FTeamwork,, -Slack User API,https://docs.slack.dev/reference/methods/users.list/,https://docs.slack.dev/reference/methods/users.list/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Zendesk Custom Fields API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Microsoft Graph Teamwork API,https://learn.microsoft.com/en-us/graph/api/resources/teamwork?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=d3aTO6UGEiexyOD3fkeKfNxcOYXuff0Xb-wVIub1jQuwXs902HC2VyM-933PJaiDIkY6XBxNPt3-_h2WiO6l_dgqqxCF7D_HNOnnT-YYJhleMAgLFnggUSw_YiizF3Gokh9qkbGhuDVcgeOvMlTOYTHP7hGxa0R1iH4Ql7ZysFk&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FTeamwork +Slack User API,https://docs.slack.dev/reference/methods/users.list/,https://docs.slack.dev/reference/methods/users.list/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Zendesk Custom Fields API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ Stripe Customers API,https://docs.stripe.com/api/customers,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ -Xero API,https://developer.xero.com/documentation/getting-started-guide/,https://www.xero.com/au/legal/privacy/,https://www.xero.com/au/legal/terms/,https://developer.xero.com/changelog,,, +Xero API,https://developer.xero.com/documentation/getting-started-guide/,https://www.xero.com/au/legal/privacy/,https://www.xero.com/au/legal/terms/,,https://developer.xero.com/changelog,, GitHub GraphQL API,https://docs.github.com/en/graphql,https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement,https://docs.github.com/en/site-policy/github-terms/github-terms-of-service,https://docs.github.com/en/graphql/overview/rate-limits-and-query-limits-for-the-graphql-api,https://github.blog/changelog/,https://github.com/security,https://github.com/orgs/community/discussions/ -Google Maps Places API,https://developers.google.com/maps/documentation/places/web-service?hl=zh-tw,https://policies.google.com/privacy,https://cloud.google.com/maps-platform/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-maps-api,, -Slack Bot API,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,,, +Google Maps Places API,https://developers.google.com/maps/documentation/places/web-service?hl=zh-tw,https://policies.google.com/privacy,https://cloud.google.com/maps-platform/terms,,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/google-maps-api +Slack Bot API,,,,https://docs.slack.dev/apis/web-api/rate-limits/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ AWS CloudWatch API,https://docs.aws.amazon.com/AmazonCloudWatch/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch_limits.html,https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/,https://aws.amazon.com/security/,https://repost.aws/ HubSpot Contact Properties API,https://developers.hubspot.com/docs/api/contact-properties,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -YouTube Data v3 API,https://developers.google.com/youtube/v3,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api -Microsoft Graph Identity API,https://learn.microsoft.com/en-us/graph/api/resources/identity?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=tQSeWcrYantrCh-3DazJ-Qrs7zgUCL4gPraOHkMrXV9nLJxokK_d22YM5gZ3uduWQYIkLPVxAYZvbd-W9MI_UHy0aKmgcQKBRBLzsltrOJZ6ZB_EYVH-G6PAvuxYY9LqObCamB3Ytrf4zLX7CxAUI9IBPOr4gsmohaNIa8Q_B-w&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FIdentity,, -Slack Scopes API,https://docs.slack.dev/reference/scopes/,https://docs.slack.dev/reference/scopes/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, +YouTube Data v3 API,https://developers.google.com/youtube/v3?hl=pt-br,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/v3/getting-started?hl=pt-br,https://developers.google.com/youtube/v3/revision_history?hl=ar,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api +Microsoft Graph Identity API,https://learn.microsoft.com/en-us/graph/api/resources/identity?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=tQSeWcrYantrCh-3DazJ-Qrs7zgUCL4gPraOHkMrXV9nLJxokK_d22YM5gZ3uduWQYIkLPVxAYZvbd-W9MI_UHy0aKmgcQKBRBLzsltrOJZ6ZB_EYVH-G6PAvuxYY9LqObCamB3Ytrf4zLX7CxAUI9IBPOr4gsmohaNIa8Q_B-w&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FIdentity +Slack Scopes API,https://docs.slack.dev/reference/scopes/,https://docs.slack.dev/reference/scopes/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ HubSpot Tasks API,https://developers.hubspot.com/docs/api/tasks,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ -Zendesk Insights API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, -Stripe Payments API,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/, -Google Cloud Tasks API,https://docs.cloud.google.com/tasks/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-tasks-api,, -Google Maps Geolocation API,https://developers.google.com/maps/documentation/geolocation/overview?hl=hi,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/geolocation/usage-and-billing?hl=es-419,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api-geolocation, -Slack Status API,https://docs.slack.dev/reference/methods/users.getPresence/,https://docs.slack.dev/reference/methods/users.getPresence/,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/,, -Microsoft Graph Teams API,https://learn.microsoft.com/en-us/graph/api/resources/teams-api-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=8MRaro1axFVPLv-5Jw7hsabra579tmzGn2McuMYY8p6krWq5v85WyJhQDQs301KpZwMpEuPq2y8KA_70w5zH7JE1E_QNA-qO_HSjSINYxL7dcr_P6Wqk8bh9RsStJz4YJ8O--gsQxhW45zkhlv1MBQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FTeams,, +Zendesk Insights API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ +Stripe Payments API,,https://stripe.com/au/privacy,https://stripe.com/au/legal,https://docs.stripe.com/rate-limits,https://docs.stripe.com/changelog,https://docs.stripe.com/security,https://support.stripe.com/ +Google Cloud Tasks API,https://docs.cloud.google.com/tasks/docs/reference/rest,https://policies.google.com/privacy,https://developers.google.com/terms,,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-tasks-api +Google Maps Geolocation API,https://developers.google.com/maps/documentation/geolocation/overview?hl=hi,https://policies.google.com/privacy,https://developers.google.com/terms,https://developers.google.com/maps/documentation/geolocation/usage-and-billing?hl=es-419,,https://cloud.google.com/security,https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api-geolocation +Slack Status API,https://docs.slack.dev/reference/methods/users.getPresence/,https://docs.slack.dev/reference/methods/users.getPresence/,,,https://docs.slack.dev/changelog/,https://slack.com/intl/en-au/trust/security,https://slackcommunity.com/ +Microsoft Graph Teams API,https://learn.microsoft.com/en-us/graph/api/resources/teams-api-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=8MRaro1axFVPLv-5Jw7hsabra579tmzGn2McuMYY8p6krWq5v85WyJhQDQs301KpZwMpEuPq2y8KA_70w5zH7JE1E_QNA-qO_HSjSINYxL7dcr_P6Wqk8bh9RsStJz4YJ8O--gsQxhW45zkhlv1MBQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FTeams HubSpot Email Marketing API,https://developers.hubspot.com/docs/api/email-marketing,https://legal.hubspot.com/privacy-policy,https://legal.hubspot.com/terms-of-service,https://developers.hubspot.com/docs/developer-tooling/platform/usage-guidelines,https://developers.hubspot.com/changelog,https://legal.hubspot.com/security,https://community.hubspot.com/ YouTube Data Insights API,https://developers.google.com/youtube/analytics?hl=id,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://developers.google.com/youtube/reporting?hl=id,https://developers.google.com/youtube/reporting,https://support.google.com/youtube/answer/2801895,https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-analytics Trello Webhooks API,https://developer.atlassian.com/cloud/trello/rest/api-group-webhooks/,https://www.atlassian.com/legal/privacy-policy,https://www.atlassian.com/legal/atlassian-customer-agreement,https://developer.atlassian.com/cloud/trello/guides/rest-api/rate-limits,https://developer.atlassian.com/cloud/trello/changelog,https://trello.com/security,https://community.atlassian.com/forums/Trello/ct-p/trello -Azure DevOps API,https://learn.microsoft.com/en-us/rest/api/azure/devops/?view=azure-devops-rest-7.2,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=Cgaoc2ik8LTspiHuGZeeQSl4YBnS1jv8nPujNaXjD1ZqICxMo_UHgKScVQGMbo_jmAGze3tWjlpO3GP0q4xuMpbmUzW5yBCuY_xyq2BsqlTK0_JGB6uvbzA_VEnOKjv-tBN3wLkp-nSf02ueHDtE4rNPYsqmHj5S0JjOxt_UIJM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureDevOps,,, +Azure DevOps API,https://learn.microsoft.com/en-us/rest/api/azure/devops/?view=azure-devops-rest-7.2,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=Cgaoc2ik8LTspiHuGZeeQSl4YBnS1jv8nPujNaXjD1ZqICxMo_UHgKScVQGMbo_jmAGze3tWjlpO3GP0q4xuMpbmUzW5yBCuY_xyq2BsqlTK0_JGB6uvbzA_VEnOKjv-tBN3wLkp-nSf02ueHDtE4rNPYsqmHj5S0JjOxt_UIJM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureDevOps GitHub Checks API,https://docs.github.com/en/rest/checks,https://docs.github.com/en/site-policy/privacy-policies/github-general-privacy-statement,https://docs.github.com/en/site-policy/github-terms/github-terms-of-service,https://docs.github.com/en/rest/using-the-rest-api/getting-started-with-the-rest-api,https://github.blog/changelog/,https://github.com/security,https://github.com/orgs/community/discussions/ -Spotify Follow API,https://developer.spotify.com/documentation/web-api/reference/#category-follow,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/, -Spotify API,https://developer.spotify.com/documentation/web-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/, +Spotify Follow API,https://developer.spotify.com/documentation/web-api/reference/#category-follow,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ +Spotify API,https://developer.spotify.com/documentation/web-api/,https://www.spotify.com/us/legal/privacy-policy/,https://www.spotify.com/us/legal/end-user-agreement/,https://developer.spotify.com/documentation/web-api/#rate-limiting,,https://www.spotify.com/us/legal/security/,https://developer.spotify.com/community/ Amazon Kinesis API,https://docs.aws.amazon.com/kinesis/latest/APIReference/Welcome.html,https://aws.amazon.com/privacy/,https://aws.amazon.com/service-terms/,https://docs.aws.amazon.com/streams/latest/dev/service-sizes-and-limits.html,https://docs.aws.amazon.com/kinesis/latest/APIReference/Welcome.html#release_notes,https://aws.amazon.com/security/,https://repost.aws/ -Microsoft Azure Bot Service API,https://learn.microsoft.com/en-us/azure/bot-service/?view=azure-bot-service-4.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JR0rIU5PpefkLwJmdBjteOAy3YJ0DmKB9DLuCjwuAmHrn-HI_vlxwUQfQs5P1frDbeBOUAy0y_3nY3OVz33DZHR5EaaEQaFGaM1VGLq4naYMpyLDCIpo3GY1XpkYPCO7uWIwADpq1DpD9IO6LbKeHEIVop0hOiYyWgC-fAhT8JE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FBotFramework,,, -YouTube Live API,https://developers.google.com/youtube/v3/live/getting-started?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,https://groups.google.com/g/youtube-api,, -Microsoft Graph To-Do API,https://learn.microsoft.com/en-us/graph/api/resources/todo-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=eA5z9uH5wD78dGoyLIBbKp_MkAwag9X4HJEMPZuCaYEg68YdTTE9LFFfvuos8pvSuWcJQaPQtcQcwYY7ez4KAGSIPDuPx0MwBVy3bdsHHPYojLMlxr21Cot-45ApAfbaGhR4N2Vw-oae22aCL8bcHA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FToDo,, -Twilio Email API,https://www.twilio.com/docs/sendgrid,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,https://www.twilio.com/en-us/changelog,,, -Microsoft Graph Calendar Events API,https://learn.microsoft.com/en-us/graph/api/resources/event?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,https://learn.microsoft.com/en-us/graph/throttling,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=2JHWBkEFTQl7qFFT4QORVaL3WsuG8uakeO2q4DXhhl4tmPE3Py9AwG31nOJFLQAzcG3h0bhXMAzRJXnQj2_E1SGMjtdbD_7zonGs9fh4cAODRvtXtBv4mL4pPAXugdPyOPshWu0aXU5mVgklHudZXY7t3_qJ0N7Or93NwZ_3oiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FCalendarEvents,, -Zendesk SLA Policies API,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,https://community.zendesk.com/,,,, +Microsoft Azure Bot Service API,https://learn.microsoft.com/en-us/azure/bot-service/?view=azure-bot-service-4.0,https://www.microsoft.com/en-us/privacy/privacystatement,,,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JR0rIU5PpefkLwJmdBjteOAy3YJ0DmKB9DLuCjwuAmHrn-HI_vlxwUQfQs5P1frDbeBOUAy0y_3nY3OVz33DZHR5EaaEQaFGaM1VGLq4naYMpyLDCIpo3GY1XpkYPCO7uWIwADpq1DpD9IO6LbKeHEIVop0hOiYyWgC-fAhT8JE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FBotFramework +YouTube Live API,https://developers.google.com/youtube/v3/live/getting-started?hl=zh-tw,https://policies.google.com/privacy,https://developers.google.com/youtube/terms/api-services-terms-of-service,https://support.google.com/youtube/answer/2801895,,,https://groups.google.com/g/youtube-api +Microsoft Graph To-Do API,https://learn.microsoft.com/en-us/graph/api/resources/todo-overview?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=eA5z9uH5wD78dGoyLIBbKp_MkAwag9X4HJEMPZuCaYEg68YdTTE9LFFfvuos8pvSuWcJQaPQtcQcwYY7ez4KAGSIPDuPx0MwBVy3bdsHHPYojLMlxr21Cot-45ApAfbaGhR4N2Vw-oae22aCL8bcHA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FToDo +Twilio Email API,https://www.twilio.com/docs/sendgrid,https://www.twilio.com/en-us/legal/privacy,https://www.twilio.com/en-us/legal/tos,,https://www.twilio.com/en-us/changelog,, +Microsoft Graph Calendar Events API,https://learn.microsoft.com/en-us/graph/api/resources/event?view=graph-rest-1.0,https://www.microsoft.com/en-us/privacy/privacystatement,,https://learn.microsoft.com/en-us/graph/throttling,,https://learn.microsoft.com/en-us/security,https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=2JHWBkEFTQl7qFFT4QORVaL3WsuG8uakeO2q4DXhhl4tmPE3Py9AwG31nOJFLQAzcG3h0bhXMAzRJXnQj2_E1SGMjtdbD_7zonGs9fh4cAODRvtXtBv4mL4pPAXugdPyOPshWu0aXU5mVgklHudZXY7t3_qJ0N7Or93NwZ_3oiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FCalendarEvents +Zendesk SLA Policies API,,https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/,https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/,,,,https://community.zendesk.com/ diff --git a/datasets/link-health-history.csv b/datasets/link-health-history.csv index 2e55170..c6a8697 100644 --- a/datasets/link-health-history.csv +++ b/datasets/link-health-history.csv @@ -6,3 +6,10 @@ date,column,checked,ok,moved,dead,blocked,error,other,llms_txt_hosts,llms_txt_se 2026-08-27,Release Notes,307,275,1,19,2,3,7,167,79,371,562 2026-08-27,Security Policy,233,225,0,1,1,1,5,167,79,371,562 2026-08-27,Developer Community/Forum,174,170,0,0,1,1,2,167,79,371,562 +2026-08-28,Official_Documentation_URL,415,360,11,30,7,0,7,167,79,562,562 +2026-08-28,Privacy Policy,530,522,0,1,4,0,3,167,79,562,562 +2026-08-28,Terms of Service,432,422,0,2,2,0,6,167,79,562,562 +2026-08-28,Rate Limiting Policy,309,286,6,8,7,0,2,167,79,562,562 +2026-08-28,Release Notes,363,294,0,60,2,0,7,167,79,562,562 +2026-08-28,Security Policy,434,419,0,4,3,0,8,167,79,562,562 +2026-08-28,Developer Community/Forum,501,487,0,0,1,6,7,167,79,562,562 diff --git a/datasets/link-health.json b/datasets/link-health.json index af37d6a..3cdc105 100644 --- a/datasets/link-health.json +++ b/datasets/link-health.json @@ -1,5 +1,5 @@ { - "generatedAt": "2026-08-27T08:22:38.533Z", + "generatedAt": "2026-08-28T01:49:04.712Z", "csv": "api-docs-urls.csv", "rows": 562, "columns": [ @@ -11,192 +11,91 @@ "Security Policy", "Developer Community/Forum" ], - "distinctUrls": 889, + "distinctUrls": 888, "alignment": { "rowsComplete": 562, "rowsIncomplete": 0, - "rowsUsableForStatistics": 371, + "rowsUsableForStatistics": 562, "shareComplete": 1, "fieldCountHistogram": { "8": 562 }, - "documentationCellLooksLikeAnotherColumn": 191, - "shiftedExamples": [ - { - "api": "Microsoft Graph People API", - "looksLike": "Privacy Policy" - }, - { - "api": "Slack Interactivity API", - "looksLike": "Developer Community/Forum" - }, - { - "api": "Dropbox File Request API", - "looksLike": "Privacy Policy" - }, - { - "api": "Zendesk Support API", - "looksLike": "Privacy Policy" - }, - { - "api": "Google Places API", - "looksLike": "Privacy Policy" - }, - { - "api": "Slack App Directory API", - "looksLike": "Developer Community/Forum" - }, - { - "api": "Dropbox API Explorer", - "looksLike": "Privacy Policy" - }, - { - "api": "Zendesk Guide API", - "looksLike": "Privacy Policy" - }, - { - "api": "Microsoft Graph Notifications API", - "looksLike": "Privacy Policy" - }, - { - "api": "Slack Usergroups API", - "looksLike": "Developer Community/Forum" - }, - { - "api": "Zendesk SLA API", - "looksLike": "Privacy Policy" - }, - { - "api": "Uber API", - "looksLike": "Privacy Policy" - }, - { - "api": "Slack Files API", - "looksLike": "Developer Community/Forum" - }, - { - "api": "Twilio Media Streams API", - "looksLike": "Privacy Policy" - }, - { - "api": "Dropbox Transfer API", - "looksLike": "Privacy Policy" - }, - { - "api": "Zendesk Search API", - "looksLike": "Privacy Policy" - }, - { - "api": "Shopify Bulk Operations API", - "looksLike": "Privacy Policy" - }, - { - "api": "Slack SCIM API", - "looksLike": "Developer Community/Forum" - }, - { - "api": "Slack Shortcuts API", - "looksLike": "Release Notes" - }, - { - "api": "Dropbox Team API", - "looksLike": "Privacy Policy" - }, - { - "api": "Zendesk Messaging API", - "looksLike": "Privacy Policy" - }, - { - "api": "Microsoft Graph Tasks API", - "looksLike": "Privacy Policy" - }, - { - "api": "Slack Channels API", - "looksLike": "Developer Community/Forum" - }, - { - "api": "Dropbox File Requests API", - "looksLike": "Privacy Policy" - }, - { - "api": "YouTube Live Broadcasts API", - "looksLike": "Privacy Policy" - } - ], + "documentationCellLooksLikeAnotherColumn": 0, + "shiftedExamples": [], "note": "Per-column statistics cover rows that carry every column AND whose documentation cell does not look like another column. Incomplete rows omit fields rather than blanking them, so their columns are shifted and cannot be attributed to a named column." }, "totals": { - "checked": 2181, - "ok": 2003, - "moved": 48, - "dead": 68, - "blocked": 17, - "error": 5, + "checked": 2984, + "ok": 2790, + "moved": 17, + "dead": 105, + "blocked": 26, + "error": 6, "other": 40 }, "byColumn": { "Official_Documentation_URL": { - "checked": 371, - "ok": 314, - "moved": 18, + "checked": 415, + "ok": 360, + "moved": 11, "dead": 30, - "blocked": 2, + "blocked": 7, "error": 0, "other": 7 }, "Privacy Policy": { - "checked": 369, - "ok": 358, + "checked": 530, + "ok": 522, "moved": 0, "dead": 1, - "blocked": 5, + "blocked": 4, "error": 0, - "other": 5 + "other": 3 }, "Terms of Service": { - "checked": 366, - "ok": 352, + "checked": 432, + "ok": 422, "moved": 0, - "dead": 4, - "blocked": 3, + "dead": 2, + "blocked": 2, "error": 0, - "other": 7 + "other": 6 }, "Rate Limiting Policy": { - "checked": 361, - "ok": 309, - "moved": 29, - "dead": 13, - "blocked": 3, + "checked": 309, + "ok": 286, + "moved": 6, + "dead": 8, + "blocked": 7, "error": 0, - "other": 7 + "other": 2 }, "Release Notes": { - "checked": 307, - "ok": 275, - "moved": 1, - "dead": 19, + "checked": 363, + "ok": 294, + "moved": 0, + "dead": 60, "blocked": 2, - "error": 3, + "error": 0, "other": 7 }, "Security Policy": { - "checked": 233, - "ok": 225, + "checked": 434, + "ok": 419, "moved": 0, - "dead": 1, - "blocked": 1, - "error": 1, - "other": 5 + "dead": 4, + "blocked": 3, + "error": 0, + "other": 8 }, "Developer Community/Forum": { - "checked": 174, - "ok": 170, + "checked": 501, + "ok": 487, "moved": 0, "dead": 0, "blocked": 1, - "error": 1, - "other": 2 + "error": 6, + "other": 7 } }, "llmsTxt": { @@ -204,17 +103,12 @@ "hostsServing": 79, "share": 0.4731, "byHost": { - "docs.aws.amazon.com": { - "status": 200, - "serves": true, - "outcome": "ok" - }, "developers.openai.com": { "status": 200, "serves": true, "outcome": "ok" }, - "login.microsoftonline.com": { + "platform.openai.com": { "status": 404, "serves": false, "outcome": "dead" @@ -224,37 +118,37 @@ "serves": false, "outcome": "dead" }, - "repost.aws": { + "aws.amazon.com": { "status": 404, "serves": false, "outcome": "dead" }, - "platform.openai.com": { - "status": 404, - "serves": false, - "outcome": "dead" + "docs.aws.amazon.com": { + "status": 200, + "serves": true, + "outcome": "ok" }, - "aws.amazon.com": { + "login.microsoftonline.com": { "status": 404, "serves": false, "outcome": "dead" }, - "policies.google.com": { + "developers.google.com": { "status": 404, "serves": false, "outcome": "dead" }, - "learn.microsoft.com": { + "repost.aws": { "status": 404, "serves": false, "outcome": "dead" }, - "slack.com": { + "www.dropbox.com": { "status": 200, "serves": true, "outcome": "ok" }, - "www.dropbox.com": { + "slack.com": { "status": 200, "serves": true, "outcome": "ok" @@ -264,7 +158,7 @@ "serves": false, "outcome": "dead" }, - "developers.google.com": { + "openai.com": { "status": 404, "serves": false, "outcome": "dead" @@ -274,17 +168,22 @@ "serves": false, "outcome": "dead" }, - "www.zendesk.com": { - "status": 200, - "serves": true, - "outcome": "ok" + "policies.google.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "learn.microsoft.com": { + "status": 404, + "serves": false, + "outcome": "dead" }, "slackcommunity.com": { "status": 200, "serves": true, "outcome": "ok" }, - "openai.com": { + "community.hubspot.com": { "status": 404, "serves": false, "outcome": "dead" @@ -294,32 +193,32 @@ "serves": true, "outcome": "ok" }, - "community.hubspot.com": { - "status": 404, - "serves": false, - "outcome": "dead" + "docs.stripe.com": { + "status": 200, + "serves": true, + "outcome": "ok" }, - "cloud.google.com": { - "status": 404, - "serves": false, - "outcome": "dead" + "stripe.com": { + "status": 200, + "serves": true, + "outcome": "ok" }, - "api.slack.com": { + "support.stripe.com": { "status": 200, "serves": true, "outcome": "ok" }, - "www.dropboxforum.com": { + "cloud.google.com": { "status": 404, "serves": false, "outcome": "dead" }, - "community.dropbox.com": { + "community.zendesk.com": { "status": 404, "serves": false, "outcome": "dead" }, - "docs.stripe.com": { + "api.slack.com": { "status": 200, "serves": true, "outcome": "ok" @@ -329,36 +228,46 @@ "serves": true, "outcome": "ok" }, - "www.heroku.com": { - "status": 200, - "serves": true, - "outcome": "ok" + "developers.hubspot.com": { + "status": 404, + "serves": false, + "outcome": "dead" }, - "support.stripe.com": { + "www.heroku.com": { "status": 200, "serves": true, "outcome": "ok" }, - "adobedocs.github.io": { + "community.dropbox.com": { "status": 404, "serves": false, "outcome": "dead" }, - "stripe.com": { + "www.zendesk.com": { "status": 200, "serves": true, "outcome": "ok" }, - "developers.hubspot.com": { + "www.dropboxforum.com": { "status": 404, "serves": false, "outcome": "dead" }, - "community.zendesk.com": { + "adobedocs.github.io": { "status": 404, "serves": false, "outcome": "dead" }, + "www.whatsapp.com": { + "status": 400, + "serves": false, + "outcome": "other" + }, + "www.salesforce.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, "legal.hubspot.com": { "status": 404, "serves": false, @@ -374,27 +283,12 @@ "serves": true, "outcome": "ok" }, - "www.salesforce.com": { - "status": 200, - "serves": true, - "outcome": "moved" - }, - "www.whatsapp.com": { - "status": 400, - "serves": false, - "outcome": "other" - }, - "www.linkedin.com": { + "www.yelp.com": { "status": 404, "serves": false, "outcome": "dead" }, - "www.intuit.com": { - "status": 400, - "serves": false, - "outcome": "other" - }, - "www.yelp.com": { + "www.linkedin.com": { "status": 404, "serves": false, "outcome": "dead" @@ -404,17 +298,22 @@ "serves": true, "outcome": "ok" }, - "developer.intuit.com": { + "www.eventbrite.com.au": { "status": 404, "serves": false, "outcome": "dead" }, - "www.eventbrite.com.au": { + "www.intuit.com": { + "status": 400, + "serves": false, + "outcome": "other" + }, + "developer.intuit.com": { "status": 404, "serves": false, "outcome": "dead" }, - "community.box.com": { + "www.eventbrite.com": { "status": 404, "serves": false, "outcome": "dead" @@ -424,17 +323,22 @@ "serves": false, "outcome": "dead" }, - "developer.zendesk.com": { + "community.box.com": { "status": 404, "serves": false, "outcome": "dead" }, - "firebase.google.com": { + "docs.x.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developer.zendesk.com": { "status": 404, "serves": false, "outcome": "dead" }, - "www.eventbrite.com": { + "firebase.google.com": { "status": 404, "serves": false, "outcome": "dead" @@ -444,21 +348,36 @@ "serves": false, "outcome": "blocked" }, + "www.paypal.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, "techcommunity.microsoft.com": { "status": 404, "serves": false, "outcome": "dead" }, - "docs.x.com": { + "developer.paypal.com": { "status": 200, "serves": true, "outcome": "ok" }, + "support.google.com": { + "status": 200, + "serves": true, + "outcome": "moved" + }, "docs.cloud.google.com": { "status": 404, "serves": false, "outcome": "dead" }, + "x.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, "policy.pinterest.com": { "status": 403, "serves": false, @@ -469,12 +388,17 @@ "serves": true, "outcome": "ok" }, - "www.shopify.com": { + "devcommunity.x.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "cloud.ibm.com": { "status": 200, "serves": true, - "outcome": "ok" + "outcome": "moved" }, - "www.paypal.com": { + "community.shopify.com": { "status": 200, "serves": true, "outcome": "ok" @@ -484,37 +408,27 @@ "serves": false, "outcome": "other" }, - "x.com": { + "www.facebook.com": { + "status": 400, + "serves": false, + "outcome": "other" + }, + "www.shopify.com": { "status": 200, "serves": true, "outcome": "ok" }, - "devcommunity.x.com": { - "status": 404, - "serves": false, - "outcome": "dead" - }, - "www.ibm.com": { + "developer.zoominfo.com": { "status": 404, "serves": false, "outcome": "dead" }, - "community.shopify.com": { - "status": 200, - "serves": true, - "outcome": "ok" - }, - "cloud.ibm.com": { - "status": 200, - "serves": true, - "outcome": "moved" - }, - "developer.paypal.com": { + "www.atlassian.com": { "status": 200, "serves": true, "outcome": "ok" }, - "developer.zoominfo.com": { + "www.ibm.com": { "status": 404, "serves": false, "outcome": "dead" @@ -524,62 +438,57 @@ "serves": false, "outcome": "dead" }, - "www.facebook.com": { - "status": 400, - "serves": false, - "outcome": "other" - }, - "www.atlassian.com": { + "help.twilio.com": { "status": 200, "serves": true, "outcome": "ok" }, - "help.twilio.com": { + "www.wix.com": { "status": 200, "serves": true, "outcome": "ok" }, - "developers.asana.com": { + "trello.com": { "status": 200, "serves": true, "outcome": "ok" }, - "developer.atlassian.com": { + "community.pinterest.biz": { "status": 404, "serves": false, "outcome": "dead" }, - "www.wix.com": { + "community.atlassian.com": { "status": 200, "serves": true, "outcome": "ok" }, - "help.twitter.com": { + "developer.atlassian.com": { "status": 404, "serves": false, "outcome": "dead" }, - "community.atlassian.com": { - "status": 200, - "serves": true, - "outcome": "ok" - }, - "community.pinterest.biz": { + "help.twitter.com": { "status": 404, "serves": false, "outcome": "dead" }, - "trello.com": { + "developers.asana.com": { "status": 200, "serves": true, "outcome": "ok" }, - "support.google.com": { + "www.zoominfo.com": { "status": 200, "serves": true, - "outcome": "moved" + "outcome": "ok" }, - "www.zoominfo.com": { + "www.youtube.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developer.payoneer.com": { "status": 200, "serves": true, "outcome": "ok" @@ -589,22 +498,17 @@ "serves": true, "outcome": "ok" }, - "developer.payoneer.com": { + "www.reddit.com": { "status": 200, "serves": true, "outcome": "ok" }, - "www.youtube.com": { - "status": 404, - "serves": false, - "outcome": "dead" - }, "asana.com": { "status": 200, "serves": true, "outcome": "ok" }, - "www.reddit.com": { + "www.intercom.com": { "status": 200, "serves": true, "outcome": "ok" @@ -614,32 +518,22 @@ "serves": false, "outcome": "dead" }, - "plaid.com": { - "status": 200, - "serves": true, - "outcome": "ok" - }, - "www.intercom.com": { - "status": 200, - "serves": true, - "outcome": "ok" - }, "docs.github.com": { "status": 200, "serves": true, "outcome": "ok" }, - "github.com": { + "plaid.com": { "status": 200, "serves": true, "outcome": "ok" }, - "developers.notion.com": { + "github.com": { "status": 200, "serves": true, "outcome": "ok" }, - "github.blog": { + "developers.tiktok.com": { "status": 404, "serves": false, "outcome": "dead" @@ -649,52 +543,47 @@ "serves": true, "outcome": "ok" }, - "www.tiktok.com": { + "www.notion.so": { "status": 200, "serves": true, - "outcome": "moved" + "outcome": "ok" }, - "community.intercom.com": { + "privacycenter.instagram.com": { "status": 404, "serves": false, "outcome": "dead" }, - "calendly.com": { + "telegram.org": { "status": 200, "serves": true, "outcome": "ok" }, - "www.notion.so": { - "status": 200, - "serves": true, - "outcome": "ok" + "community.intercom.com": { + "status": 404, + "serves": false, + "outcome": "dead" }, "help.instagram.com": { "status": 400, "serves": false, "outcome": "other" }, - "redditinc.com": { - "status": 404, - "serves": false, - "outcome": "dead" - }, - "telegram.org": { + "www.tiktok.com": { "status": 200, "serves": true, - "outcome": "ok" + "outcome": "moved" }, - "developer.withairbnb.com": { + "advertising.amazon.com": { "status": 404, "serves": false, "outcome": "dead" }, - "advertising.amazon.com": { + "github.blog": { "status": 404, "serves": false, "outcome": "dead" }, - "community.withairbnb.com": { + "developer.withairbnb.com": { "status": 404, "serves": false, "outcome": "dead" @@ -704,12 +593,17 @@ "serves": false, "outcome": "dead" }, - "privacycenter.instagram.com": { + "developers.notion.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "community.withairbnb.com": { "status": 404, "serves": false, "outcome": "dead" }, - "www.etsy.com": { + "redditinc.com": { "status": 404, "serves": false, "outcome": "dead" @@ -724,42 +618,37 @@ "serves": true, "outcome": "ok" }, - "developer.calendly.com": { + "calendly.com": { "status": 200, "serves": true, "outcome": "ok" }, + "www.etsy.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, "community.etsy.com": { "status": 200, "serves": true, "outcome": "ok" }, - "developers.tiktok.com": { - "status": 404, - "serves": false, - "outcome": "dead" + "medium.engineering": { + "status": 200, + "serves": true, + "outcome": "moved" }, "docs.foursquare.com": { "status": 404, "serves": false, "outcome": "dead" }, - "www.airbnb.com": { - "status": 404, - "serves": false, - "outcome": "dead" - }, - "medium.engineering": { - "status": 200, - "serves": true, - "outcome": "moved" - }, "dev.twitch.tv": { "status": 403, "serves": false, "outcome": "blocked" }, - "www.zoom.com": { + "www.airbnb.com": { "status": 404, "serves": false, "outcome": "dead" @@ -769,12 +658,17 @@ "serves": false, "outcome": "dead" }, + "www.zoom.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, "foursquare.com": { "status": 404, "serves": false, "outcome": "dead" }, - "sendbird.com": { + "www.twitch.tv": { "status": 200, "serves": true, "outcome": "ok" @@ -784,7 +678,12 @@ "serves": true, "outcome": "ok" }, - "developer.spotify.com": { + "help.netflix.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "sendbird.com": { "status": 200, "serves": true, "outcome": "ok" @@ -799,27 +698,22 @@ "serves": false, "outcome": "dead" }, - "about.gitlab.com": { + "developers.zoom.us": { "status": 200, "serves": true, "outcome": "ok" }, - "www.twitch.tv": { + "about.gitlab.com": { "status": 200, "serves": true, "outcome": "ok" }, - "help.netflix.com": { - "status": 404, - "serves": false, - "outcome": "dead" - }, - "developers.zoom.us": { + "developer.spotify.com": { "status": 200, "serves": true, "outcome": "ok" }, - "sign.dropbox.com": { + "bitly.com": { "status": 404, "serves": false, "outcome": "dead" @@ -829,42 +723,37 @@ "serves": false, "outcome": "dead" }, - "bitly.com": { - "status": 404, - "serves": false, - "outcome": "dead" - }, "legal.twitch.com": { "status": 404, "serves": false, "outcome": "dead" }, - "netflixtechblog.com": { + "www.spotify.com": { "status": 200, "serves": true, "outcome": "moved" }, - "cloudinary.com": { + "secure.na1.adobesign.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "docs.gitlab.com": { "status": 200, "serves": true, "outcome": "ok" }, - "www.spotify.com": { + "netflixtechblog.com": { "status": 200, "serves": true, "outcome": "moved" }, - "docs.gitlab.com": { - "status": 200, - "serves": true, - "outcome": "ok" - }, - "secure.na1.adobesign.com": { + "community.dynamics.com": { "status": 404, "serves": false, "outcome": "dead" }, - "community.dynamics.com": { + "sign.dropbox.com": { "status": 404, "serves": false, "outcome": "dead" @@ -874,37 +763,27 @@ "serves": false, "outcome": "dead" }, - "www.ringcentral.com": { + "cloudinary.com": { "status": 200, "serves": true, "outcome": "ok" }, - "developers.hellosign.com": { + "www.ringcentral.com": { "status": 200, "serves": true, "outcome": "ok" }, - "developers.ringcentral.com": { - "status": 404, - "serves": false, - "outcome": "dead" - }, "jira.atlassian.com": { "status": 200, "serves": true, "outcome": "moved" }, - "community.ringcentral.com": { + "developers.docusign.com": { "status": 404, "serves": false, "outcome": "dead" }, - "developer.salesforce.com": { - "status": 200, - "serves": true, - "outcome": "ok" - }, - "developer.okta.com": { + "community.ringcentral.com": { "status": 404, "serves": false, "outcome": "dead" @@ -914,22 +793,17 @@ "serves": false, "outcome": "dead" }, - "www.docusign.com": { + "developer.okta.com": { "status": 404, "serves": false, - "outcome": "dead" - }, - "support.okta.com": { - "status": 401, - "serves": false, - "outcome": "blocked" + "outcome": "dead" }, - "docs.discord.com": { + "developer.salesforce.com": { "status": 200, "serves": true, "outcome": "ok" }, - "developers.docusign.com": { + "developers.ringcentral.com": { "status": 404, "serves": false, "outcome": "dead" @@ -939,15 +813,30 @@ "serves": true, "outcome": "ok" }, + "openweathermap.org": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "www.docusign.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "support.okta.com": { + "status": 401, + "serves": false, + "outcome": "blocked" + }, "security.salesforce.com": { "status": 404, "serves": false, "outcome": "dead" }, - "openweathermap.org": { + "support.docusign.com": { "status": 200, "serves": true, - "outcome": "ok" + "outcome": "moved" }, "developers.cloudflare.com": { "status": 200, @@ -964,42 +853,37 @@ "serves": true, "outcome": "ok" }, - "www.figma.com": { - "status": 404, - "serves": false, - "outcome": "dead" - }, "developer.ebay.com": { "status": 403, "serves": false, "outcome": "blocked" }, - "mailchimp.com": { + "discord.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "docs.discord.com": { "status": 200, "serves": true, "outcome": "ok" }, - "www.mongodb.com": { + "mailchimp.com": { "status": 200, "serves": true, "outcome": "ok" }, - "discord.com": { - "status": 404, - "serves": false, - "outcome": "dead" - }, - "support.docusign.com": { + "community.cloudflare.com": { "status": 200, "serves": true, - "outcome": "moved" + "outcome": "ok" }, - "www.xero.com": { + "www.mongodb.com": { "status": 200, "serves": true, "outcome": "ok" }, - "community.cloudflare.com": { + "www.xero.com": { "status": 200, "serves": true, "outcome": "ok" @@ -1009,16 +893,16 @@ "serves": true, "outcome": "ok" }, - "developer.xero.com": { - "status": 404, - "serves": false, - "outcome": "dead" - }, "trailhead.salesforce.com": { "status": 200, "serves": true, "outcome": "ok" }, + "www.figma.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, "forum.figma.com": { "status": 404, "serves": false, @@ -1034,6 +918,21 @@ "serves": false, "outcome": "dead" }, + "developer.xero.com": { + "status": 404, + "serves": false, + "outcome": "dead" + }, + "developers.hellosign.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, + "developer.calendly.com": { + "status": 200, + "serves": true, + "outcome": "ok" + }, "www.paypal-community.com": { "status": 0, "serves": false, @@ -1052,7 +951,7 @@ }, { "api": "Amazon Advertising API", - "column": "Release Notes", + "column": "Security Policy", "url": "https://advertising.amazon.com/security", "outcome": "other", "status": 504, @@ -1084,7 +983,7 @@ }, { "api": "Asana API", - "column": "Release Notes", + "column": "Security Policy", "url": "https://asana.com/security", "outcome": "blocked", "status": 403, @@ -1132,8 +1031,7 @@ }, { "api": "Dropbox Activity API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1141,8 +1039,7 @@ }, { "api": "Dropbox Admin API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1150,8 +1047,7 @@ }, { "api": "Dropbox API Explorer", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1159,7 +1055,7 @@ }, { "api": "Dropbox API v1", - "column": "Rate Limiting Policy", + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1167,7 +1063,7 @@ }, { "api": "Dropbox API v2", - "column": "Rate Limiting Policy", + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1175,8 +1071,7 @@ }, { "api": "Dropbox App Folder API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1184,8 +1079,7 @@ }, { "api": "Dropbox Audit Logs API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1193,8 +1087,7 @@ }, { "api": "Dropbox Authentication API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1202,8 +1095,7 @@ }, { "api": "Dropbox Badge API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1211,7 +1103,7 @@ }, { "api": "Dropbox Business API", - "column": "Rate Limiting Policy", + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1219,7 +1111,7 @@ }, { "api": "Dropbox Chooser API", - "column": "Rate Limiting Policy", + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1227,8 +1119,7 @@ }, { "api": "Dropbox Collaboration API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1236,8 +1127,7 @@ }, { "api": "Dropbox Contacts API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1245,8 +1135,7 @@ }, { "api": "Dropbox Content API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1254,8 +1143,7 @@ }, { "api": "Dropbox Content Explorer API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1263,8 +1151,7 @@ }, { "api": "Dropbox Content Management API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1272,8 +1159,7 @@ }, { "api": "Dropbox Core API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1281,8 +1167,7 @@ }, { "api": "Dropbox Data Loss Prevention API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1290,8 +1175,7 @@ }, { "api": "Dropbox Discovery API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1299,8 +1183,7 @@ }, { "api": "Dropbox Events API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1308,8 +1191,7 @@ }, { "api": "Dropbox File Metadata API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1317,8 +1199,7 @@ }, { "api": "Dropbox File Request API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1326,8 +1207,7 @@ }, { "api": "Dropbox File Requests API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1335,8 +1215,7 @@ }, { "api": "Dropbox Files API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1344,8 +1223,7 @@ }, { "api": "Dropbox Folder API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1353,8 +1231,7 @@ }, { "api": "Dropbox Metadata API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1362,8 +1239,7 @@ }, { "api": "Dropbox Notifications API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1371,8 +1247,7 @@ }, { "api": "Dropbox Paper API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1380,8 +1255,7 @@ }, { "api": "Dropbox Revisions API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1389,8 +1263,7 @@ }, { "api": "Dropbox Search API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1398,8 +1271,7 @@ }, { "api": "Dropbox Security API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1407,8 +1279,7 @@ }, { "api": "Dropbox Shared Links API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1416,8 +1287,7 @@ }, { "api": "Dropbox Sharing API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1433,8 +1303,7 @@ }, { "api": "Dropbox Spaces API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1442,8 +1311,7 @@ }, { "api": "Dropbox Sync API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1451,8 +1319,7 @@ }, { "api": "Dropbox Team API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1460,8 +1327,7 @@ }, { "api": "Dropbox Team Auditing API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1469,8 +1335,7 @@ }, { "api": "Dropbox Thumbnails API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1478,8 +1343,7 @@ }, { "api": "Dropbox Transfer API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1487,8 +1351,7 @@ }, { "api": "Dropbox User API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Release Notes", "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", "outcome": "dead", "status": 404, @@ -1504,7 +1367,7 @@ }, { "api": "eBay API", - "column": "Privacy Policy", + "column": "Rate Limiting Policy", "url": "https://developer.ebay.com/api-docs/static/rate-limits.html", "outcome": "blocked", "status": 403, @@ -1512,7 +1375,7 @@ }, { "api": "eBay API", - "column": "Terms of Service", + "column": "Release Notes", "url": "https://developer.ebay.com/api-docs/static/release-notes.html", "outcome": "blocked", "status": 403, @@ -1616,7 +1479,7 @@ }, { "api": "Facebook Marketing API", - "column": "Rate Limiting Policy", + "column": "Release Notes", "url": "https://developers.facebook.com/docs/marketing-api/changelog", "outcome": "other", "status": 400, @@ -1624,7 +1487,7 @@ }, { "api": "Facebook Marketing API", - "column": "Release Notes", + "column": "Security Policy", "url": "https://www.facebook.com/help/238318146535333", "outcome": "other", "status": 400, @@ -1632,7 +1495,7 @@ }, { "api": "Facebook Marketing API", - "column": "Security Policy", + "column": "Developer Community/Forum", "url": "https://developers.facebook.com/community/", "outcome": "other", "status": 400, @@ -1664,7 +1527,7 @@ }, { "api": "Facebook Messenger API", - "column": "Rate Limiting Policy", + "column": "Release Notes", "url": "https://developers.facebook.com/docs/messenger-platform/changelog", "outcome": "other", "status": 400, @@ -1672,7 +1535,7 @@ }, { "api": "Facebook Messenger API", - "column": "Release Notes", + "column": "Security Policy", "url": "https://www.facebook.com/help/238318146535333", "outcome": "other", "status": 400, @@ -1680,7 +1543,7 @@ }, { "api": "Facebook Messenger API", - "column": "Security Policy", + "column": "Developer Community/Forum", "url": "https://developers.facebook.com/community/", "outcome": "other", "status": 400, @@ -1688,7 +1551,7 @@ }, { "api": "Figma API", - "column": "Terms of Service", + "column": "Rate Limiting Policy", "url": "https://www.figma.com/developers/api-rate-limits", "outcome": "dead", "status": 404, @@ -1696,7 +1559,7 @@ }, { "api": "Figma API", - "column": "Rate Limiting Policy", + "column": "Release Notes", "url": "https://www.figma.com/developers/changelog", "outcome": "dead", "status": 404, @@ -1704,7 +1567,7 @@ }, { "api": "Figma File API", - "column": "Terms of Service", + "column": "Rate Limiting Policy", "url": "https://www.figma.com/developers/api/rate-limits", "outcome": "dead", "status": 404, @@ -1712,27 +1575,27 @@ }, { "api": "Figma File API", - "column": "Rate Limiting Policy", + "column": "Release Notes", "url": "https://www.figma.com/developers/changelog", "outcome": "dead", "status": 404, "finalUrl": "https://www.figma.com/developers/changelog/" }, { - "api": "Google Ads API", + "api": "Firebase API", "column": "Official_Documentation_URL", - "url": "https://developers.google.com/google-ads/api", + "url": "https://firebase.google.com/docs", "outcome": "moved", "status": 200, - "finalUrl": "https://developers.google.com/google-ads/api?hl=he" + "finalUrl": "https://firebase.google.com/docs?hl=ja" }, { - "api": "Google Ads API", + "api": "Google BigQuery API", "column": "Rate Limiting Policy", - "url": "https://developers.google.com/google-ads/api/docs/release-notes", + "url": "https://docs.cloud.google.com/bigquery/quotas", "outcome": "moved", "status": 200, - "finalUrl": "https://developers.google.com/google-ads/api/docs/release-notes?hl=fr" + "finalUrl": "https://docs.cloud.google.com/bigquery/quotas?hl=ja" }, { "api": "Google BigQuery API", @@ -1742,6 +1605,14 @@ "status": 404, "finalUrl": "https://cloud.google.com/bigquery/release-notes" }, + { + "api": "Google Cloud BigQuery API", + "column": "Rate Limiting Policy", + "url": "https://docs.cloud.google.com/bigquery/quotas", + "outcome": "moved", + "status": 200, + "finalUrl": "https://docs.cloud.google.com/bigquery/quotas?hl=ja" + }, { "api": "Google Cloud BigQuery API", "column": "Release Notes", @@ -1752,28 +1623,12 @@ }, { "api": "Google Cloud Datastore API", - "column": "Rate Limiting Policy", + "column": "Release Notes", "url": "https://cloud.google.com/datastore/release-notes", "outcome": "dead", "status": 404, "finalUrl": "https://cloud.google.com/datastore/release-notes" }, - { - "api": "Google Cloud Monitoring API", - "column": "Official_Documentation_URL", - "url": "https://docs.cloud.google.com/monitoring/api/v3", - "outcome": "moved", - "status": 200, - "finalUrl": "https://docs.cloud.google.com/monitoring/api/v3?hl=de" - }, - { - "api": "Google Cloud Natural Language API", - "column": "Official_Documentation_URL", - "url": "https://docs.cloud.google.com/natural-language/docs", - "outcome": "moved", - "status": 200, - "finalUrl": "https://docs.cloud.google.com/natural-language/docs?hl=it" - }, { "api": "Google Cloud Natural Language API", "column": "Release Notes", @@ -1784,116 +1639,75 @@ }, { "api": "Google Cloud Pub/Sub API", - "column": "Release Notes", - "url": "https://cloud.google.com/pubsub/release-notes", - "outcome": "dead", - "status": 404, - "finalUrl": "https://cloud.google.com/pubsub/release-notes" - }, - { - "api": "Google Cloud Speech-to-Text API", - "column": "Release Notes", - "url": "https://cloud.google.com/speech-to-text/release-notes", - "outcome": "dead", - "status": 404, - "finalUrl": "https://cloud.google.com/speech-to-text/release-notes" - }, - { - "api": "Google Cloud Storage API", - "column": "Official_Documentation_URL", - "url": "https://docs.cloud.google.com/storage/docs", - "outcome": "moved", - "status": 200, - "finalUrl": "https://docs.cloud.google.com/storage/docs?hl=id" - }, - { - "api": "Google Cloud Translation API", - "column": "Release Notes", - "url": "https://cloud.google.com/translate/release-notes", - "outcome": "dead", - "status": 404, - "finalUrl": "https://cloud.google.com/translate/release-notes" - }, - { - "api": "Google Cloud Vision API", "column": "Rate Limiting Policy", - "url": "https://docs.cloud.google.com/vision/quotas", + "url": "https://docs.cloud.google.com/pubsub/quotas", "outcome": "moved", "status": 200, - "finalUrl": "https://docs.cloud.google.com/vision/quotas?hl=pt" + "finalUrl": "https://docs.cloud.google.com/pubsub/quotas?hl=id" }, { - "api": "Google Cloud Vision API", + "api": "Google Cloud Pub/Sub API", "column": "Release Notes", - "url": "https://cloud.google.com/vision/release-notes", + "url": "https://cloud.google.com/pubsub/release-notes", "outcome": "dead", "status": 404, - "finalUrl": "https://cloud.google.com/vision/release-notes" - }, - { - "api": "Google Custom Search API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/custom-search/v1/overview#limits", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/custom-search/v1/overview?hl=fr" + "finalUrl": "https://cloud.google.com/pubsub/release-notes" }, { - "api": "Google Drive API", + "api": "Google Cloud Run API", "column": "Official_Documentation_URL", - "url": "https://developers.google.com/workspace/drive", + "url": "https://docs.cloud.google.com/run/docs", "outcome": "moved", "status": 200, - "finalUrl": "https://developers.google.com/workspace/drive?hl=th" + "finalUrl": "https://docs.cloud.google.com/run/docs?hl=fr" }, { - "api": "Google Firebase Cloud Messaging API", - "column": "Official_Documentation_URL", - "url": "https://firebase.google.com/docs/cloud-messaging", + "api": "Google Cloud Run API", + "column": "Rate Limiting Policy", + "url": "https://docs.cloud.google.com/run/quotas", "outcome": "moved", "status": 200, - "finalUrl": "https://firebase.google.com/docs/cloud-messaging?hl=pt-br" + "finalUrl": "https://docs.cloud.google.com/run/quotas?hl=de" }, { - "api": "Google Firebase Realtime Database API", - "column": "Official_Documentation_URL", - "url": "https://firebase.google.com/docs/database", + "api": "Google Cloud Speech-to-Text API", + "column": "Rate Limiting Policy", + "url": "https://docs.cloud.google.com/speech-to-text/docs/v1/quotas", "outcome": "moved", "status": 200, - "finalUrl": "https://firebase.google.com/docs/database?hl=he" + "finalUrl": "https://docs.cloud.google.com/speech-to-text/docs/v1/quotas?hl=pt-br" }, { - "api": "Google Maps Elevation API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/maps/documentation/elevation/usage-and-billing", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/maps/documentation/elevation/usage-and-billing?hl=bn" + "api": "Google Cloud Speech-to-Text API", + "column": "Release Notes", + "url": "https://cloud.google.com/speech-to-text/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/speech-to-text/release-notes" }, { - "api": "Google Maps Roads API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/maps/documentation/roads/usage-and-billing", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/maps/documentation/roads/usage-and-billing?hl=zh-cn" + "api": "Google Cloud Translation API", + "column": "Release Notes", + "url": "https://cloud.google.com/translate/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/translate/release-notes" }, { - "api": "Google My Business API", - "column": "Official_Documentation_URL", - "url": "https://developers.google.com/my-business/", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/my-business?hl=hi" + "api": "Google Cloud Vision API", + "column": "Release Notes", + "url": "https://cloud.google.com/vision/release-notes", + "outcome": "dead", + "status": 404, + "finalUrl": "https://cloud.google.com/vision/release-notes" }, { - "api": "Google Photos API", + "api": "Google People API", "column": "Official_Documentation_URL", - "rowIncomplete": true, - "url": "https://developers.google.com/photos", + "url": "https://developers.google.com/people", "outcome": "moved", "status": 200, - "finalUrl": "https://developers.google.com/photos?hl=bn" + "finalUrl": "https://developers.google.com/people?hl=zh-tw" }, { "api": "Google Translate API", @@ -1903,14 +1717,6 @@ "status": 404, "finalUrl": "https://cloud.google.com/translate/release-notes" }, - { - "api": "Google Vision API", - "column": "Official_Documentation_URL", - "url": "https://docs.cloud.google.com/vision/docs", - "outcome": "moved", - "status": 200, - "finalUrl": "https://docs.cloud.google.com/vision/docs?hl=he" - }, { "api": "HubSpot Analytics API", "column": "Official_Documentation_URL", @@ -2201,7 +2007,7 @@ }, { "api": "Instagram Graph API", - "column": "Rate Limiting Policy", + "column": "Release Notes", "url": "https://developers.facebook.com/docs/instagram-api/changelog", "outcome": "other", "status": 400, @@ -2209,7 +2015,7 @@ }, { "api": "Instagram Graph API", - "column": "Release Notes", + "column": "Security Policy", "url": "https://help.instagram.com/519522125107875", "outcome": "other", "status": 400, @@ -2217,7 +2023,7 @@ }, { "api": "Instagram Graph API", - "column": "Security Policy", + "column": "Developer Community/Forum", "url": "https://developers.facebook.com/community/", "outcome": "other", "status": 400, @@ -2226,27 +2032,18 @@ { "api": "Medium API", "column": "Official_Documentation_URL", - "url": "https://medium.engineering/?gi=9069274de046", + "url": "https://medium.engineering/?gi=3a0cda371a6b", "outcome": "moved", "status": 200, - "finalUrl": "https://medium.engineering/?gi=3a0cda371a6b" - }, - { - "api": "Medium API", - "column": "Rate Limiting Policy", - "url": "https://security.medium.com/", - "outcome": "blocked", - "status": 403, - "finalUrl": "https://security.medium.com/" + "finalUrl": "https://medium.engineering/?gi=610082dfd8d2" }, { "api": "Netflix API", - "column": "Terms of Service", - "rowIncomplete": true, - "url": "https://netflixtechblog.com/?gi=9f707bc7f1a4", + "column": "Rate Limiting Policy", + "url": "https://netflixtechblog.com/?gi=9cd173bbda48", "outcome": "moved", "status": 200, - "finalUrl": "https://netflixtechblog.com/?gi=9cd173bbda48" + "finalUrl": "https://netflixtechblog.com/?gi=0b3f2cdbfda2" }, { "api": "Notion API", @@ -2314,7 +2111,7 @@ }, { "api": "PayPal API", - "column": "Security Policy", + "column": "Developer Community/Forum", "url": "https://www.paypal-community.com/", "outcome": "error", "status": 0, @@ -2323,7 +2120,7 @@ }, { "api": "PayPal Checkout API", - "column": "Release Notes", + "column": "Developer Community/Forum", "url": "https://www.paypal-community.com/", "outcome": "error", "status": 0, @@ -2365,8 +2162,7 @@ }, { "api": "PayPal Payments API", - "column": "Terms of Service", - "rowIncomplete": true, + "column": "Rate Limiting Policy", "url": "https://developer.paypal.com/docs/api-basics/rate-limiting/", "outcome": "dead", "status": 404, @@ -2374,8 +2170,7 @@ }, { "api": "PayPal Payments API", - "column": "Release Notes", - "rowIncomplete": true, + "column": "Developer Community/Forum", "url": "https://www.paypal-community.com/", "outcome": "error", "status": 0, @@ -2392,7 +2187,7 @@ }, { "api": "PayPal Payouts API", - "column": "Release Notes", + "column": "Developer Community/Forum", "url": "https://www.paypal-community.com/", "outcome": "error", "status": 0, @@ -2401,7 +2196,7 @@ }, { "api": "PayPal Subscriptions API", - "column": "Release Notes", + "column": "Developer Community/Forum", "url": "https://www.paypal-community.com/", "outcome": "error", "status": 0, @@ -2411,7 +2206,6 @@ { "api": "Slack Access Logs API", "column": "Official_Documentation_URL", - "rowIncomplete": true, "url": "https://api.slack.com/admin/access-logs", "outcome": "blocked", "status": 403, @@ -2419,8 +2213,7 @@ }, { "api": "Slack Access Logs API", - "column": "Privacy Policy", - "rowIncomplete": true, + "column": "Rate Limiting Policy", "url": "https://api.slack.com/admin/access-logs#rate-limits", "outcome": "blocked", "status": 403, @@ -2429,7 +2222,6 @@ { "api": "Slack Admin API", "column": "Official_Documentation_URL", - "rowIncomplete": true, "url": "https://api.slack.com/admin", "outcome": "blocked", "status": 403, @@ -2437,8 +2229,7 @@ }, { "api": "Slack Admin API", - "column": "Privacy Policy", - "rowIncomplete": true, + "column": "Rate Limiting Policy", "url": "https://api.slack.com/admin#rate-limits", "outcome": "blocked", "status": 403, @@ -2447,7 +2238,6 @@ { "api": "Slack Admin Audit API", "column": "Official_Documentation_URL", - "rowIncomplete": true, "url": "https://api.slack.com/admin/audit-logs", "outcome": "blocked", "status": 403, @@ -2455,8 +2245,7 @@ }, { "api": "Slack Admin Audit API", - "column": "Privacy Policy", - "rowIncomplete": true, + "column": "Rate Limiting Policy", "url": "https://api.slack.com/admin/audit-logs#rate-limits", "outcome": "blocked", "status": 403, @@ -2465,7 +2254,6 @@ { "api": "Slack Audit Logs API", "column": "Official_Documentation_URL", - "rowIncomplete": true, "url": "https://api.slack.com/admin/audit-logs", "outcome": "blocked", "status": 403, @@ -2473,8 +2261,7 @@ }, { "api": "Slack Audit Logs API", - "column": "Privacy Policy", - "rowIncomplete": true, + "column": "Rate Limiting Policy", "url": "https://api.slack.com/admin/audit-logs#rate-limits", "outcome": "blocked", "status": 403, @@ -2483,7 +2270,6 @@ { "api": "Slack SCIM API", "column": "Official_Documentation_URL", - "rowIncomplete": true, "url": "https://api.slack.com/scim", "outcome": "blocked", "status": 403, @@ -2491,8 +2277,7 @@ }, { "api": "Slack SCIM API", - "column": "Privacy Policy", - "rowIncomplete": true, + "column": "Rate Limiting Policy", "url": "https://api.slack.com/scim#rate-limits", "outcome": "blocked", "status": 403, @@ -2500,7 +2285,7 @@ }, { "api": "Twitter Ads API", - "column": "Rate Limiting Policy", + "column": "Security Policy", "url": "https://help.twitter.com/en/rules-and-policies/report-security-vulnerability", "outcome": "dead", "status": 404, @@ -2508,7 +2293,7 @@ }, { "api": "Twitter API", - "column": "Release Notes", + "column": "Security Policy", "url": "https://help.twitter.com/en/rules-and-policies/report-security-vulnerability", "outcome": "dead", "status": 404, @@ -2516,7 +2301,7 @@ }, { "api": "Twitter API v2", - "column": "Release Notes", + "column": "Security Policy", "url": "https://help.twitter.com/en/rules-and-policies/report-security-vulnerability", "outcome": "dead", "status": 404, @@ -2532,7 +2317,7 @@ }, { "api": "WhatsApp Business API", - "column": "Privacy Policy", + "column": "Terms of Service", "url": "https://www.whatsapp.com/legal/business-terms", "outcome": "other", "status": 400, @@ -2540,7 +2325,7 @@ }, { "api": "WhatsApp Business API", - "column": "Terms of Service", + "column": "Release Notes", "url": "https://developers.facebook.com/docs/whatsapp/changelog", "outcome": "other", "status": 400, @@ -2548,7 +2333,7 @@ }, { "api": "WhatsApp Business API", - "column": "Rate Limiting Policy", + "column": "Security Policy", "url": "https://www.whatsapp.com/security", "outcome": "other", "status": 400, @@ -2556,7 +2341,7 @@ }, { "api": "WhatsApp Business API", - "column": "Release Notes", + "column": "Developer Community/Forum", "url": "https://developers.facebook.com/community", "outcome": "other", "status": 400, @@ -2572,7 +2357,7 @@ }, { "api": "WhatsApp Cloud API", - "column": "Privacy Policy", + "column": "Release Notes", "url": "https://developers.facebook.com/docs/whatsapp/cloud-api/changelog", "outcome": "other", "status": 400, @@ -2580,7 +2365,7 @@ }, { "api": "WhatsApp Cloud API", - "column": "Terms of Service", + "column": "Security Policy", "url": "https://www.whatsapp.com/security", "outcome": "other", "status": 400, @@ -2588,347 +2373,67 @@ }, { "api": "WhatsApp Cloud API", - "column": "Rate Limiting Policy", + "column": "Developer Community/Forum", "url": "https://developers.facebook.com/community", "outcome": "other", "status": 400, "finalUrl": "https://developers.facebook.com/community" }, { - "api": "YouTube Analytics API", + "api": "YouTube Caption Tracks API", "column": "Official_Documentation_URL", - "url": "https://developers.google.com/youtube/analytics", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/analytics?hl=id" - }, - { - "api": "YouTube API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube API for Broadcasts", - "column": "Terms of Service", - "rowIncomplete": true, - "url": "https://developers.google.com/youtube/v3/getting-started#quota", + "url": "https://developers.google.com/youtube/v3/docs/captions", "outcome": "moved", "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" + "finalUrl": "https://developers.google.com/youtube/v3/docs/captions?hl=es-419" }, { "api": "YouTube Captions API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Categories API", - "column": "Official_Documentation_URL", - "url": "https://developers.google.com/youtube/v3/docs/videoCategories", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/docs/videoCategories?hl=fa" - }, - { - "api": "YouTube Categories API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Channel API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Channel Branding API", - "column": "Terms of Service", - "rowIncomplete": true, - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Channel Sections API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Comment Threads API", "column": "Official_Documentation_URL", - "url": "https://developers.google.com/youtube/v3/docs/commentThreads", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/docs/commentThreads?hl=ja" - }, - { - "api": "YouTube Comment Threads API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Comments API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", + "url": "https://developers.google.com/youtube/v3/docs/captions", "outcome": "moved", "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" + "finalUrl": "https://developers.google.com/youtube/v3/docs/captions?hl=es-419" }, { "api": "YouTube Data API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", + "column": "Official_Documentation_URL", + "url": "https://developers.google.com/youtube/v3", "outcome": "moved", "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" + "finalUrl": "https://developers.google.com/youtube/v3?hl=pt-br" }, { "api": "YouTube Data API v3", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Data Insights API", "column": "Official_Documentation_URL", - "url": "https://developers.google.com/youtube/analytics", + "url": "https://developers.google.com/youtube/v3", "outcome": "moved", "status": 200, - "finalUrl": "https://developers.google.com/youtube/analytics?hl=id" + "finalUrl": "https://developers.google.com/youtube/v3?hl=pt-br" }, { "api": "YouTube Data v3 API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Embeds API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/iframe_api_reference#Quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/iframe_api_reference?hl=pl" - }, - { - "api": "YouTube Embeds API", - "column": "Release Notes", - "url": "https://developers.google.com/youtube/iframe_api_reference#Changelog", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/iframe_api_reference?hl=id" - }, - { - "api": "YouTube Live Broadcasts API", - "column": "Terms of Service", - "rowIncomplete": true, - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Live Events API", - "column": "Terms of Service", - "rowIncomplete": true, - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Livestreaming API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Livestreams API", - "column": "Terms of Service", - "rowIncomplete": true, - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Notifications API", - "column": "Terms of Service", - "rowIncomplete": true, - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Playlist API", "column": "Official_Documentation_URL", - "url": "https://developers.google.com/youtube/v3/docs/playlists", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/docs/playlists?hl=es-419" - }, - { - "api": "YouTube Playlist API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", + "url": "https://developers.google.com/youtube/v3", "outcome": "moved", "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" + "finalUrl": "https://developers.google.com/youtube/v3?hl=pt-br" }, { - "api": "YouTube Playlist Items API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Playlists API", + "api": "YouTube Partner API", "column": "Official_Documentation_URL", - "url": "https://developers.google.com/youtube/v3/docs/playlists", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/docs/playlists?hl=es-419" - }, - { - "api": "YouTube Playlists API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Search API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Subscription API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Subscriptions API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Super Chat API", - "column": "Terms of Service", - "rowIncomplete": true, - "url": "https://developers.google.com/youtube/v3/getting-started#quota", + "url": "https://developers.google.com/youtube/partner/", "outcome": "moved", "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" + "finalUrl": "https://developers.google.com/youtube/partner?hl=bn" }, { "api": "YouTube Thumbnails API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Video Abilities API", - "column": "Terms of Service", - "rowIncomplete": true, - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Video Abuses API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Video API", - "column": "Official_Documentation_URL", - "url": "https://developers.google.com/youtube/v3/docs/videos", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/docs/videos?hl=zh-tw" - }, - { - "api": "YouTube Video API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Video Categories API", "column": "Official_Documentation_URL", - "url": "https://developers.google.com/youtube/v3/docs/videoCategories", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/docs/videoCategories?hl=fa" - }, - { - "api": "YouTube Video Categories API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Watermark API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", - "outcome": "moved", - "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" - }, - { - "api": "YouTube Watermarks API", - "column": "Rate Limiting Policy", - "url": "https://developers.google.com/youtube/v3/getting-started#quota", + "url": "https://developers.google.com/youtube/v3/docs/thumbnails", "outcome": "moved", "status": 200, - "finalUrl": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br" + "finalUrl": "https://developers.google.com/youtube/v3/docs/thumbnails?hl=ar" }, { "api": "Zillow API", @@ -2988,7 +2493,7 @@ }, { "api": "ZoomInfo API", - "column": "Rate Limiting Policy", + "column": "Security Policy", "url": "https://www.zoominfo.com/security", "outcome": "blocked", "status": 403, diff --git a/datasets/realignment.json b/datasets/realignment.json new file mode 100644 index 0000000..3fb2aa7 --- /dev/null +++ b/datasets/realignment.json @@ -0,0 +1,8073 @@ +{ + "rows": 562, + "realigned": 369, + "urlsMoved": 1089, + "urlsBlanked": 5, + "leftAlone": 193, + "unrepairable": 0, + "changes": [ + { + "api": "Google My Business API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-my-business-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph People API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://www.microsoft.com/en-us/privacy/privacystatement", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=IpL2mZjCZlMR4t9f9iIyMIOMYkuHHD63glFTl_lmLbt5Yu4kJB6N1H9OE-G_B9x7q_sHU1gN5YOFXibmUROk-rUvhmVosfSMfANDvo1YScQhWoCZjcPSRiwgfg4Z_qy0-nvIBE_31X7cITR8B6bPpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPeople", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Interactivity API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox File Request API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Sync API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Support API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Places API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://cloud.google.com/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Azure Storage API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=U_P5gT2XW39BQ6O8XZzh7kJsBEbfzCmJZfbwi_CoWS0Eo5sTduR4DvTqviM7Lw3up5kCZ2-v4-lacz7IpnHXJJq-37C7Rv_jfetZYADA-7jjYY9vxUvCjn40y_qnW1hbx2rx32K3-FLnf_E-Y7belEzS-RzpzaC-Hau--s3PDiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureStorage", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack App Directory API", + "scoreBefore": -9, + "scoreAfter": 19, + "moved": [ + { + "url": "https://docs.slack.dev/apis/web-api/rate-limits/", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox API Explorer", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Verify API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Guide API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Ads API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://developers.google.com/google-ads/api/docs/release-notes?hl=fr", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-ads-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Notifications API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://www.microsoft.com/en-us/privacy/privacystatement", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=qJAMWB0_U9_HCZHHMmsduGW-UiwrLfnRK8P7m62pQwsLt-rkBQ0KhXUjlcnC6m0USqTeYUODb0wIQqxXZeck9wZH8fhF9UOWMeJe8xIRRpc3ip-o73oIGU1CLYzEu5SsRfXmrQk75omASpfQpbgyQLIp2wabj8AtPDIa4RBKt-Q&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FNotifications", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Usergroups API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox API v1", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Messaging API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk SLA API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "WhatsApp Business API", + "scoreBefore": -9, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.whatsapp.com/legal/business-terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://developers.facebook.com/docs/whatsapp/changelog", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.whatsapp.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://developers.facebook.com/community", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Uber API", + "scoreBefore": -6, + "scoreAfter": 8, + "moved": [ + { + "url": "https://www.uber.com/global/zh/privacy-notice-riders-order-recipients/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.uber.com/au/en/legal/general-terms-of-use/", + "from": "Privacy Policy", + "to": "Terms of Service" + } + ] + }, + { + "api": "Dropbox Business API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Heroku Platform API", + "scoreBefore": -5, + "scoreAfter": 16, + "moved": [ + { + "url": "https://devcenter.heroku.com/articles/platform-api-reference#rate-limits", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://devcenter.heroku.com/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.heroku.com/policy/security", + "from": "Release Notes", + "to": "Security Policy" + } + ] + }, + { + "api": "Adobe Analytics API", + "scoreBefore": -3, + "scoreAfter": 4, + "moved": [ + { + "url": "https://adobedocs.github.io/analytics-2.0-apis/#rate-limiting", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + } + ] + }, + { + "api": "Google Drive API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-drive-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Box Content API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://developer.box.com/changelog/", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.box.com/security-compliance", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://community.box.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Box API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://developer.box.com/changelog/", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.box.com/security-compliance", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://community.box.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Firebase API", + "scoreBefore": 5, + "scoreAfter": 12, + "moved": [ + { + "url": "https://firebase.google.com/community", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ], + "dropped": [ + { + "url": "https://firebase.google.com/support/privacy", + "from": "Release Notes", + "contradicts": "Release Notes" + } + ] + }, + { + "api": "Google Calendar API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://developers.google.com/workspace/calendar/release-notes", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/calendar-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph OneNote API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Files API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox API v2", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Media Streams API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.twilio.com/en-us/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.twilio.com/en-us/legal/tos", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Terms of Service", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Apps API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://community.zendesk.com/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Planner API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://techcommunity.microsoft.com/category/Planner", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Transfer API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Programmable Video API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Search API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twitter API v2", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://help.twitter.com/en/rules-and-policies/report-security-vulnerability", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://devcommunity.x.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Bing Search API", + "scoreBefore": 1, + "scoreAfter": 8, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/answers/tags/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Books API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/g/google-books-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "PayPal Payouts API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://www.paypal-community.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Shopify Bulk Operations API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.shopify.com/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.shopify.com/legal/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://shopify.dev/changelog", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.shopify.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.shopify.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Facebook Marketing API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://developers.facebook.com/docs/marketing-api/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.facebook.com/help/238318146535333", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://developers.facebook.com/community/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack SCIM API", + "scoreBefore": -9, + "scoreAfter": 19, + "moved": [ + { + "url": "https://api.slack.com/scim#rate-limits", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Cloud Translation API", + "scoreBefore": 16, + "scoreAfter": 23, + "moved": [ + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-translate-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Teams Calling API", + "scoreBefore": 1, + "scoreAfter": 8, + "moved": [ + { + "url": "https://techcommunity.microsoft.com/category/MicrosoftTeams", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Cloud Datastore API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://cloud.google.com/datastore/release-notes", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-datastore-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Azure Cognitive Services API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Shortcuts API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Official_Documentation_URL", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Privacy Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Team API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Fax API", + "scoreBefore": 5, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Messaging API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Maps Geocoding API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-geocoding-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Tasks API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://www.microsoft.com/en-us/privacy/privacystatement", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://techcommunity.microsoft.com/category/Planner", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Channels API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox File Requests API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Live Broadcasts API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://developers.google.com/youtube/v3/revision_history?hl=ar", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "AWS CloudFront API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://aws.amazon.com/security/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://repost.aws/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Power Automate API", + "scoreBefore": -5, + "scoreAfter": 16, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/dynamics365/release-plans/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://techcommunity.microsoft.com/category/PowerAutomate", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Admin API", + "scoreBefore": -9, + "scoreAfter": 19, + "moved": [ + { + "url": "https://api.slack.com/admin#rate-limits", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio TaskRouter API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Sunshine Conversations API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Stripe Issuing API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://docs.stripe.com/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://docs.stripe.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://support.stripe.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Planner API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://techcommunity.microsoft.com/category/Planner", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Reactions API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox User API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio IP Messaging API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.twilio.com/en-us/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.twilio.com/en-us/legal/tos", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Terms of Service", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Tags API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Cloud Functions API", + "scoreBefore": 9, + "scoreAfter": 23, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-functions", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Intune API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://www.microsoft.com/en-us/privacy/privacystatement", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=UiKu_ljy0i3OqrHKFrfmcwghmFSgiIcg0-cJ5euPao5usGtTD1xrwT1k-2F7vXrjy9bciyI0wQuSLjz8wKPveqjrySvXJw82lz-_FBmIq51c0Mp8ilqAYMk2tJor5dEFBoMCyWtotPxJtHC2U2bnDA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FIntune", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Conversations API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Official_Documentation_URL", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Privacy Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Security API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Security API", + "scoreBefore": -8, + "scoreAfter": 13, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=aahvtMvAuL3g-R_HaqvWqLALKG73wrFS46yGRkye2nB2Yhzgq_dCkKPYSoSUsqosFXPRuKQxmnz6e27BaSgRRn0X829HGCfb1wEMKNB09dFRjzjyCXR7ytq3qgilEvZ2RloShjKsVPtF14wABX6cWwSy-76MwUet9FLgBxkAIXU&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSecurityAPI", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ], + "dropped": [ + { + "url": "https://learn.microsoft.com/en-us/graph/api/resources/security-api-overview?view=graph-rest-1.0", + "from": "Official_Documentation_URL", + "contradicts": "Official_Documentation_URL" + } + ] + }, + { + "api": "Slack Emoji API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Notifications API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Flex API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Macros API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Partner API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph API for Teams", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://techcommunity.microsoft.com/category/MicrosoftTeams", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Bots API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Official_Documentation_URL", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Privacy Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Content Management API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Programmable Voice API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Ticket Forms API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Stripe Billing API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://stripe.com/au/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://stripe.com/au/legal", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://docs.stripe.com/rate-limits", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.stripe.com/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://docs.stripe.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://support.stripe.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Video Abilities API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://developers.google.com/youtube/v3/revision_history?hl=ar", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Files API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=agCR0A5inu0R0s4N1n5Fw1AmtkVxvuKR2EK-4XY0QAARMXkrqvLEid6blj-tLBRqhycsG_bwoB-dy_cq6zkXO_lxO7Ve3W-gatHTsJYRTfWb5RH3hpZp02P3jI6aIO4SR736R78poOzp_jZwiJgUQA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FFiles", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Events API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Help Center API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Insights API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://www.microsoft.com/en-us/privacy/privacystatement", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=mBhn9aXjLnvMtVbNoGU3rPQtPubFgSY3AeIRoSepa13AJKoU4E9lYO8EpYLCYIAu5TgiLH-aNlurCOzYY1MWkNOOBxp_a8HOND08AQpnTdkMlspVZhTM3b_qEylOiy2SbZ9l1uxaXy9ZPLr_7G4OJdcz6jFqLJNiS8nlCKBMsng&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FInsights", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Dialogs API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Team Auditing API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Side Conversations API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Resumable Uploads API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://developers.google.com/youtube/v3/revision_history?hl=ar", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Azure Face API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Workflow API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Core API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Video API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Voice API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Stripe PaymentLinks API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://stripe.com/au/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://stripe.com/au/legal", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://docs.stripe.com/rate-limits", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.stripe.com/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://docs.stripe.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://support.stripe.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox API", + "scoreBefore": 9, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.dropbox.com/features/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "PayPal API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://www.paypal-community.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Amazon Advertising API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://advertising.amazon.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://advertising.amazon.com/API/docs/en-us/get-started/usage-guidelines", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://advertising.amazon.com/API/docs/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://advertising.amazon.com/security", + "from": "Release Notes", + "to": "Security Policy" + } + ] + }, + { + "api": "Google Analytics API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/analytics-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://community.zendesk.com/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph API", + "scoreBefore": 2, + "scoreAfter": 16, + "moved": [ + { + "url": "https://login.microsoftonline.com/common/oauth2/authorize?client_id=80ccca67-54bd-44ab-8625-4b79c4dc7775&response_type=code%20id_token&scope=openid%20profile&state=OpenIdConnect.AuthenticationProperties%3DRdojUK_Q-5Nqymz2hLITLMRtwjeueyLhqJRymwIC3HbyhbrLhEV-dXYg08M6WB_Ubug7_xmV5Gdc5qxCMHMrUNsbpKlsjERYikN5CcU8QMwFYFZRzVO5Xlnwq16FltUQEVK2TUYdyTUVt506z68q_Q&response_mode=form_post&nonce=639234153079480059.MDdkYzk1MmQtNjBhNS00NDk0LTg2NjItMTZkMjQ4MzBkOGZiOTdhOTBlZWUtNjI2Mi00ZWY1LTk5OTctMmJhYTVmYWY1NzI2&client-request-id=4b59ab3b-a161-49af-87a1-bd3e50eed501&redirect_uri=https%3A%2F%2Fsecurity.microsoft.com%2F&x-client-SKU=ID_NET472&x-client-ver=8.16.0.0", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=IOvKJsjQCtJfIN4Wu4-ctI2dUUlttuh6FKaI0sLgYvUi403STK24K5mOB4PmRMA__AiGuKa8XUUCctgc6WBkFpfsGl1uyOpnLJAAg0xIXTuXfzaHTLovJfm9C89IQFOGbEOrQZdDwlHg8Ijz3e0K5KuAiPbHN77sew0uNEXmLUg&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FMicrosoftGraph", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Pinterest API", + "scoreBefore": 12, + "scoreAfter": 19, + "moved": [ + { + "url": "https://community.pinterest.biz/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "ZoomInfo API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.zoominfo.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + } + ] + }, + { + "api": "Wix API", + "scoreBefore": -6, + "scoreAfter": 8, + "moved": [ + { + "url": "https://www.wix.com/about/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.wix.com/about/terms-of-use", + "from": "Privacy Policy", + "to": "Terms of Service" + } + ] + }, + { + "api": "Asana API", + "scoreBefore": 9, + "scoreAfter": 23, + "moved": [ + { + "url": "https://asana.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://forum.asana.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Intercom API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.intercom.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.intercom.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Payoneer API", + "scoreBefore": -3, + "scoreAfter": 11, + "moved": [ + { + "url": "https://developer.payoneer.com/rate-limits", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://developer.payoneer.com/changelog", + "from": "Terms of Service", + "to": "Release Notes" + } + ] + }, + { + "api": "Google Maps API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Notebooks API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=S4vQUkfylIeaDKBGxjXAjo8CZy9PNdfaitGk768iFFjIDa0MXfQZ18W1jQUorQbBPGrc2iP_gQz1L0JHunKYGKWKJGsTmH-7L1_AhNo-ClnmVQ_rI7FHyblBRN7ZUWrKFoVEWKhaLkv_eStltpLv6uGaxrG1j-tiC8jYZb_aLbg&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNoteAPI", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack API Logs API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Events API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Voice API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Organizations API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Web API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Maps Elevation API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-elevation-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Reports API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=-DIeHo-K7qlOwwB2aV6WmKHFuRya1EsMaBGIfddPYpKOuFVoHKGPtMzqwGKlWPuaSk2rG0pQ9zbKLJiOVkf1JdczbK7RvI-ABPaT9pypvb9Fv7CGVRpaMZEesHHMr33e7bP3faIA7zD40dRckAyyMw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FReports", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Audit API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Official_Documentation_URL", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Privacy Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Sharing API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Messaging Insights API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.twilio.com/en-us/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.twilio.com/en-us/legal/tos", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Terms of Service", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Schedules API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Analytics Reporting API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-reporting", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twitter API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://help.twitter.com/en/rules-and-policies/report-security-vulnerability", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://devcommunity.x.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Instagram Graph API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://developers.facebook.com/docs/instagram-api/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://help.instagram.com/519522125107875", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://developers.facebook.com/community/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack API", + "scoreBefore": -9, + "scoreAfter": 19, + "moved": [ + { + "url": "https://docs.slack.dev/apis/web-api/rate-limits/", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Sheets API", + "scoreBefore": 9, + "scoreAfter": 23, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-sheets-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Azure Event Hubs API", + "scoreBefore": -5, + "scoreAfter": 16, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/azure/event-hubs/event-hubs-quotas", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=OfT4aohP62ba_zd6MVDVAjHfFF1wGzp0MXR8G3H1H2H-mO2L78JTbQ-Gxb0C_zMph0TUXaXIMQuL0as-BH2X-nHEzKX_lJyhFZkATSUgu4a_IQ8ftNTp-E_79GUot0YDZIXUpG-vSvDaU8XX5fFevUnxWpD7v8k7EsD-iDPcLSw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FEventHubs", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Badge API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Groups API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=lIXngyBXKsipYINl9GunF17fJWYqwKKLEg0lVdndqXSXBtUi_OWGZqv17kflV4RYoY0NeobOyjOh3aaatisipI298vjRef9TxPhryS3h_POdqsxiy2IQNkTFIAjiPqaRe3KEAPgnynhYCknk0CtRwQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FGroups", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack File Sharing API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Folder API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Request API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Live Events API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://developers.google.com/youtube/v3/revision_history?hl=ar", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "WhatsApp Cloud API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://developers.facebook.com/docs/whatsapp/cloud-api/changelog", + "from": "Privacy Policy", + "to": "Release Notes" + }, + { + "url": "https://www.whatsapp.com/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://developers.facebook.com/community", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Medium API", + "scoreBefore": -2, + "scoreAfter": 5, + "moved": [ + { + "url": "https://security.medium.com/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + } + ], + "dropped": [ + { + "url": "https://policy.medium.com/medium-terms-of-service-9db0094a1e0f", + "from": "Privacy Policy", + "contradicts": "Privacy Policy" + } + ] + }, + { + "api": "Paypal Payouts API", + "scoreBefore": 9, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://developer.paypal.com/community", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Etsy API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://community.etsy.com/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twitter Ads API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://help.twitter.com/en/rules-and-policies/report-security-vulnerability", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://devcommunity.x.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Presence API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=SPH8ED7f1Q8BKkACfdxlzkUrQv63uctiMnocU9QlhPmTHkiWgCoDeGotaPVFc_pdVU8oKQYmf7Bo9eZFf_wyN31TXv3Kbl61H_2bxS5Cg9g7vh4ME-C_-qz8eTAQMUXRk55nz3orDoXF3cHf1DvJTgPJ4CSdghzKO91xPHaxOl4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPresence", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Reminders API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Content Explorer API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Voice Insights API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.twilio.com/en-us/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.twilio.com/en-us/legal/tos", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Terms of Service", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Chat SDK API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twitch Helix API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://dev.twitch.tv/docs/change-log", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.twitch.tv/p/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://discuss.dev.twitch.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Netflix API", + "scoreBefore": -6, + "scoreAfter": 8, + "moved": [ + { + "url": "https://help.netflix.com/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://help.netflix.com/legal/termsofuse", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://netflixtechblog.com/?gi=9cd173bbda48", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + } + ] + }, + { + "api": "Microsoft Graph Print API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=ga8fXg-L519ZXCFJOcugjzhBzMxU3JztV3WbHVrGAHO9tfw5a_VGJGMYY3nmEEm_xavYhQs8Yhl8ctRQZmp2bHISVwwz7BVIt_TMbEGd3SB1csReETXO4uyQnxigdgbeeALvidXRxS3PvnpX5DQsHQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FPrint", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Interactive Messages API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Notify API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Chat API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Monetization API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zoom API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.zoom.com/en/trust/security/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://devforum.zoom.us/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Adobe Sign API", + "scoreBefore": 0, + "scoreAfter": 7, + "moved": [ + { + "url": "https://community.adobe.com/adobe-acrobat-sign-28", + "from": "Privacy Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "SendBird API", + "scoreBefore": 0, + "scoreAfter": 7, + "moved": [ + { + "url": "https://community.sendbird.com/", + "from": "Privacy Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Teams API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://techcommunity.microsoft.com/category/MicrosoftTeams", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Klarna API", + "scoreBefore": -3, + "scoreAfter": 4, + "moved": [ + { + "url": "https://www.klarna.com/international/privacy-policy/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + } + ] + }, + { + "api": "PayPal Checkout API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://www.paypal-community.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Photos API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/photos-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Device API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=AFt1gJtvSXpFXIxovgJRdYIBsjRpQzi2WMWr9b5_3kWd7V9pWTG_V6WpqAamgAfS38TnkvBt2MWth0WS4j0TnwofzjedKwPh0P4FKBqCS0y7Cepb5n77ymz0TMU6nvEdkXOKr8WByLDI5Z3FnbBc8g&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDevices", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Apps API", + "scoreBefore": -9, + "scoreAfter": 19, + "moved": [ + { + "url": "https://api.slack.com/apps#rate-limits", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Sync API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Studio API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "YouTube API for Broadcasts", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://developers.google.com/youtube/v3/revision_history?hl=ar", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Microsoft Translator Text API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph SharePoint API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=1OIXvxtUgtctvRMt3UFYHpzXcscmEUGzGr6Op09CASKVMzKmM_moS6pPZ1EHIbKp2a_tZK538TV9rdugEA9Xh0uK3Kdsks2fFNjhYbZi-HyETDGtTb4Cm8ONDvACq4rfh7h7gcch9oQVRM5Qlnl1vp3nv9tHA7mf4gp45H2Vhos&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSharePoint", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Revisions API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Live Streaming API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://groups.google.com/g/youtube-live", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Tasks API", + "scoreBefore": 9, + "scoreAfter": 23, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/g/google-tasks-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Mail API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://www.microsoft.com/en-us/privacy/privacystatement", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=W4uWdy1RJ19lG9lJRXaCdcEAk_cL87J9O4sIhl9HIGxAm1f-w-0XGUKj10ZbLc4jMWOKt7FHhi5liUOYBTIC-SbP2giPwXv7sF4oc_9zavhglu8A3n8LECT-G8r5QLoplpZuB3khomkZc8B9nHDHBiqbWDrchDVvrFYaO5kZG4k&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookDeveloper", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Messaging API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Authy API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Tickets API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Livestreams API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://developers.google.com/youtube/v3/revision_history?hl=ar", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Search API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Programmable Chat API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Sunshine API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Translator API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Dynamics 365 API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://community.dynamics.com/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Permissions API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Activity API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Custom Objects API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Maps Roads API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack App API", + "scoreBefore": -9, + "scoreAfter": 19, + "moved": [ + { + "url": "https://docs.slack.dev/apis/web-api/rate-limits/", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Sell API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Reporting API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Calendar API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=FUiZ57pDenN2vqWpceO8S9uA-W4qBcgTDgV_qJBnM117LQyLQTN7mxuGBcwqhSl8ng1O7qZjsaOcwZAmGyO6VJXXsS1WdNHeLGSPu4NHJfVilXsSuNsz_-utVvStCouNc8JEEjtZQ8Bc3a2yn3deJ6bCZf7tM1FYSYQWcbuKZb8&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookCalendar", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Conversations API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Google People API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-people-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph OneDrive API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=HfPeQh0_RYaCRf36VBH5tBxqe1MWs42oRuuytkTOTCPiqNYvSGBKJw5uQcXKpjuM19WPaVlSRQXOXmKOn14AOyXV39nye0Oa8ARujaW9OFUZnUwJ_Xp0fydrfuP0-cxe5TDT1Ajj4rVv6wbIjPO7N40A4nImXYvY58QsNY0OZpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneDriveDeveloper", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Apps Framework API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://community.zendesk.com/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "AWS AppStream API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://aws.amazon.com/security/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://repost.aws/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph DeviceManagement API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://www.microsoft.com/en-us/privacy/privacystatement", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=V-1RQMF48do9f_ch08ENZvdewH9WA0hDLUiJOk-ewEm_nsdFZ0JkIumxqzXRX6J44VLhygxBvge0qHIKxvTSrNn7NnbhyEDfszPUL4x5Ca_a4JcNuuzvKYQ7GQapSy84l8psAJts5fuB8vHf1gPHAksZtLYc9afP0ObBKleWNBA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDeviceManagement", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Directory API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Official_Documentation_URL", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Privacy Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Shared Links API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Embed API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft OneDrive API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=HfPeQh0_RYaCRf36VBH5tBxqe1MWs42oRuuytkTOTCPiqNYvSGBKJw5uQcXKpjuM19WPaVlSRQXOXmKOn14AOyXV39nye0Oa8ARujaW9OFUZnUwJ_Xp0fydrfuP0-cxe5TDT1Ajj4rVv6wbIjPO7N40A4nImXYvY58QsNY0OZpw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneDriveDeveloper", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Amazon CloudWatch API", + "scoreBefore": 12, + "scoreAfter": 19, + "moved": [ + { + "url": "https://aws.amazon.com/security/", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://repost.aws/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Spotify Web Playback API", + "scoreBefore": 9, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.spotify.com/us/legal/security/", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://developer.spotify.com/community/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Bitly Links API", + "scoreBefore": -6, + "scoreAfter": 8, + "moved": [ + { + "url": "https://bitly.com/pages/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://bitly.com/pages/terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + } + ] + }, + { + "api": "Google Chat API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://developers.google.com/workspace/chat/release-notes", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-chat-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Sites API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://www.microsoft.com/en-us/privacy/privacystatement", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=47VNIbUQY_55YwUiqtznImZeU8FI86dAwwgyTtEy4m0viBWqNqfH4PSfeKSQBTz6G_tNFoVuLJ6OLOd3Un73-G9L9Dr6dA4u4E3rklt8a7v-CdVbP6kk7KYrnPaW2xnptlihp5DVK_yuwqnqDyCD5w&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FSites", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Users API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Caption Tracks API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Firebase Authentication API", + "scoreBefore": 5, + "scoreAfter": 12, + "moved": [ + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-auth-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ], + "dropped": [ + { + "url": "https://firebase.google.com/support/privacy", + "from": "Release Notes", + "contradicts": "Release Notes" + } + ] + }, + { + "api": "Dropbox Paper API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Programmable SMS API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk User Events API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Player API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-iframe-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Azure Computer Vision API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Chat API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Google Tag Manager API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/tagmanager-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Facebook Messenger API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://developers.facebook.com/docs/messenger-platform/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.facebook.com/help/238318146535333", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://developers.facebook.com/community/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Shopify Analytics API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.shopify.com/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.shopify.com/legal/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://shopify.dev/changelog", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.shopify.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.shopify.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Power BI API", + "scoreBefore": 1, + "scoreAfter": 15, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://techcommunity.microsoft.com/category/PowerBI", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "GitLab CI/CD API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://about.gitlab.com/privacy/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://about.gitlab.com/terms/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://about.gitlab.com/security/", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://forum.gitlab.com/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Spotify Playlist API", + "scoreBefore": 9, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.spotify.com/us/legal/security/", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://developer.spotify.com/community/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Education API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://www.microsoft.com/en-us/privacy/privacystatement", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=7i82YI2UXZEHMmEDtf7kdkFX4J5t3rkO5FHcEYl0c80C18ToRhzlBFwJUdALJFUsDDodyrMIwIuC5GQ9_xg5tpOheRlKLXaZAqHCNnuOEFTaRQbX8b7pZbpnWfYk50K9mGzW2Gv5Lgwuobl0tXvNVOMET0HH--Zq1hCWy8hU8vs&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FEducation", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Bot Users API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Official_Documentation_URL", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Privacy Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Contacts API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Activity Stream API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Channel Branding API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://developers.google.com/youtube/v3/revision_history?hl=ar", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Shopify GraphQL API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.shopify.com/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.shopify.com/legal/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://shopify.dev/changelog", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.shopify.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.shopify.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Bitbucket API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.atlassian.com/trust/data-protection", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://community.atlassian.com/forums/Bitbucket/ct-p/bitbucket", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "PayPal Payments API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.paypal.com/us/legalhub/paypal/privacy-full", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.paypal.com/us/legalhub/paypal/useragreement-full", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://developer.paypal.com/docs/api-basics/rate-limiting/", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://www.paypal-community.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Custom Search API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/custom-search-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Content API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "PayPal Subscriptions API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.paypal.com/us/security/learn-about-paypal-secure-technology", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://www.paypal-community.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Spotify Ads API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.spotify.com/us/legal/security/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://developer.spotify.com/community/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Shopify Fulfillment API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.shopify.com/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.shopify.com/legal/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://shopify.dev/changelog", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.shopify.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.shopify.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Azure Form Recognizer API", + "scoreBefore": 1, + "scoreAfter": 15, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=GVRlRjf9i5pCIwPyWna8Ngjyavl0h999nXaLHjbOnI3j00lz9A67rHG0EArEjldfX_0O23ujSg4dKqnSDIdBmKfD30BiAoZOWASmN3QCuaXRz9kku5M0C98TA0Dqu0SgduhyFNT0sE1md8UAEysTVD_TWGwNMZHf2sIWzwjRyd4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FFormRecognizer", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Incoming Webhooks API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Cloud Identity API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-identity-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Teams Webhooks API", + "scoreBefore": -8, + "scoreAfter": 20, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook#rate-limits", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webhook#release-notes", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://techcommunity.microsoft.com/category/MicrosoftTeams", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Block Kit API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Compliance API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://www.microsoft.com/en-us/privacy/privacystatement", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=j09SoIc0r1G6N6P41OLqGj-aY4j1pLhqZ4UatlcElmXTzM28lE0EPX0wZtktGN5_DO41-raxFzh65VdBHskMZ5PFfZuthZ9qAqQTXHkFCdTcCEIDUzcBfliPi7kTyTBD-3pHZtODLlWQxXBHX_pQF9JazzyQ6MYR1o51vXB6sNM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FCompliance", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Access Logs API", + "scoreBefore": -9, + "scoreAfter": 19, + "moved": [ + { + "url": "https://api.slack.com/admin/access-logs#rate-limits", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Metadata API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Triggers API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Spotify Web API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.spotify.com/us/legal/security/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://developer.spotify.com/community/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Uber Eats API", + "scoreBefore": -6, + "scoreAfter": 8, + "moved": [ + { + "url": "https://www.uber.com/global/zh/privacy-notice-riders-order-recipients/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.uber.com/au/en/legal/general-terms-of-use/", + "from": "Privacy Policy", + "to": "Terms of Service" + } + ] + }, + { + "api": "GitLab API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://about.gitlab.com/security/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://forum.gitlab.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Cloudinary API", + "scoreBefore": 4, + "scoreAfter": 11, + "moved": [ + { + "url": "https://cloudinary.com/developers/community", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Bitly API", + "scoreBefore": -6, + "scoreAfter": 8, + "moved": [ + { + "url": "https://bitly.com/pages/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://bitly.com/pages/terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + } + ] + }, + { + "api": "DocuSign API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://developers.docusign.com/changelog", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.docusign.com/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://support.docusign.com/community", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "RingCentral API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://developers.ringcentral.com/guide/rate-limits", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://developers.ringcentral.com/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://community.ringcentral.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zoom Video API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.zoom.com/en/trust/security/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://devforum.zoom.us/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Workflow Builder API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Chooser API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Mobile SDK API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Message Events API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Collaboration API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Vision API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://docs.cloud.google.com/vision/docs/release-notes", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-vision-api-discuss", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Intercom Conversations API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.intercom.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.intercom.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Shopify Storefront API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://shopify.dev/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.shopify.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://community.shopify.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Okta API", + "scoreBefore": 2, + "scoreAfter": 23, + "moved": [ + { + "url": "https://developer.okta.com/docs/release-notes/", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://trust.okta.com/", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://support.okta.com/help/s/community?language=en_US", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "MongoDB Atlas API", + "scoreBefore": 1, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.mongodb.com/docs/atlas/release-notes/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.mongodb.com/community/forums/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Outlook API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://www.microsoft.com/en-us/privacy/privacystatement", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=W4uWdy1RJ19lG9lJRXaCdcEAk_cL87J9O4sIhl9HIGxAm1f-w-0XGUKj10ZbLc4jMWOKt7FHhi5liUOYBTIC-SbP2giPwXv7sF4oc_9zavhglu8A3n8LECT-G8r5QLoplpZuB3khomkZc8B9nHDHBiqbWDrchDVvrFYaO5kZG4k&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOutlookDeveloper", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Explore API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Proxy API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Google Cloud Spanner API", + "scoreBefore": 9, + "scoreAfter": 23, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-spanner-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Bookings API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=n6Eng-_d_GM2InaREQ0Zkn_7wNq6l8IBGIzmHYB23RAeRFvBOobd5xvGhnDTBGqmUxKg0KQIcDAimTYMoUvMBJ3zPzGlT4eh6jCXfMORn_dyBYF3bRTRzWF8HaE8yD9RIXA0BSV8aW78UMvFnibYOlMwBSibvOM2bIk-yZlnfaM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FBookingsAPI", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox App Folder API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Chat Conversations API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack API Permissions API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Official_Documentation_URL", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Privacy Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "AWS App Runner API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://aws.amazon.com/security/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://repost.aws/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Device Management API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=DTid1B__UHheVVpJgLvs2rIAaSFGwwhihmSKHXZJvFbPYS_79TAxN2g0vvlP9HNajOEjjCBugo2kcOLt3gr8QLyWVQmVy5ZEcFu8ERVaXq_u0MDBFE_u5fDLXIU_Jgr_2ok5sGfsorKDofMrk5c4PiJU1nGhDVs8N-Iwa_YJFIw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDeviceManagement", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk NPS API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Salesforce API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://security.salesforce.com/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://trailhead.salesforce.com/trailblazer-community/feed", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Azure API", + "scoreBefore": 4, + "scoreAfter": 11, + "moved": [ + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=rPYOxdILNGwP_nvfLLJS1XSyL-rMuyEVDVMnB2w9wnhcRG5YETcu1KRWybnfgImAfrtKY3YnmQWWzyw_LXqRi5xIgmqDgCWfBQI3b0upF4QqzHOFzGJ5u8GMCelLqw03N4FTZ5q97ghEM7sDKyakdedOheyMW6pcIlx2zaTHpEo&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureDeveloper", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Drive API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=WhIYCTe2qUkMqn3vheoxSPlcbtV-PawqSoTMWP-XlLcl6ummOWVxvA2dBCImRgDn30AKhCIJwgUlfXRBUT9qqHy7GkDMmY63XEvKRDgu4HPm2u7hutQ84DiKURgXXmsU0mltyJTzzjtWDvuLRAIGdQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDrive", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Search API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Thumbnails API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Activities API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Stripe Payment Links API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://stripe.com/au/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://stripe.com/au/legal", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://docs.stripe.com/rate-limits", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.stripe.com/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://docs.stripe.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://support.stripe.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Super Chat API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://developers.google.com/youtube/v3/revision_history?hl=ar", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Workflows API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Autopilot API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Slack Admin Audit API", + "scoreBefore": -9, + "scoreAfter": 19, + "moved": [ + { + "url": "https://api.slack.com/admin/audit-logs#rate-limits", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Ticketing API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://community.zendesk.com/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Cloud AutoML API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/automl-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Suspended Tickets API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Directory API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=eRLbTLwJ3I77DFvxxyZA4GB5IxfXUfpvzAdK3DRNvyNnvOOneKwvf3RDkRm4_DmlxujoVWUlV9oKdJgNlMJ4PyvRLQQ2nES6Xi1wfON_z-d2_sFfiSKzSfKqfa-apSW7zfLUeI2QOKqlDemEuN9MxOe9DszxdbKw74BpMe4wd5s&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FDirectory", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Admin Analytics API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Official_Documentation_URL", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Privacy Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Spaces API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Wireless API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.twilio.com/en-us/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.twilio.com/en-us/legal/tos", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Terms of Service", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Web Widget API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Notes API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack API Testing API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Official_Documentation_URL", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Privacy Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Email API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Firebase Cloud Messaging API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-cloud-messaging", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Stripe Bank Accounts API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://stripe.com/au/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://stripe.com/au/legal", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://docs.stripe.com/rate-limits", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.stripe.com/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://docs.stripe.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://support.stripe.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Pins API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Reporting API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Firebase Realtime Database API", + "scoreBefore": 5, + "scoreAfter": 12, + "moved": [ + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/firebase-realtime-database", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ], + "dropped": [ + { + "url": "https://firebase.google.com/support/privacy", + "from": "Release Notes", + "contradicts": "Release Notes" + } + ] + }, + { + "api": "Slack Messages API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk App Framework API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "AWS IAM Identity Center API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://aws.amazon.com/security/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://repost.aws/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Messages API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=Cs5q0H2HwBYrOQJy4A-6pVScGk-6VS0GZgfUcMo9GsLiwgbQs5Eto_tqJCZa57QNuovIQzWZuWSL61TYED5GnUdpCd2wOiRy6bkzujXPFXyns9Ox1tkVfSWa5Fp-EiVDCxEbjvor9z00HCdfYYqI3sJQR_B09m7TbfuE8lQ4Vnc&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FMessages", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Authentication API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio API for WhatsApp", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Permissions API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Cloud Bigtable API", + "scoreBefore": -18, + "scoreAfter": 24, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://docs.cloud.google.com/bigtable/quotas", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.cloud.google.com/bigtable/docs/release-notes", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-bigtable-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Call Feedback API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.twilio.com/en-us/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.twilio.com/en-us/legal/tos", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Terms of Service", + "to": "Release Notes" + } + ] + }, + { + "api": "Zendesk Integration API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Figma API", + "scoreBefore": -5, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.figma.com/developers/api-rate-limits", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://www.figma.com/developers/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.figma.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://forum.figma.com", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Cloudflare API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.cloudflare.com/cybersecurity/", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.cloudflare.com", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "eBay API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://developer.ebay.com/api-docs/static/rate-limits.html", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://developer.ebay.com/api-docs/static/release-notes.html", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://community.ebay.com", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google AdSense API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-adsense-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Audit Logs API", + "scoreBefore": -9, + "scoreAfter": 19, + "moved": [ + { + "url": "https://api.slack.com/admin/audit-logs#rate-limits", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Ticket Fields API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Azure Blob Storage API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=U_P5gT2XW39BQ6O8XZzh7kJsBEbfzCmJZfbwi_CoWS0Eo5sTduR4DvTqviM7Lw3up5kCZ2-v4-lacz7IpnHXJJq-37C7Rv_jfetZYADA-7jjYY9vxUvCjn40y_qnW1hbx2rx32K3-FLnf_E-Y7belEzS-RzpzaC-Hau--s3PDiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureStorage", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Intercom Lead API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://www.intercom.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.intercom.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Shopify Inventory API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.shopify.com/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.shopify.com/legal/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://shopify.dev/changelog", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.shopify.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.shopify.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Dynamics API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://community.dynamics.com/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack RTM API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Analytics API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Official_Documentation_URL", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Privacy Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Discovery API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk SLA Breaches API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Notifications API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://developers.google.com/youtube/v3/getting-started?hl=pt-br", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://developers.google.com/youtube/v3/revision_history?hl=ar", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph User API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=90qNwhmKFR98VL6RWt6ZI2eVEt655YJECxnKUl3avLhtoHHpaspMcCbozrUIvkJ6qLulvvhDlVtjue5mp7As-byJ9ZK1MEB_ySJnO8BYilslPA4zvFJKA1FosFOSzcKcCcrSQ8D-hhYHQ2ifSBMFuw&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FUser", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack OAuth API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Audit Logs API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Customer Satisfaction API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Call Insights API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.twilio.com/en-us/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.twilio.com/en-us/legal/tos", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Terms of Service", + "to": "Release Notes" + } + ] + }, + { + "api": "Dropbox Admin API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Webhooks API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://community.zendesk.com/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft OneNote API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=t0MsTsPfnHpLjiYyKRaQeDglhHp8C4z8rutd1g9nghyOtjMkQ5XPLKXp5WqNQyJ_p_OlQwdFyisdv3Fk7tDPBlmHuhjHqkxFH4BsRsMS49evjDmSw3HsjYXC86UhudTW6R7kBJH6K0VzJXfycAHzSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FOneNote", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Users API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Azure Speech Service API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JkumqDP_y_jww0x0ER30nlnQquEvun8bO3fG_w0zCs8M1dsWO7NuKkUNLz785fx4RFxlS3pe5JRrjbO1g4ApvCenb5AoENb5G03bQOd7x-lHbn4FGqj2i9AgWhZC8dSmpg5PsAgVZRQsuwygturWyc_puCwzkXakTxrLHGD0NSA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureCognitiveServices", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Talk API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio SMS API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Dropbox Files API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Azure Machine Learning API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=zROw5wHr3lmISbg6g36HwY-keOIjuN3WcImyANj04T07XoKgNJoWmbythyoTptCaooz5Z-Ccr_R8ww6yUtPbwomO4WUeH6NF4X5lnaEWUxenrR7uBiAPKwTIRNqUkoV1EZ_O52JmKFgUC-FmnGR21IHT8q-xMyXthFwXY9z3nS4&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureMachineLearning", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Shopify Discounts API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.shopify.com/legal/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.shopify.com/legal/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://shopify.dev/changelog", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.shopify.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.shopify.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Figma File API", + "scoreBefore": -5, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.figma.com/developers/api/rate-limits", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://www.figma.com/developers/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://www.figma.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://forum.figma.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "MongoDB Realm API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.mongodb.com/legal/privacy/privacy-policy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.mongodb.com/company/contact/mongodb-vulnerability-disclosure-policy", + "from": "Privacy Policy", + "to": "Security Policy" + }, + { + "url": "https://www.mongodb.com/community", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox File Metadata API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Azure Key Vault API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=ZiUGw1Odf4aFfXyPOPzZCHl1O8_PBRUyFBRAqMVHRFuNNMhDSb59uUSNRhOKw7kgMI3W5lMX7v4m0r3CjvVbA2Wvq8m3cGza8MZqZYrCFxeNx0E1qGgs4fcAXyhqD1Fp8PHGh63FsGfhd4NJeKqdHdPnvleqmVVOIyF0ZxrfJUI&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureKeyVault", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack API (General)", + "scoreBefore": -9, + "scoreAfter": 19, + "moved": [ + { + "url": "https://docs.slack.dev/apis/web-api/rate-limits/", + "from": "Privacy Policy", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Content ID API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/youtube-partner-api", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Dropbox Data Loss Prevention API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://www.dropbox.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.dropbox.com/terms", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://www.dropboxforum.com/t5/Announcements/bg-p/101003000", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://www.dropbox.com/features/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://community.dropbox.com/en", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Metrics API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Content Owners API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://policies.google.com/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://developers.google.com/youtube/terms/api-services-terms-of-service", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://support.google.com/youtube/answer/2801895", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Teamwork API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=d3aTO6UGEiexyOD3fkeKfNxcOYXuff0Xb-wVIub1jQuwXs902HC2VyM-933PJaiDIkY6XBxNPt3-_h2WiO6l_dgqqxCF7D_HNOnnT-YYJhleMAgLFnggUSw_YiizF3Gokh9qkbGhuDVcgeOvMlTOYTHP7hGxa0R1iH4Ql7ZysFk&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FTeamwork", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack User API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Custom Fields API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Xero API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://developer.xero.com/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Google Maps Places API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/google-maps-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Bot API", + "scoreBefore": -12, + "scoreAfter": 16, + "moved": [ + { + "url": "https://docs.slack.dev/apis/web-api/rate-limits/", + "from": "Official_Documentation_URL", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.slack.dev/changelog/", + "from": "Privacy Policy", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Identity API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=tQSeWcrYantrCh-3DazJ-Qrs7zgUCL4gPraOHkMrXV9nLJxokK_d22YM5gZ3uduWQYIkLPVxAYZvbd-W9MI_UHy0aKmgcQKBRBLzsltrOJZ6ZB_EYVH-G6PAvuxYY9LqObCamB3Ytrf4zLX7CxAUI9IBPOr4gsmohaNIa8Q_B-w&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FIdentity", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Scopes API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk Insights API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Stripe Payments API", + "scoreBefore": -15, + "scoreAfter": 20, + "moved": [ + { + "url": "https://stripe.com/au/privacy", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://stripe.com/au/legal", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://docs.stripe.com/rate-limits", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://docs.stripe.com/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + }, + { + "url": "https://docs.stripe.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://support.stripe.com/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Cloud Tasks API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/cloud-tasks-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Google Maps Geolocation API", + "scoreBefore": 5, + "scoreAfter": 19, + "moved": [ + { + "url": "https://cloud.google.com/security", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://groups.google.com/access-error?continue=https://groups.google.com/g/maps-api-geolocation", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Slack Status API", + "scoreBefore": -6, + "scoreAfter": 15, + "moved": [ + { + "url": "https://docs.slack.dev/changelog/", + "from": "Terms of Service", + "to": "Release Notes" + }, + { + "url": "https://slack.com/intl/en-au/trust/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://slackcommunity.com/", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph Teams API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=8MRaro1axFVPLv-5Jw7hsabra579tmzGn2McuMYY8p6krWq5v85WyJhQDQs301KpZwMpEuPq2y8KA_70w5zH7JE1E_QNA-qO_HSjSINYxL7dcr_P6Wqk8bh9RsStJz4YJ8O--gsQxhW45zkhlv1MBQ&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FTeams", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Azure DevOps API", + "scoreBefore": 1, + "scoreAfter": 15, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=Cgaoc2ik8LTspiHuGZeeQSl4YBnS1jv8nPujNaXjD1ZqICxMo_UHgKScVQGMbo_jmAGze3tWjlpO3GP0q4xuMpbmUzW5yBCuY_xyq2BsqlTK0_JGB6uvbzA_VEnOKjv-tBN3wLkp-nSf02ueHDtE4rNPYsqmHj5S0JjOxt_UIJM&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FAzureDevOps", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Spotify Follow API", + "scoreBefore": 9, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.spotify.com/us/legal/security/", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://developer.spotify.com/community/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Spotify API", + "scoreBefore": 9, + "scoreAfter": 23, + "moved": [ + { + "url": "https://www.spotify.com/us/legal/security/", + "from": "Release Notes", + "to": "Security Policy" + }, + { + "url": "https://developer.spotify.com/community/", + "from": "Security Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Azure Bot Service API", + "scoreBefore": -2, + "scoreAfter": 12, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Terms of Service", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=JR0rIU5PpefkLwJmdBjteOAy3YJ0DmKB9DLuCjwuAmHrn-HI_vlxwUQfQs5P1frDbeBOUAy0y_3nY3OVz33DZHR5EaaEQaFGaM1VGLq4naYMpyLDCIpo3GY1XpkYPCO7uWIwADpq1DpD9IO6LbKeHEIVop0hOiYyWgC-fAhT8JE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FBotFramework", + "from": "Rate Limiting Policy", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "YouTube Live API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://groups.google.com/g/youtube-api", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Microsoft Graph To-Do API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=eA5z9uH5wD78dGoyLIBbKp_MkAwag9X4HJEMPZuCaYEg68YdTTE9LFFfvuos8pvSuWcJQaPQtcQcwYY7ez4KAGSIPDuPx0MwBVy3bdsHHPYojLMlxr21Cot-45ApAfbaGhR4N2Vw-oae22aCL8bcHA&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FToDo", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Twilio Email API", + "scoreBefore": 8, + "scoreAfter": 15, + "moved": [ + { + "url": "https://www.twilio.com/en-us/changelog", + "from": "Rate Limiting Policy", + "to": "Release Notes" + } + ] + }, + { + "api": "Microsoft Graph Calendar Events API", + "scoreBefore": -2, + "scoreAfter": 19, + "moved": [ + { + "url": "https://learn.microsoft.com/en-us/graph/throttling", + "from": "Terms of Service", + "to": "Rate Limiting Policy" + }, + { + "url": "https://learn.microsoft.com/en-us/security", + "from": "Rate Limiting Policy", + "to": "Security Policy" + }, + { + "url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=09213cdc-9f30-4e82-aa6f-9b6e8d82dab3&redirect_uri=https%3A%2F%2Ftechcommunity.microsoft.com%2Ft5%2Fs%2Fauth%2Foauth2callback%2Fproviderid%2Fdefault&response_type=code&state=2JHWBkEFTQl7qFFT4QORVaL3WsuG8uakeO2q4DXhhl4tmPE3Py9AwG31nOJFLQAzcG3h0bhXMAzRJXnQj2_E1SGMjtdbD_7zonGs9fh4cAODRvtXtBv4mL4pPAXugdPyOPshWu0aXU5mVgklHudZXY7t3_qJ0N7Or93NwZ_3oiE&scope=User.Read+openid+email+profile+offline_access&referer=https%3A%2F%2Ftechcommunity.microsoft.com%2Fcategory%2FCalendarEvents", + "from": "Release Notes", + "to": "Developer Community/Forum" + } + ] + }, + { + "api": "Zendesk SLA Policies API", + "scoreBefore": -9, + "scoreAfter": 12, + "moved": [ + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/privacy-notice/", + "from": "Official_Documentation_URL", + "to": "Privacy Policy" + }, + { + "url": "https://www.zendesk.com/au/company/agreements-and-terms/zendesk-customer-agreement/", + "from": "Privacy Policy", + "to": "Terms of Service" + }, + { + "url": "https://community.zendesk.com/", + "from": "Terms of Service", + "to": "Developer Community/Forum" + } + ] + } + ] +} diff --git a/package.json b/package.json index fb1e85f..6b4c7ad 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,10 @@ "test": "mocha", "check-links": "node tools/check-links.mjs", "check-links:fix": "node tools/check-links.mjs --fix", - "mcp": "node mcp/server.mjs" + "mcp": "node mcp/server.mjs", + "realign": "node tools/realign-columns.mjs", + "realign:apply": "node tools/realign-columns.mjs --apply", + "verify-alignment": "node tools/verify-alignment.mjs" }, "keywords": [], "author": "", diff --git a/test/link-classify.test.cjs b/test/link-classify.test.cjs index de555b1..9593815 100644 --- a/test/link-classify.test.cjs +++ b/test/link-classify.test.cjs @@ -129,3 +129,38 @@ describe('column misalignment', function () { assert.strictEqual(mod.misalignedAs({}), null); }); }); + +describe('API-name-aware hints', function () { + // "AWS Security Hub API" has `security` in its documentation URL because that + // is what the product is called. Without discounting the API's own name, such + // rows look permanently misfiled and no repair can drive the count to zero. + it('does not flag a policy word that comes from the API name', function () { + assert.strictEqual( + mod.misalignedAs({ + API_Name: 'AWS Security Hub API', + Official_Documentation_URL: 'https://docs.aws.amazon.com/securityhub/latest/userguide/', + }), + null + ); + }); + + it('still flags the same word when the name does not explain it', function () { + assert.strictEqual( + mod.misalignedAs({ + API_Name: 'Dropbox File Request API', + Official_Documentation_URL: 'https://www.dropbox.com/security', + }), + 'Security Policy' + ); + }); + + it('does not treat a vendor documentation host as a community link', function () { + assert.strictEqual(mod.hintMatches('Developer Community/Forum', 'https://docs.slack.dev/reference/'), false); + assert.strictEqual(mod.hintMatches('Developer Community/Forum', 'https://slackcommunity.com/'), true); + }); + + it('does not match "tos" inside an unrelated word', function () { + assert.strictEqual(mod.hintMatches('Terms of Service', 'https://developers.google.com/photos'), false); + assert.strictEqual(mod.hintMatches('Terms of Service', 'https://openai.com/policies/terms-of-use/'), true); + }); +}); diff --git a/test/realign.test.cjs b/test/realign.test.cjs new file mode 100644 index 0000000..e14b947 --- /dev/null +++ b/test/realign.test.cjs @@ -0,0 +1,64 @@ +const assert = require('assert'); + +let realign; +before(async function () { + realign = await import('../tools/realign-columns.mjs'); +}); + +const COLUMNS = [ + 'Official_Documentation_URL', + 'Privacy Policy', + 'Terms of Service', + 'Rate Limiting Policy', + 'Release Notes', + 'Security Policy', + 'Developer Community/Forum', +]; + +describe('column realignment', function () { + // The old cleaner dropped broken URLs instead of blanking them, so a row that + // lost its documentation URL came back with everything shifted one left. The + // surviving values keep their relative order, which is what makes the damage + // recoverable. + it('reassigns a left-shifted row back to the right columns', function () { + const urls = [ + 'https://www.dropbox.com/privacy', + 'https://www.dropbox.com/terms', + 'https://www.dropbox.com/features/security', + 'https://community.dropbox.com/en', + ]; + const { placement } = realign.bestAssignment(urls, COLUMNS, 'Dropbox File Request API'); + assert.deepStrictEqual(placement.map((i) => COLUMNS[i]), [ + 'Privacy Policy', + 'Terms of Service', + 'Security Policy', + 'Developer Community/Forum', + ]); + }); + + it('preserves order — a later URL never lands in an earlier column', function () { + const urls = ['https://example.com/security', 'https://example.com/privacy']; + const { placement } = realign.bestAssignment(urls, COLUMNS); + assert.ok(placement[0] < placement[1], 'assignment must be monotonic'); + }); + + it('leaves an already-correct row untouched', function () { + const urls = [ + 'https://docs.stripe.com/api', + 'https://stripe.com/privacy', + 'https://stripe.com/legal', + ]; + const { placement } = realign.bestAssignment(urls, COLUMNS, 'Stripe API'); + assert.deepStrictEqual(placement, [0, 1, 2]); + }); + + it('refuses to assign more URLs than there are columns', function () { + const urls = new Array(COLUMNS.length + 1).fill('https://example.com/x'); + assert.strictEqual(realign.bestAssignment(urls, COLUMNS).placement, null); + }); + + it('scores a contradicting placement negatively so it can be blanked', function () { + assert.ok(realign.score('https://example.com/privacy', 'Rate Limiting Policy') < 0); + assert.strictEqual(realign.score('https://example.com/privacy', 'Privacy Policy'), 4); + }); +}); diff --git a/tools/check-links.mjs b/tools/check-links.mjs index c65cb38..00dd6f5 100644 --- a/tools/check-links.mjs +++ b/tools/check-links.mjs @@ -91,19 +91,39 @@ const isProbeableUrl = (value) => typeof value === 'string' && /^https?:\/\//i.t */ const COLUMN_HINTS = { 'Privacy Policy': /privacy/i, - 'Terms of Service': /(terms|tos|legal|conditions)/i, + 'Terms of Service': /(terms|[\/-]tos([\/.?#-]|$)|legal|conditions)/i, 'Rate Limiting Policy': /(rate.?limit|throttl|quota|limits)/i, - 'Release Notes': /(release|changelog|change-log|whats-new|news)/i, + 'Release Notes': /(release|changelog|change-log|whats-new|what-s-new|announcement|announce)/i, 'Security Policy': /(security|trust|vulnerab)/i, - 'Developer Community/Forum': /(community|forum|discuss|groups|stackoverflow|slack|discord)/i, + // Bare `slack`/`discord` matched the vendors' own documentation hosts + // (docs.slack.dev), and bare `groups` is too broad; match the community + // surfaces themselves instead. + 'Developer Community/Forum': + /(community|forum|discuss|groups\.google\.com|stackoverflow|discord\.(gg|com\/invite))/i, +}; + +/** + * Does `url` signal that it belongs in `column`? + * + * The API's own name is discounted: "AWS Security Hub API" has `security` in its + * documentation URL because that is what the product is called, not because the + * cell is misfiled. Without this, every API named after a policy word looks + * permanently broken and no repair can ever drive the count to zero. + */ +const hintMatches = (column, url, apiName = '') => { + const hint = COLUMN_HINTS[column]; + if (!hint || !hint.test(url)) return false; + if (apiName && hint.test(apiName)) return false; + return true; }; /** Does this row's documentation cell actually look like some other column? */ const misalignedAs = (row) => { const value = (row.Official_Documentation_URL || '').trim(); if (!isProbeableUrl(value)) return null; - for (const [column, pattern] of Object.entries(COLUMN_HINTS)) { - if (pattern.test(value)) return column; + const apiName = row[NAME_COLUMN] || ''; + for (const column of Object.keys(COLUMN_HINTS)) { + if (hintMatches(column, value, apiName)) return column; } return null; }; @@ -436,7 +456,7 @@ const main = async () => { process.exitCode = 0; }; -export { classify, normalise, isProbeableUrl, misalignedAs, OUTCOME }; +export { classify, normalise, isProbeableUrl, misalignedAs, hintMatches, COLUMN_HINTS, OUTCOME }; if (import.meta.url === `file://${process.argv[1]}` || process.argv[1]?.endsWith('check-links.mjs')) { main().catch((err) => { diff --git a/tools/realign-columns.mjs b/tools/realign-columns.mjs new file mode 100644 index 0000000..5033ae4 --- /dev/null +++ b/tools/realign-columns.mjs @@ -0,0 +1,239 @@ +/** + * realign-columns.mjs — repair rows whose columns are shifted left. + * + * utils/verify_and_clean_csv.py used to *drop* a URL it judged broken instead of + * blanking it, which shortened the row and shifted every later value one column + * left. The result is rows that are not stale but mislabelled: a privacy policy + * filed as the documentation URL, a community forum filed as the terms of service. + * + * The damage is recoverable because dropping preserves order. The surviving URLs + * are still in their original relative sequence, just compressed toward the left, + * so repair is an order-preserving assignment of the observed URLs back onto the + * column slots — solved exactly here with dynamic programming, scored on what each + * URL looks like. + * + * node tools/realign-columns.mjs # dry run: report what would change + * node tools/realign-columns.mjs --apply # write the repaired CSV + */ + +import fs from 'node:fs'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { parse } from 'csv-parse/sync'; +import { stringify } from 'csv-stringify/sync'; +import { COLUMN_HINTS, hintMatches, isProbeableUrl } from './check-links.mjs'; + +const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); +const CSV_PATH = path.join(ROOT, 'api-docs-urls.csv'); +const DATASETS = path.join(ROOT, 'datasets'); + +const NAME_COLUMN = 'API_Name'; +const DOC_COLUMN = 'Official_Documentation_URL'; + +/** Looks like reference material rather than a policy or a forum. */ +const DOC_PATTERN = /(\/docs?|documentation|developer|\/reference|\/api|\/guide)/i; + +const APPLY = process.argv.includes('--apply'); + +/** + * How well does `url` fit `column`? + * + * Positive only on real evidence. A URL with no recognisable signal scores zero + * everywhere, so it is placed by order alone and never drags a row into a + * rearrangement on its own. + */ +const score = (url, column, apiName = '') => { + if (hintMatches(column, url, apiName)) return 4; + + // Belongs somewhere else, clearly. + const foreign = Object.keys(COLUMN_HINTS).find( + (other) => other !== column && hintMatches(other, url, apiName) + ); + if (foreign) return -3; + + if (column === DOC_COLUMN && DOC_PATTERN.test(url)) return 3; + return 0; +}; + +/** + * Assign `urls` (in order) to `columns` (in order), leaving gaps where a value is + * missing, maximising total score. Every URL must be placed; a column may be left + * empty. Returns { total, placement } where placement[i] is the column index for + * urls[i], or null when no valid assignment exists (more URLs than columns). + */ +const bestAssignment = (urls, columns, apiName = '') => { + const m = urls.length; + const n = columns.length; + if (m > n) return { total: -Infinity, placement: null }; + + const NEG = -Infinity; + // dp[i][j] = best score placing urls[i..] into columns[j..] + const dp = Array.from({ length: m + 1 }, () => new Array(n + 1).fill(NEG)); + const takeHere = Array.from({ length: m + 1 }, () => new Array(n + 1).fill(false)); + + for (let j = 0; j <= n; j += 1) dp[m][j] = 0; // everything placed + + for (let i = m - 1; i >= 0; i -= 1) { + for (let j = n - 1; j >= 0; j -= 1) { + const skip = dp[i][j + 1]; // leave column j empty + const place = dp[i + 1][j + 1] === NEG + ? NEG + : score(urls[i], columns[j], apiName) + dp[i + 1][j + 1]; + if (place >= skip) { + dp[i][j] = place; + takeHere[i][j] = true; + } else { + dp[i][j] = skip; + } + } + } + + if (dp[0][0] === NEG) return { total: NEG, placement: null }; + + const placement = new Array(m); + let i = 0; + let j = 0; + while (i < m && j < n) { + if (takeHere[i][j]) { + placement[i] = j; + i += 1; + } + j += 1; + } + return { total: dp[0][0], placement }; +}; + +const main = () => { + const raw = fs.readFileSync(CSV_PATH, 'utf8'); + const rows = parse(raw, { + columns: true, + skip_empty_lines: true, + bom: true, + relax_column_count: true, + trim: true, + }); + + const allColumns = Object.keys(rows[0]); + const urlColumns = allColumns.filter((c) => c !== NAME_COLUMN); + + const changes = []; + let unrepairable = 0; + let leftAlone = 0; + + for (const row of rows) { + const observed = urlColumns + .map((column) => (row[column] || '').trim()) + .filter((value) => isProbeableUrl(value)); + + // A row carrying every column lost nothing, so nothing shifted. + if (observed.length === urlColumns.length) { + leftAlone += 1; + continue; + } + + const apiName = row[NAME_COLUMN] || ''; + const { total, placement } = bestAssignment(observed, urlColumns, apiName); + if (!placement) { + unrepairable += 1; + continue; + } + + // The status quo is left-packed: urls[i] currently sits in column i. + const identity = observed.reduce((sum, url, i) => sum + score(url, urlColumns[i], apiName), 0); + + // Only move on strict evidence. Equal scores mean the content tells us + // nothing the current order does not, so the row is left as found. + if (total <= identity) { + leftAlone += 1; + continue; + } + + const moved = []; + const dropped = []; + const next = {}; + for (const column of urlColumns) next[column] = ''; + observed.forEach((url, i) => { + const column = urlColumns[placement[i]]; + + // The DP places every URL somewhere, but sometimes the only slot left + // is one the URL plainly contradicts — two community links competing + // for one community column, say. Filing it anyway would recreate the + // exact defect this tool exists to repair, and a mislabelled URL is + // worse than a missing one: the cell is left blank and the URL is + // recorded in the report for a human to place. + if (score(url, column, apiName) < 0) { + dropped.push({ url, from: urlColumns[i], contradicts: column }); + return; + } + + next[column] = url; + if (urlColumns[i] !== column) { + moved.push({ url, from: urlColumns[i], to: column }); + } + }); + + if (moved.length === 0 && dropped.length === 0) { + leftAlone += 1; + continue; + } + + changes.push({ + api: row[NAME_COLUMN], + scoreBefore: identity, + scoreAfter: total, + moved, + ...(dropped.length ? { dropped } : {}), + }); + for (const column of urlColumns) row[column] = next[column]; + } + + const urlsMoved = changes.reduce((sum, change) => sum + change.moved.length, 0); + const urlsBlanked = changes.reduce((sum, change) => sum + (change.dropped?.length || 0), 0); + + console.error(`rows ${rows.length}`); + console.error(` realigned ${changes.length} (${urlsMoved} URLs moved)`); + console.error(` blanked ${urlsBlanked} URLs that contradicted every free column`); + console.error(` left as found ${leftAlone}`); + console.error(` unrepairable ${unrepairable}`); + + for (const change of changes.slice(0, 8)) { + console.error(`\n ${change.api} (${change.scoreBefore} -> ${change.scoreAfter})`); + for (const move of change.moved) { + console.error(` ${move.from} -> ${move.to}`); + console.error(` ${move.url}`); + } + } + if (changes.length > 8) console.error(`\n ... and ${changes.length - 8} more rows`); + + fs.mkdirSync(DATASETS, { recursive: true }); + fs.writeFileSync( + path.join(DATASETS, 'realignment.json'), + `${JSON.stringify( + { + rows: rows.length, + realigned: changes.length, + urlsMoved, + urlsBlanked, + leftAlone, + unrepairable, + changes, + }, + null, + 2 + )}\n` + ); + + if (APPLY) { + fs.writeFileSync( + CSV_PATH, + stringify(rows, { header: true, columns: allColumns, record_delimiter: '\r\n' }) + ); + console.error(`\napplied to ${path.basename(CSV_PATH)}`); + } else { + console.error('\ndry run — pass --apply to write the changes'); + } +}; + +export { score, bestAssignment }; + +if (process.argv[1]?.endsWith('realign-columns.mjs')) main(); diff --git a/tools/verify-alignment.mjs b/tools/verify-alignment.mjs new file mode 100644 index 0000000..2f9925b --- /dev/null +++ b/tools/verify-alignment.mjs @@ -0,0 +1,79 @@ +/** + * verify-alignment.mjs — check that no column-shifted rows remain. + * + * A clean result from a detector proves nothing on its own: a detector that + * always returns zero also reports zero. So this runs a **negative control** + * first — it deliberately re-breaks a copy of the data the same way the old + * cleaner did, and requires the detector to catch it. Only if the control fires + * is a zero on the real data worth anything. + * + * node tools/verify-alignment.mjs + * + * Exits non-zero if shifted rows remain, or if the control fails to fire. + */ + +import fs from 'node:fs'; +import path from 'node:path'; +import { fileURLToPath } from 'node:url'; +import { parse } from 'csv-parse/sync'; +import { misalignedAs } from './check-links.mjs'; + +const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..'); +const CSV_PATH = path.join(ROOT, 'api-docs-urls.csv'); + +const NAME_COLUMN = 'API_Name'; + +const load = () => + parse(fs.readFileSync(CSV_PATH, 'utf8'), { + columns: true, + skip_empty_lines: true, + bom: true, + relax_column_count: true, + trim: true, + }); + +const countShifted = (rows) => rows.filter((row) => misalignedAs(row)).length; + +/** + * Reproduce the original corruption: drop empty cells so later values slide left, + * exactly as the old verify_and_clean_csv.py did when it skipped a broken URL. + */ +const reshift = (rows, columns) => + rows.map((row) => { + const values = columns.map((column) => (row[column] || '').trim()).filter(Boolean); + const broken = { [NAME_COLUMN]: row[NAME_COLUMN] }; + columns.forEach((column, i) => { + broken[column] = values[i] || ''; + }); + return broken; + }); + +const rows = load(); +const columns = Object.keys(rows[0]).filter((c) => c !== NAME_COLUMN); + +// Negative control first — if this does not fire, the real result is meaningless. +const control = countShifted(reshift(rows, columns)); +const actual = countShifted(rows); + +console.log(`negative control (data deliberately re-shifted): ${control} rows detected`); +console.log(`api-docs-urls.csv: ${actual} rows detected`); + +const failures = []; +if (control === 0) { + failures.push( + 'negative control did not fire — the detector cannot see the defect it is ' + + 'meant to catch, so a clean result on the real data proves nothing' + ); +} +if (actual > 0) { + failures.push(`${actual} rows still have a URL filed under the wrong column`); + for (const row of rows.filter((r) => misalignedAs(r)).slice(0, 10)) { + failures.push(` ${row[NAME_COLUMN]} — documentation cell looks like ${misalignedAs(row)}`); + } +} + +if (failures.length) { + console.error(`\nFAILED:\n ${failures.join('\n ')}`); + process.exit(1); +} +console.log('\nno column-shifted rows remain, and the control confirms the detector works'); diff --git a/utils/verify_and_clean_csv.py b/utils/verify_and_clean_csv.py index dd47a84..a829ecf 100644 --- a/utils/verify_and_clean_csv.py +++ b/utils/verify_and_clean_csv.py @@ -1,42 +1,65 @@ import csv -import requests import os +import requests + +# Column layout of api-docs-urls.csv. A row must always be written with this many +# fields: the position of a value is what says which kind of resource it is. +EXPECTED_FIELDS = 8 + + ## Function to check if a URL is broken -## Returns True if URL was not found (404 status code) or if an error occurred +## Returns True only when the server actually says the page is gone. +## +## Anything else — a timeout, a TLS error, a 403 from a bot-detecting CDN — means +## we failed to reach the page, which is not evidence that it does not exist. +## Treating those as broken would delete good URLs on a slow network. def is_broken_url(url): headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36' } try: - response = requests.get(url, timeout=5, allow_redirects=True, headers=headers) - return response.status_code == 404 - except requests.exceptions.RequestException as e: - return True + response = requests.get(url, timeout=15, allow_redirects=True, headers=headers) + return response.status_code in (404, 410) + except requests.exceptions.RequestException: + return False def verify_csv(file_path): cleaned_rows = [] invalid_urls = 0 - with open(file_path, mode='r') as file: + with open(file_path, mode='r', encoding='utf-8-sig') as file: csv_reader = csv.reader(file) header = next(csv_reader) cleaned_rows.append(header) for row in csv_reader: + if not row: + continue api_name = row[0] urls = row[1:] cleaned_row = [api_name] for url in urls: - if is_broken_url(url): + if url and is_broken_url(url): print(f"URL for {api_name} is invalid: {url}") + invalid_urls += 1 + # Blank the cell, never drop it. Dropping shortens the row, + # which shifts every later value one column to the left — so a + # privacy policy ends up filed as the documentation URL. That + # is how 191 rows in this dataset came to be mislabelled. + cleaned_row.append('') else: cleaned_row.append(url) - if len(cleaned_row) > 1: - cleaned_rows.append(cleaned_row) + + # Pad rather than truncate: a short row read back in would be + # misinterpreted the same way. + while len(cleaned_row) < EXPECTED_FIELDS: + cleaned_row.append('') + cleaned_rows.append(cleaned_row) return cleaned_rows, invalid_urls + def clean_csv(file_path, cleaned_rows): - with open(file_path, mode='w', newline='') as file: + with open(file_path, mode='w', newline='', encoding='utf-8') as file: csv_writer = csv.writer(file) for row in cleaned_rows: csv_writer.writerow(row) @@ -55,5 +78,4 @@ def clean_csv(file_path, cleaned_rows): print(f"Verification complete.") print(f"Beginning cleaning of the CSV file: {csv_file_path}") clean_csv(csv_file_path, cleaned_rows) - print(f"Cleaned {invalid_urls} invalid URLs from the CSV file.") - \ No newline at end of file + print(f"Blanked {invalid_urls} invalid URLs in the CSV file.")