| ClientServiceSaveClient Method |
Saves a client to the database.
Send a POST to
RESTURL/ClientService/Client/{ID}?Token={token}&Device={device}
With the client as json body
Namespace:
ParaPlanREST
Assembly:
ParaPlanREST (in ParaPlanREST.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public Client SaveClient(
Client client,
string ID,
string token,
string device
)
public:
Client^ SaveClient(
Client^ client,
String^ ID,
String^ token,
String^ device
)
function SaveClient(client, ID, token, device);
Parameters
- client
- Type: ParaPlanREST.ModelsClient
- ID
- Type: SystemString
ParaPlan database ID of the client - token
- Type: SystemString
- device
- Type: SystemString
Device name used when logging into API
Return Value
Type:
Client[Missing <returns> documentation for "M:ParaPlanREST.ClientService.SaveClient(ParaPlanREST.Models.Client,System.String,System.String,System.String)"]
See Also