Loading...

Performing simple Azure Table Storage REST API operations using curl command.

Performing simple Azure Table Storage REST API operations using curl command.

The blog provides guidance to perform simple Table Storage REST API operations such as Create table, Delete Table, Insert entity, Delete entity, Merge entity, Get Table properties, Get Table Storage Stats, Query Table, Query Entities and Update entities operations using curl command.

 

Let us look at some of the command syntax to perform REST API operations and we will be making use of SAS token as the authentication mechanism. We need to take care of the pointers below while performing the operations via curl command: 

  • Ensure the URL is formed correctly as per the operation you are trying to perform.
  • The mandatory header needs to be passed along with correct values for it.
  • Ensure you are appending/removing extra ‘?’ to the SAS token in the URLs accordingly.
  • Http verb can be GET, PUT or DELETE as provided by the REST API specifications.

So let's began:

  1. Get Table Storage Properties: 

This Rest API gets the properties of an Azure Table Storage account. Reference link for Rest API is:

Get Table Service Properties (REST API) - Azure Storage | Microsoft Learn

Syntax URL:

 

curl -X GET "https://<storageacccountname>.table.core.windows.net/?restype=service&comp=properties<SAS_token>" -H "x-ms-date:2024-02-23T03:24Z" -H "x-ms-version:2020-04-08"

 


Output:

ShraddhaSwadi_0-1724391575801.png

 

  1. Get Table Storage Stats:

This Rest API retrieves statistics that are related to replication for Azure Table Storage. This operation works only on the secondary location endpoint when we have RAGRS replication enabled for the storage account. Reference link: Get Table Service Stats (REST API) - Azure Storage | Microsoft Learn

Syntax URL:

 

curl -X GET "https://storageaccount-secondary.table.core.windows.net/?restype=service&comp=stats&<SAS_token>” -H "x-ms-date:2024-02-23T03:24Z" -H "x-ms-version:2020-04-08"

 

 

Output:

ShraddhaSwadi_1-1724391575806.png

 

  1. Query tables: 
    This Rest API returns a list of tables under the specified account. Reference link:
    Query Tables (REST API) - Azure Storage | Microsoft Learn

Syntax URL: 

 

curl -X GET "https://storageaccount.table.core.windows.net/Tables?<SAS_token>" -H "x-ms-date:2024-02-23T18:16:35Z" -H "x-ms-version:2020-04-08"

 

 

Output:

ShraddhaSwadi_2-1724391575829.png

  1. Create table: 

This Rest API creates a new table in a storage account. Reference link: Create Table (REST API) - Azure Storage | Microsoft Learn

Syntax URL: 

 

curl -X POST "https://storageaccount.table.core.windows.net/Tables?<SAS_token> " -H "x-ms-date:2024-02-23T18:16:35Z" -H "x-ms-version:2020-04-08" -H "Content-Length: 27" -H "Content-Type: application/json" -d "{\"TableName\":\"sampletable\"}

 


Output:

ShraddhaSwadi_3-1724391575842.png

 

ShraddhaSwadi_4-1724391575847.png

 

 

  1. Delete table:  
    This Rest API deletes a table in a storage account. Reference link: Delete Table (REST API) - Azure Storage | Microsoft Learn

Syntax URL: 

 

curl -X DELETE "https://storageaccount.table.core.windows.net/Tables('sampletable')?<SAS_token> " -H "x-ms-date:2024-02-23T18:16:35Z" -H "x-ms-version:2020-04-08" -H "Content-Type: application/json"

 

 
Output:

ShraddhaSwadi_5-1724391575849.png

 

ShraddhaSwadi_6-1724391575853.png

 

  1. Query Entities:
    This Rest API queries entities in a table and includes the $filter and $select options. Reference link: Query Entities (REST API) - Azure Storage | Microsoft Learn

Syntax URL: 

 

curl -X GET "https://storageaccount.table.core.windows.net/shswadsampletable1(PartitionKey='B',RowKey='1')?<SAS_token> " -H "x-ms-date:2024-02-24T10:14:50.2646880Z" -H "x-ms-version:2020-04-08"

 

 
Output:

ShraddhaSwadi_7-1724391575858.png

 

ShraddhaSwadi_8-1724391575863.png

 

  1. Delete Entity Operation:
    This Rest API deletes an existing entity in a table. Reference link: Delete Entity (REST API) - Azure Storage | Microsoft Learn

Syntax URL: 

 

curl -X DELETE "https://storageaccount.table.core.windows.net/shswadsampletable1(PartitionKey%3D'B'%2C%20RowKey%3D'1')?<SAS_token> " -H "x-ms-date:2024-02-24T11:14:50.2646880Z" -H "x-ms-version:2020-04-08" -H "If-Match:*"

 

 
Output:

ShraddhaSwadi_9-1724391575864.png

 

ShraddhaSwadi_10-1724391575868.png

 

  1. Insert Operation:

This Rest API inserts a new entity into a table. Reference link: Insert Entity (REST API) - Azure Storage | Microsoft Learn

Syntax URL: 

 

curl -X POST "https://storageaccount.table.core.windows.net/test?<SAS_token> " -H "x-ms-date: 2024-02-25T10:39:50.2646880Z" -H "x-ms-version: 2020-04-08" -H "Accept: application/json;odata=nometadata" -H "Content-Type: application/json" -d "{\"RowKey\":\"bbb\",\"PartitionKey\":\"ssss\",\"Name\":\"aaa\",\"PhoneNumber\":\"111\"}"

 

 
Output:

ShraddhaSwadi_11-1724391575871.png

 

ShraddhaSwadi_12-1724391575875.png

 

  1. Update operation:

This Rest API updates the existing entity in the Table Storage. Reference link: Update Entity (REST API) - Azure Storage | Microsoft Learn

 

Syntax URL: 

 

curl -X PUT "https://storageaccount.table.core.windows.net/test(PartitionKey%3D'ss'%2C%20RowKey%3D'bbb')?<SAS_token> " -H "x-ms-date: 2024-02-25T10:39:50.2646880Z" -H "x-ms-version: 2020-04-08" -H "Accept: application/json;odata=nometadata" -H "Content-Type: application/json" -H "If-Match=*" -d "{\"RowKey\":\"bbb\",\"PartitionKey\":\"ssss\",\"Name\":\"aaa\",\"PhoneNumber\":\"111\"}

 

 
Output

ShraddhaSwadi_13-1724391575877.png

 

ShraddhaSwadi_14-1724391575884.png

 

Merge operation:
This Rest API operation updates an existing entity by updating the entity's properties and does not replace the existing entity, Reference link: Merge Entity (REST API) - Azure Storage | Microsoft Learn

 

Syntax URL:  

 

curl -X PUT "https://storageaccount.table.core.windows.net/test(PartitionKey%3D'ssss'%2C%20RowKey%3D'bbb')?<SAS_token> " -H "x-ms-version: 2020-04-08" -H "Accept: application/json;odata=nometadata" -H "Content-Type: application/json" -H "If-Match=*" -d "{\"RowKey\":\"bbb\",\"PartitionKey\":\"ssss\",\"Name\":\"aaa\",\"PhoneNumber\":\"11231\"}"

 

 
Output:

ShraddhaSwadi_15-1724391575886.png

 

ShraddhaSwadi_16-1724391575890.png

 

Hope this article helps you in performing the Table Storage operations by making use of curl command.

 

Happy Learning!

Published on:

Learn more
Azure PaaS Blog articles
Azure PaaS Blog articles

Azure PaaS Blog articles

Share post:

Related posts

Primer: Output Data Generated with an Azure Automation Runbook to a SharePoint List

The second part of the Azure Automation runbook primer brings us to output, specifically how to create items generated by a runbook in a Share...

6 hours ago

Databricks vs Azure Synapse Analytics: A Comprehensive Comparison for Modern Data Solutions

Table of Contents Introduction Data is at the core of modern business decision-making. As companies increasingly rely on data-driven insights,...

22 hours ago

Primer: How to Use Azure Automation to Run Microsoft Graph PowerShell SDK Scripts

A reader asked why it seems so difficult to use Azure Automation runbooks to process Microsoft 365 data. In fact, it's not so hard, and here's...

1 day ago

Extending Regular Expressions (Regex) Support on Azure SQL Managed Instance (MI)

We are happy to announce the Private Preview of Regular Expressions (Regex) support on Azure SQL Managed Instance (MI). This new feature bring...

1 day ago

Final Days for the MSOnline and AzureAD PowerShell Modules

After many twists and turns since August 2021, the MSOnline module retirement will happen in April 2025. The AzureAD module will then retire i...

7 days ago

Join the Conversation: Call for Proposals for Azure Cosmos DB Conf 2025!

Are you passionate about Azure Cosmos DB? Do you have insights, experiences, or innovations that the developer community would love to hear? N...

7 days ago
Stay up to date with latest Microsoft Dynamics 365 and Power Platform news!
* Yes, I agree to the privacy policy