Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

URI template for POST/PUT restful service

Tags:

rest

wcf

c#-4.0

api

I am going to write a restful API, my requirement is to call methods on “Transaction” object, I was wondering how I should call Post/PUT with appropriate URI template so that I can Create/update the Transaction resource without using “verbs” in Uri mapping.

[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "/Transaction/{**What to write here ????**}", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
public Transaction AddTransaction(Transaction transaction)
{
    return AddTransactionToRepository(transaction);
}

[OperationContract]
[WebInvoke(Method = "PUT", UriTemplate = "/Transaction/{**What to write here ????**}", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)] 
public Transaction UpdateTransaction(Transaction transaction)
{
    return UpdateTransactionInRepository(transaction);
}

Please consider that I want to apply best practice for uri mapping and do not want “verbs” in it, only “nouns”. Also tell me how client will access these methods for Post and Put with unique URI. Thanks

like image 712
MSUH Avatar asked Jun 14 '12 13:06

MSUH


2 Answers

You have to map the URIs as below for Transaction.

Get a transaction by ID - GET - transaction/id

Create a new transaction - POST - transaction

Update a transaction - PUT - transaction/id

Delete a transaction - DELETE - transaction/id

Your URI templates has to be changed as below

[OperationContract]
[WebInvoke(Method = "POST", UriTemplate = "/Transaction", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)]
public Transaction AddTransaction(Transaction transaction)
{
    //
}

[OperationContract]
[WebInvoke(Method = "PUT", UriTemplate = "/Transaction/{id}", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json)] 
public Transaction UpdateTransaction(int id, Transaction transaction)
{
    //
}

how client will access these methods for Post and Put with unique URI

You don't need unique URI for POST and PUT. There URIs can be same.

References: http://www.asp.net/web-api/overview/creating-web-apis/creating-a-web-api-that-supports-crud-operations

http://msdn.microsoft.com/en-us/library/bb412172(v=vs.90).aspx

like image 196
VJAI Avatar answered Nov 16 '22 08:11

VJAI


PUT is for creating or updating a known resource, for example: PUT /Transactions/1234

This would create (or update if it already exists) the transaction with the ID 1234. This means you can only use PUT when you know the URL of the resource.

POST creates a new child resource, for example: POST /Transactions/

This would create a new transaction resource.

Notice I pluralised Transaction so it now represents a collection.

Not being a C# developer, I don't know how easy this maps to WCF, but this approach is technology-independent.

like image 29
SteveD Avatar answered Nov 16 '22 08:11

SteveD