결제 API
Payment completed API
When a user purchases a sticker, they must use this API to send the result.
POST
/v1/ptn/customer-transactions/payments
[request]
요청타입ParameterDescriptionRequired
BodycontentIdUnique ID value of the sticker content0
BodycontentTypeType of contents sold (IMAGE, STICKER)0
BodykrwPricePrice of contents sold0
BodyorderNoPartner order number0
BodypolicyCodePrice Code (License Type)0
BodytransactedAtPartner trading hours0
BodyuserIdA unique value that can identify a user within the service0
BodyusernameName of userX
[Request example]
POST
`https://oapi.ogq.me/v1/ptn/customer-transactions/payments`
{
	"contentId": "string",
	"contentType": "STICKER",
	"krwPrice": 0,
	"orderNo": "string",
	"policyCode": "OGQ-STICKER-SR",
	"transactedAt": 0,
	"userId": "string",
	"username": "string"
}