Headless BigID: Difference between revisions

From BigID Developer Portal
No edit summary
No edit summary
 
(21 intermediate revisions by the same user not shown)
Line 2: Line 2:
<style>
<style>
.head {
.head {
    max-width:600px;
     width:40vw;
     width:40vw;
}
}
header {
header {
     display: flex;
     display: flex;
}
.page-heading {
display: none;
}
@media only screen and (max-width: 600px) {
  header {
    flex-direction: column-reverse;
  }
  .head { width:100%; max-width:100%;}
}
}
</style>
</style>
Line 13: Line 23:
<p>Learn how to use BigID programmatically through a series of tutorials going through commonly automated tasks.</p>
<p>Learn how to use BigID programmatically through a series of tutorials going through commonly automated tasks.</p>
</div>
</div>
<img class="head" src="/cdn/halloween21/headlessman.png"/>
<img class="head" src="https://wiki-images.bigid.tools/cdn/halloween21/headlessman.png"/>
</header>
</header>
</html>
</html>
==About the API==
BigID was designed as an open platform. Any action that can be performed in our UI can also be done programatically. This allows you to connect anything and everything to the data discovery capabilities of your BigID system. No matter your affiliation (or lack thereof) with BigID, the API is here and open for you to use.
==Start Building==
{{Featured|Getting Started with the BigID API|Learn how to Authenticate with the BigID API|/wiki/BigID_API/Tutorial}}
{{Featured|Getting Started with the BigID API|Learn how to Authenticate with the BigID API|/wiki/BigID_API/Tutorial}}
{{Featured|Executing DSARs via API|Run a DSAR on a user by email address|/wiki/BigID_API/Tutorial}}
{{Featured|Executing DSARs via API|Run a DSAR on a user by email address|/wiki/BigID_API/DSAR_Tutorial}}
{{Featured|Add Data Sources via API|Add a database from an external inventory system|/wiki/BigID API/Add Data Source Tutorial}}

Latest revision as of 19:43, 4 March 2022

Follow along with me! Nothing scary here!

Learn how to use BigID programmatically through a series of tutorials going through commonly automated tasks.

About the API

BigID was designed as an open platform. Any action that can be performed in our UI can also be done programatically. This allows you to connect anything and everything to the data discovery capabilities of your BigID system. No matter your affiliation (or lack thereof) with BigID, the API is here and open for you to use.

Start Building