Bhubaneswar, Odisha, India
+91-8328865778
support@logyscal.com

C# Code in Custom Connector for Power Apps or Power Automate

C# Code in Custom Connector for Power Apps or Power Automate

You can use C# code in a custom connector and which can be called as a connector from power apps or power automate.

Follow these steps.

Step 1 – Create a Custom connector with Name and Host

Step 2 – Add No Security for this

Step 3 – Add Definition Request

Add Request option using Import From Sample

Step 4 – Enable to Add code C#

Use below code in this step to change raw text to upper case.


public class Script : ScriptBase
{
    public override async Task<HttpResponseMessage> ExecuteAsync()
    {
        // Check if the operation ID matches what is specified in the OpenAPI definition of the connector
        if (this.Context.OperationId == "UpperCase")
        {
            return await this.HandleReverseOperation().ConfigureAwait(false);
        }

        // Handle an invalid operation ID
        HttpResponseMessage response = new HttpResponseMessage(HttpStatusCode.BadRequest);
        response.Content = CreateJsonContent($"Unknown operation ID '{this.Context.OperationId}'");
        return response;
    }
    private async Task<HttpResponseMessage> HandleReverseOperation()
    {
        HttpResponseMessage response;

        var contentAsString = await this.Context.Request.Content.ReadAsStringAsync().ConfigureAwait(false);

   var contentAsJson = JObject.Parse(contentAsString);
    JObject output = new JObject
    {
        ["out"] = ((string)contentAsJson["RawText"]).ToUpper()
    };

    response = new HttpResponseMessage(HttpStatusCode.OK);
    response.Content = CreateJsonContent(output.ToString());
    return response;
  }
}

Step 5 – Create or Update Connector and Test

Once the Custom connector created or updated. We can test. Clink on Test and create new connection and provide a value to RawText and click Test Operation.

Now you can see the result reponse.

Hope this helps.

You can enroll now !We are giving 30% discount on our Internship Program

Don’t miss the chance to participate in the upcoming Internship Program which will be done using Microsoft Dot Net Web Development Full Stack Technology. The new batch will be starting from May 20, 2024.  We will have most experienced trainers for you to successfully complete the internship with live project experience.

Why to choose Our Internship Program?

Industry-Relevant Projects
Tailored Assignments: We offer projects that align with your academic background and career aspirations.
Real-World Challenges: Tackle industry-specific problems and contribute to meaningful projects that make a difference.

Professional Mentorship
Guidance from Experts: Benefit from one-on-one mentorship from seasoned professionals in your field.
Career Development Workshops: Participate in workshops that focus on resume building, interview skills, and career planning.

Networking Opportunities
Connect with Industry Leaders: Build relationships with professionals and expand your professional network.
Peer Interaction: Collaborate with fellow interns and exchange ideas, fostering a supportive and collaborative environment.

Skill Enhancement
Hands-On Experience: Gain practical skills and learn new technologies through project-based learning.
Soft Skills Development: Enhance communication, teamwork, and problem-solving skills essential for career success.

Free Demo Class Available