POST
api/MPOSPayment/createCustomer?custGuid={custGuid}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
custGuid | globally unique identifier |
Required |
Response Information
Description:
Return type: Getcustomer
Response Formats
application/json, text/json
{ "id": "sample string 1", "entity": "sample string 2", "name": "sample string 3", "email": "sample string 4", "contact": "sample string 5", "gstin": {}, "notes": { "notes_key_1": "sample string 1", "notes_key_2": "sample string 2" }, "created_at": 7 }
text/html
{"id":"sample string 1","entity":"sample string 2","name":"sample string 3","email":"sample string 4","contact":"sample string 5","gstin":{},"notes":{"notes_key_1":"sample string 1","notes_key_2":"sample string 2"},"created_at":7}
application/xml, text/xml
<Getcustomer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Payment"> <contact>sample string 5</contact> <created_at>7</created_at> <email>sample string 4</email> <entity>sample string 2</entity> <gstin /> <id>sample string 1</id> <name>sample string 3</name> <notes> <notes_key_1>sample string 1</notes_key_1> <notes_key_2>sample string 2</notes_key_2> </notes> </Getcustomer>