Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
56 views3 pages

In Rothchild For Clientstatus

The document contains API endpoints for retrieving reference data like client statuses and types from a backend server. It also provides endpoints for creating, retrieving, updating and deleting social address and social network records linked to a contact, by specifying the contact ID and other identifying fields in the request body or URL.

Uploaded by

Vai
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
56 views3 pages

In Rothchild For Clientstatus

The document contains API endpoints for retrieving reference data like client statuses and types from a backend server. It also provides endpoints for creating, retrieving, updating and deleting social address and social network records linked to a contact, by specifying the contact ID and other identifying fields in the request body or URL.

Uploaded by

Vai
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 3

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

You might also like