API

Containers

This resource allows you to fetch the manage the Container Information.

Pagination is supported for this resource. Click here to see the details of it.

You can retrieve the following information through this method.

  • Container ID

  • Container Description

Following verbs are supported by this resource.


GET by ID

๐Ÿ‘‰๐Ÿฟ

End Point: /containers/{id}

You can retrieve information of an existing group by providing its Container ID.

Sample response payload

{
 "recordid" : "String",
 "id" : "String",
 "description" : "String"
}


GET (Container List)

๐Ÿ‘‰๐Ÿฟ

End Point: /containers

This method allows you to fetch the Containers list.

Sample response payload

[
 {
  "recordid" : "String",
  "id" : "String",
  "description" : "String"
 }
]


PUT

๐Ÿ‘‰๐Ÿฟ

End Point: /containers

This method allows you to update the Container Information.

Sample response payload

{
 "recordid" : "String",
 "id" : "String",
 "description" : "String"
}


POST

๐Ÿ‘‰๐Ÿฟ

End Point: /containers

This method allows you to Create a new Container.

Sample response payload

{
 "recordid" : "String",
 "id" : "String",
 "description" : "String"
}