Set Contact details for an App

Use this endpoint for Contact details.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

Parameters

KeyDescriptionConstraints
appIdAppId of the app for which business contact details need to be updated.Should be a valid appId for the account.
contactEmailEmail id to contact business.Should be a valid email id.
contactNameContact name for businessShould be a valid name for business
contactNumberPhone number to contact businessShould be a valid phone number.

Sample Request

curl --location --request PUT '{{partner_portal_base_url}}/partner/app/:appId/onboarding/contact' \
--header 'token: {{PARTNER_TOKEN}}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode 'contactEmail=<contact_email_id>' \
--data-urlencode 'contactName=<contact_name>' \
--data-urlencode 'contactNumber=<contact_phone_number>'

Sample Response

{
	"status" : "success",
	"message" : "contact details updated successfully"
}

Status Codes

Status CodeResponseComment
Success
200{ "status" : "success", "message" : "contact details updated successfully" }Successfully updated the contact details for the business.
Error
400{ "status" : "error", "message" : "Invalid app id provided" }Provided appId is incorrect.
400{ "status" : "error", "message" : "Please provide valid details" }Provided contactEmail or contactName or contactNumber is not valid.
401{ "status": "error", "message": "Authentication Failed" }Either appId or partner_token is incorrect.
429{ "status": "error", "message": "Too Many Requests" }When the request rate limit exceeds.
Path Params
string
required
Form Data
string
string
integer
Headers
string
Responses

Language
LoadingLoading…
Response
Click Try It! to start a request and see the response here!