Wasla
  1. Certifications
Wasla
  • Auth
    • Register a new user
      POST
    • Login
      POST
    • Logout
      POST
  • FreelancerProfile
    • Certifications
      • Update Freelancer Certifications
        PUT
      • Add Freelancer Certification
        POST
      • All freelancer Certifications
        GET
      • Delete Freelancer Certifaction
        DELETE
    • Educations
      • All Educations
      • Add Educations
    • Social Links
      • All Freelancer Social Links
      • Add Freelancer Social Link
      • Delete Freelancer Social Link
      • Update Freelancer Social Links
    • Proposal
      • Apply Freelancer on Project
      • Update Proposal
      • Delete Proposal
    • Show Freelancer
      GET
    • MyProfile
      GET
    • Add Skills
      POST
    • Freelancer Image
      POST
    • Update Freelancer Profile
      PUT
    • Delete Freelancer Profile
      DELETE
  • ClientProfile
    • Project
      • Post Project
      • Show Project
      • Update Project
      • Delete Project
    • Review
      • Create Review
      • Update Review
    • Show Profile
      GET
    • Update Profile
      PUT
    • Accept Proposal
      PUT
  • All Skills
    GET
  • All Projects
    GET
  • Schemas
    • Api Responce
    • User
  1. Certifications

All freelancer Certifications

Developing
Testing Env
https://test.your-api-server.com
Testing Env
https://test.your-api-server.com
GET
/freelancer/certifications

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://test.your-api-server.com/freelancer/certifications' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "code": 0,
    "message": "string",
    "data": [
        {
            "id": 0,
            "certification_name": "string",
            "certification_url": "string",
            "issuer": "string",
            "date_obtained": "string",
            "expiry_date": "string",
            "description": "string"
        }
    ]
}
Modified at 2025-09-15 13:10:43
Previous
Add Freelancer Certification
Next
Delete Freelancer Certifaction
Built with