If you have a comment on this topic, contact Aptify Documentation. If you want to return to the Aptify Community Site, please click here.

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Work On Progress...

Endpoint

In Order to create/update subtypes records using SaveData point .The POST action is used for the data modification operations. 

 

Headers

In order to save and receive entity record, the AptifyAuthorization header is required along with <TokenId> genrated after Authentication.

 

Header NameHeader Value
AptifyAuthorization<Authentication Provider> <TokenId>

 

Endpoint Example

https://<base address>/services/BasicGenericEntity/SaveData

 

Request Body (POST, as Form Data)

 

  {
  	ID: <Group ID>,
	EntityName: "Groups",
	SubTypes: 
	[ {
		ID: -1, 
		EntityName: "GroupMembers", 
		UserID: 11
	} ] 
}

Sample Response Body 

 

 

Request Body For Multiple Records

 

  {
	  ID: <Group ID>,
	  EntityName: "Groups",
	  SubTypes: [
	{
		ID: -1,
		EntityName: "GroupMembers", 
		UserID: <User ID 1> 
	}, 
	{
		ID: -1,
		EntityName: "GroupMembers",
		UserID: <User ID 2> 
	}
] }

 

Sample Response Body  Multiple Records

 

  • No labels