In Rothchild
For ClientStatus
http://localhost:8080/rest/adbk/clientStatuss
For ClientTypes
http://localhost:8080/rest/adbk/clientTypes
For EmailType
http://localhost:8080/rest/adbk/emailTypes
For PartyType
http://localhost:8080/rest/adbk/partyTypes
For AddressType
http://localhost:8080/rest/adbk/addressTypes
For RelationshipSubType
http://localhost:8080/rest/adbk/relationshipSubTypes
For RelationshipType
http://localhost:8080/rest/adbk/relationshipTypes
For DocumentType
http://localhost:8080/rest/adbk/documentTypes
For PhoneType
http://localhost:8080/rest/adbk/phoneTypes
In Product
For SocialAddress
get
GET
http://localhost:8080/rest/adbk/contacts/12345/socialAddresss/1
12345 - contact Id
1-socialAddressId
create(create socialNetwork first before this)
POST
http://localhost:8080/rest/adbk/contacts/12345/socialAddresss
{
"userName": "
[email protected]"
"socialNetworkId" : 122
"contactId" : 12345
}
--password is still not done as it is in analysis
update
PUT
http://localhost:8080/rest/adbk/contacts/12345/socialAddresss
{
"userName": "[email protected]"
"socialNetworkId" : 122
"contactId" : 12345
}
delete
DELETE
http://localhost:8080/rest/adbk/contacts/12345/socialAddresss/1
SocailNetwork
GET
http://localhost:8080/rest/adbk/socialNetworks/122
create
POST
http://localhost:8080/rest/adbk/socialNetworks
{
"url": "www.facebook.com"
"iconUri" : "http://fb.com.ico"
"name" : "Facebook"
}
update
PUT
http://localhost:8080/rest/adbk/socialNetworks
{
"id" : 122
"url": "www.facebook.com"
"iconUri" : "http://fb.com.ico"
"name" : "Facebook"
}
delete
DELETE
http://localhost:8080/rest/adbk/socialNetworks/122