Set Contact details for an App

Use this endpoint for Contact details.

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.
Language
Click Try It! to start a request and see the response here!